Skip to main content

Schema Annotations for Linked Avro Data (SALAD)

Project description

Linux Build Status Code coverage Documentation Status CII Best Practices

Schema Salad

Salad is a schema language for describing JSON or YAML structured linked data documents. Salad schema describes rules for preprocessing, structural validation, and hyperlink checking for documents described by a Salad schema. Salad supports rich data modeling with inheritance, template specialization, object identifiers, object references, documentation generation, code generation, and transformation to RDF. Salad provides a bridge between document and record oriented data modeling and the Semantic Web.

The Schema Salad library is Python 3.9+ only.

Installation

pip3 install schema_salad

If you intend to use the schema-salad-tool –codegen=python feature, please include the [pycodegen] extra:

pip3 install schema_salad[pycodegen]

To install from source:

git clone https://github.com/common-workflow-language/schema_salad
cd schema_salad
pip3 install .
# or pip3 install .[pycodegen] if needed

Commands

Schema salad can be used as a command line tool or imported as a Python module:

$ schema-salad-tool
usage: schema-salad-tool [-h] [--rdf-serializer RDF_SERIALIZER] [--skip-schemas]
                      [--strict-foreign-properties] [--print-jsonld-context]
                      [--print-rdfs] [--print-avro] [--print-rdf] [--print-pre]
                      [--print-index] [--print-metadata] [--print-inheritance-dot]
                      [--print-fieldrefs-dot] [--codegen language] [--codegen-target CODEGEN_TARGET]
                      [--codegen-examples directory] [--codegen-package dotted.package]
                      [--codegen-copyright copyright_string] [--print-oneline]
                      [--print-doc] [--strict | --non-strict]
                      [--verbose | --quiet | --debug] [--only ONLY] [--redirect REDIRECT]
                      [--brand BRAND] [--brandlink BRANDLINK] [--brandstyle BRANDSTYLE]
                      [--brandinverse] [--primtype PRIMTYPE] [--version]
                      [schema] [document]

$ python
>>> import schema_salad

Validate a schema:

$ schema-salad-tool myschema.yml

Validate a document using a schema:

$ schema-salad-tool myschema.yml mydocument.yml

Generate HTML documentation:

$ schema-salad-tool --print-doc myschema.yml > myschema.html
$ # or
$ schema-salad-doc myschema.yml > myschema.html

Get JSON-LD context:

$ schema-salad-tool --print-jsonld-context myschema.yml mydocument.yml

Convert a document to JSON-LD:

$ schema-salad-tool --print-pre myschema.yml mydocument.yml > mydocument.jsonld

Generate Python classes for loading/generating documents described by the schema (Requires the [pycodegen] extra):

$ schema-salad-tool --codegen=python myschema.yml > myschema.py

Display inheritance relationship between classes as a graphviz ‘dot’ file and render as SVG:

$ schema-salad-tool --print-inheritance-dot myschema.yml | dot -Tsvg > myschema.svg

Codegen Examples

The examples in the tables below are helpful to see how to use the output of schema-salad-tool –codegen in different languages for loading and/or creating/editing/saving objects.

First set of examples is using the CWL v1.2 schema:

Language

Repository

Serialization Example | Deserialization Example

Python

https://github.com/common-workflow-language/cwl-utils/

create_cwl_from_objects.py

load_document()

Java

https://github.com/common-workflow-language/cwljava/

(Not yet implemented)

PackedWorkflowClassTest.java

TypeScript

https://github.com/common-workflow-lab/cwl-ts-auto

Creating, editing, and saving CWL docs with TypeScript

Loading CWL documents with TypeScript

.Net

https://github.com/common-workflow-lab/CWLDotNet

Creating, editing, and saving CWL docs with .Net

Loading CWL documents with .Net

C++

https://github.com/common-workflow-lab/cwl-cpp-auto

cwl_output_example.cpp

cwl_input_example.cpp

D

https://github.com/common-workflow-lab/cwl-d-auto

How to use

How to use

Second set of examples is for the Galaxy Workflow Format 2 schema:

Language

Path

Python

https://github.com/galaxyproject/gxformat2/blob/master/gxformat2/schema/v19_09.py

Java

https://github.com/galaxyproject/gxformat2/tree/master/java

TypeScript

https://github.com/galaxyproject/gxformat2/tree/master/typescript

Quick Start

Let’s say you have a ‘basket’ record that can contain items measured either by weight or by count. Here’s an example:

basket:
  - product: bananas
    price: 0.39
    per: pound
    weight: 1
  - product: cucumbers
    price: 0.79
    per: item
    count: 3

We want to validate that all the expected fields are present, the measurement is known, and that “count” cannot be a fractional value. Here is an example schema to do that:

- name: Product
  doc: |
    The base type for a product.  This is an abstract type, so it
    can't be used directly, but can be used to define other types.
  type: record
  abstract: true
  fields:
    product: string
    price: float

- name: ByWeight
  doc: |
    A product, sold by weight.  Products may be sold by pound or by
    kilogram.  Weights may be fractional.
  type: record
  extends: Product
  fields:
    per:
      type:
        type: enum
        symbols:
          - pound
          - kilogram
      jsonldPredicate: '#per'
    weight: float

- name: ByCount
  doc: |
    A product, sold by count.  The count must be a integer value.
  type: record
  extends: Product
  fields:
    per:
      type:
        type: enum
        symbols:
          - item
      jsonldPredicate: '#per'
    count: int

- name: Basket
  doc: |
    A basket of products.  The 'documentRoot' field indicates it is a
    valid starting point for a document.  The 'basket' field will
    validate subtypes of 'Product' (ByWeight and ByCount).
  type: record
  documentRoot: true
  fields:
    basket:
      type:
        type: array
        items: Product

You can check the schema and document in schema_salad/tests/basket_schema.yml and schema_salad/tests/basket.yml:

$ schema-salad-tool basket_schema.yml basket.yml
Document `basket.yml` is valid

Documentation

See the specification and the metaschema (salad schema for itself). For an example application of Schema Salad see the Common Workflow Language.

Rationale

The JSON data model is an popular way to represent structured data. It is attractive because of it’s relative simplicity and is a natural fit with the standard types of many programming languages. However, this simplicity comes at the cost that basic JSON lacks expressive features useful for working with complex data structures and document formats, such as schemas, object references, and namespaces.

JSON-LD is a W3C standard providing a way to describe how to interpret a JSON document as Linked Data by means of a “context”. JSON-LD provides a powerful solution for representing object references and namespaces in JSON based on standard web URIs, but is not itself a schema language. Without a schema providing a well defined structure, it is difficult to process an arbitrary JSON-LD document as idiomatic JSON because there are many ways to express the same data that are logically equivalent but structurally distinct.

Several schema languages exist for describing and validating JSON data, such as JSON Schema and Apache Avro data serialization system, however none understand linked data. As a result, to fully take advantage of JSON-LD to build the next generation of linked data applications, one must maintain separate JSON schema, JSON-LD context, RDF schema, and human documentation, despite significant overlap of content and obvious need for these documents to stay synchronized.

Schema Salad is designed to address this gap. It provides a schema language and processing rules for describing structured JSON content permitting URI resolution and strict document validation. The schema language supports linked data through annotations that describe the linked data interpretation of the content, enables generation of JSON-LD context and RDF schema, and production of RDF triples by applying the JSON-LD context. The schema language also provides for robust support of inline documentation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

schema_salad-8.8.20250205075315.tar.gz (599.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

schema_salad-8.8.20250205075315-py3-none-any.whl (648.7 kB view details)

Uploaded Python 3

schema_salad-8.8.20250205075315-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

schema_salad-8.8.20250205075315-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

schema_salad-8.8.20250205075315-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

schema_salad-8.8.20250205075315-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

schema_salad-8.8.20250205075315-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

schema_salad-8.8.20250205075315-cp313-cp313-macosx_10_13_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

schema_salad-8.8.20250205075315-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

schema_salad-8.8.20250205075315-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

schema_salad-8.8.20250205075315-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

schema_salad-8.8.20250205075315-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

schema_salad-8.8.20250205075315-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

schema_salad-8.8.20250205075315-cp312-cp312-macosx_10_13_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

schema_salad-8.8.20250205075315-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

schema_salad-8.8.20250205075315-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

schema_salad-8.8.20250205075315-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

schema_salad-8.8.20250205075315-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

schema_salad-8.8.20250205075315-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

schema_salad-8.8.20250205075315-cp311-cp311-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

schema_salad-8.8.20250205075315-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

schema_salad-8.8.20250205075315-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

schema_salad-8.8.20250205075315-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

schema_salad-8.8.20250205075315-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

schema_salad-8.8.20250205075315-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

schema_salad-8.8.20250205075315-cp310-cp310-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

schema_salad-8.8.20250205075315-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

schema_salad-8.8.20250205075315-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

schema_salad-8.8.20250205075315-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

schema_salad-8.8.20250205075315-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

schema_salad-8.8.20250205075315-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

schema_salad-8.8.20250205075315-cp39-cp39-macosx_10_9_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file schema_salad-8.8.20250205075315.tar.gz.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315.tar.gz
Algorithm Hash digest
SHA256 444a45509fb048347e0ec205b2af6390f0bb145f7183716ba6af2f75a22b8bdd
MD5 b2f0ee963239de6921a6292f799432dd
BLAKE2b-256 0edc413f21eac133c4d8e539eb580ce9ae136c4fbb4b020b28964ec683b685af

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-py3-none-any.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-py3-none-any.whl
Algorithm Hash digest
SHA256 fdcfc8bf06aef298895077c7d7d8b2453a036f3bac3bab0f15f2845b58bf8f7b
MD5 912deae4a638db8223c13a2b76956178
BLAKE2b-256 ac043002f19c6178e3f95c7fb492f3d4f074b92dc87046cd21ac2ee0174fd768

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d16a60a595940b61b90f4804d3e758eb67fe764ce86892345817034c4b48b9cc
MD5 d5a4063aa07e3cba8fbce656cc2c870b
BLAKE2b-256 d00f07d8f439bde0e16369e71eabd897fb04b108cf46a2c9af539e3a17de3aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9d7ff9fd06c2df13bf55c0745d14cfb34e608ea71a0cf11baa943531e4e4dda
MD5 7db0339cdae3d995220653fb40e7be89
BLAKE2b-256 c9b3f4a26c1e92ce2777e17db7508236cffe96bb8592e56f5baaa0d3a8afb57c

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 931f503192f6193619f51779bc18f6d430bed22349ad933ed95354be455fddff
MD5 d19f6a73cbe4a136abe16472df56babf
BLAKE2b-256 cfe16134e73f21f25fb4a070de803ee011165fe21fd9dfea7d53d6a6e201f086

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e93cffbefb6324be4deadaf829f3fabccabc5add5dc426ab471224a4d349bf3c
MD5 5b1865c951d39b3c49d5e152ef857111
BLAKE2b-256 dc55898ed6aacda1ccbcb89bb6beb001b9b5558499ae1d97ec87fdbad8850170

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d46d5e718ccc8c7c66bd6ceaca7cc1afe8389f838c393c7406dcc7ce24b46cde
MD5 734cd332ec9b5130a1510e92742a47f7
BLAKE2b-256 7728f0ed22aa726abf2f293c3fa34a27ff6ac0d47ea289e97650f858ff609ce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ad2dfb8f41585b8afcffbb7d7cee587aa007f23470aefb7b25a6beae4ab7da6d
MD5 fd441284f5063409d091a7f186142029
BLAKE2b-256 be2901a835cbdc9c5fcd5c578c0c55a2bbcd74766538a16041b875e35a36fdca

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 154a5295813b3b70a0e0e38a9cbc0f86349d447ddd89867d30e3e6721825cae4
MD5 8c275ce5db0bf6982c3ef0b13b5d894f
BLAKE2b-256 70cb87b69bf4c9068727e4eedf2d63d63d996b5be99b977c3f7d77da941629be

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61235972c32d1ef0f909c02a488769c2478827ab2b2f4092550fef4b00be163b
MD5 b15d291ea935c8d217e38c134e3966e5
BLAKE2b-256 3dede8fbe0c404218c8626a79f0d0c045372c8beb026e0b51deea48e66bad809

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97c033abaa1354e75a0f38ae3c345bb22dff1ea4aabbd86560ebd1dd6d29d79f
MD5 67608eddede51e78d0e25d5805d73cde
BLAKE2b-256 103202309931773c9b4bbebce24e548a9aca1dbf552afeaa94b3882e71cc2bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21e4ddef89150854fd5700195fb12046f73cf17e94fb70ff44120e147e41cf97
MD5 d0dc3e4947bca1987bf916b145012448
BLAKE2b-256 aaa8b075d4b89ddf7c67e4ad21826a631dc1f33aa3d42bc9ee7974bb1cef4b35

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 714a0a9a526dcece679e3ceaa1557ddba417156bd6cb8890abab6bea42dd7bc8
MD5 b3048863b04dacb7f08ac912b9aea8bd
BLAKE2b-256 0802a5c39a9f3ee322e7ae57f85939f3ee9c7f74ba457da1ea6c6ad5c9e76a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bcf656dee6c9bd26e3e9c8d84dc3f3387832513684795bce9e22b1fcac15bd86
MD5 95846c322bed5ff7204e4e732a6ced5c
BLAKE2b-256 1709f21b47744bcbe78ce77cd887d97771cca90f9f77ba0d833c6bb0cb895349

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cb40e99ec64e9e1129449f18969df13b29ddebbba1e6c0e6a249539fa7a78fd
MD5 d5054c11f0aa3612a2168291eafd6aa4
BLAKE2b-256 e202e285a363302a3e3171ec73593053e90119501edcb50eadcd7dd2869f02b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bffd48b2373d8c09c0eeb8ffdb8215b173e0eed3dd286d09ba26a12ad4434e6
MD5 891160c67e607d638859f11ba1a51fed
BLAKE2b-256 50f2c63b84ad4455c4f1890c23d3bbbf5d5fc650e179a2169c33c5ec74177a4c

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7de2863f26c6e0aef5f462d5cf329a0a3b9d8a6e51d1c3991aac2771c777cbb
MD5 8ebf88327f9f872644e572a97b062f52
BLAKE2b-256 dfd02024b12406d5f488ecd24c9e64910d8672f8407196bd633585787881a920

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f5981c4566e36fe435a9dfc0525c58ea5b4db26a022ad5583bb17825d09add8
MD5 a6b512235e8de820d0f066f0cb031819
BLAKE2b-256 6b8d804177f6f9617e9f78244ff13941ae1196f30a9759b22e8205fa6ea20fa0

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e144926134218d456ded4f54f7433ae27aa604649aed3bdf859eec033de3015
MD5 d048e7d1007194d85d207527ff65677b
BLAKE2b-256 83d2f998436ef7acf79fe37c2db585daf32f7ce36d8457262e552a75d81e94bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e0297e135a070fe7dca74a3c43917c6a825a21c7105c551b9c565072a5f7974
MD5 20e9a9605d776716bed27f331c6f131a
BLAKE2b-256 7ea954a3a866086a506ba698015d64435e08d6727dc19786f744b13584c23a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 847d08a4fb364ae193b98c41f6bdce09a9fc7441c5e6719d69bc8adb25413e0a
MD5 88318018235728774af7fcb929ebfbd8
BLAKE2b-256 7875de4243be03cc1afd7da403b9ba4dc936f273f5c7efa147b8e1d044287222

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f72d7579a14b0ff239e2ba00b36a0ce50e592c7e79b5a12efb54bceab1ee8ca
MD5 94c65fcfa0364fab58ef56a05f902995
BLAKE2b-256 04e02b4215f11859150d193e7b3b5bb529a76d9a0983eb4bd3ca3e6da326be24

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc1623f8971a31f5ef241e0f31cf3d7ab8a71246f80d8269d47674beb5af5a5c
MD5 77ca17825742dc7f9d64ea1ed408a35d
BLAKE2b-256 63200385dc0e22f4182203e569f2ff77181a4a5d3ecaee393ae4136da6c35b48

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6ab88bd3ed9fc49ff9263f4ff9d24c12910f9cc791852e288963f2652f6c173
MD5 ae22536092645ca473824002be854994
BLAKE2b-256 a3f9a1a0a44e03d7355ee0348519158e5551a16c0dc6b6324e3a2cc5cd430a34

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 430df83a96ca8d04ccb29708487ff2fad9b475fca74f710622fac16cd27fd473
MD5 d4f442223c0b6f52738fc1c0154364ba
BLAKE2b-256 b7bf5a6bdb746f4cd2c2f317adf8482838adfe29d50c6b41e642b37dca4d78c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f6e00038fcaac7b1eaec58450de42d747ac6bef6bc9564a14f992bc13e32de3
MD5 51ad59450dc5336bd0de055cc7769c87
BLAKE2b-256 de1415b952591deaa5c3c45dc362f312de5022d772bfb4306d69222effbaa8a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 523cb5d2bec2c33f030293447c0503f300b9a00c02eb9eb39580ffdfad096e5b
MD5 71b584d8ed7f3788ea1c210e8bccaa2d
BLAKE2b-256 b2654bf609433e41797567036e24b2b6e18592688287f39ff8344a00157c9330

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 702d1fd44815211ef70a48b8e7a26624fab65702f6ab674fed7f6247f23caf19
MD5 15f638f9a2e8a8ad4cb46e2ca714ee87
BLAKE2b-256 8a49bb6945a375afb82817667fca9f3f8870c5553f3a080b0cf3e11a119cecbd

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2faafcd0468d457d211c38c3e11bf5d95739687756b5f0584efede02905e1ff6
MD5 391fb581e93a2b2b7663e9f32d9d349d
BLAKE2b-256 af3309037942578553e5958ad0331d7e291192b673633416ef18647556fad291

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6fbd6b785ce755f3634d29a4e7e9e40e170b9b337b47234501348f23c38a3d5
MD5 4c0ac90733249ae26bc0102667fa8aab
BLAKE2b-256 1761b51b7b8e429f18b640e8ec0edf638c1cee41a6416608cb4e170c2197b577

See more details on using hashes here.

File details

Details for the file schema_salad-8.8.20250205075315-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19bb430d0501009b330fdfe769ca2655206fa9702b980e49a231df3d6393afff
MD5 7e654f91de2f653bcd01026a510649e1
BLAKE2b-256 ec31ac84028308cc43f28700c4d275c90d5b86be783ff3d7310e271881ebb051

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file schema_salad-8.8.20250205075315-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.8.20250205075315-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a2dfef57c9f8875698206201b02bc587fa5db3c2c6aabe76196670ee7ae90f2
MD5 0e7715ce09f715fb0cd598dbf07bd2bb
BLAKE2b-256 fbcd7c3c00bbdde72db031a801e42922d17d044d3e9c84e54708b043cc262f1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.8.20250205075315-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on common-workflow-language/schema_salad

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page