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.10+ 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.9.20260327095315.tar.gz (602.4 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.9.20260327095315-py3-none-any.whl (650.4 kB view details)

Uploaded Python 3

schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

schema_salad-8.9.20260327095315-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

schema_salad-8.9.20260327095315-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

schema_salad-8.9.20260327095315-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.5 MB view details)

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

schema_salad-8.9.20260327095315-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

schema_salad-8.9.20260327095315-cp314-cp314-macosx_10_15_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

schema_salad-8.9.20260327095315-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.9.20260327095315-cp313-cp313-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

schema_salad-8.9.20260327095315-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

schema_salad-8.9.20260327095315-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_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.9.20260327095315-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

schema_salad-8.9.20260327095315-cp313-cp313-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

schema_salad-8.9.20260327095315-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.9.20260327095315-cp312-cp312-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

schema_salad-8.9.20260327095315-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

schema_salad-8.9.20260327095315-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_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.9.20260327095315-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

schema_salad-8.9.20260327095315-cp312-cp312-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

schema_salad-8.9.20260327095315-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

schema_salad-8.9.20260327095315-cp311-cp311-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

schema_salad-8.9.20260327095315-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

schema_salad-8.9.20260327095315-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

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

schema_salad-8.9.20260327095315-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_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.9.20260327095315-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

schema_salad-8.9.20260327095315-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

schema_salad-8.9.20260327095315-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.9.20260327095315-cp310-cp310-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

schema_salad-8.9.20260327095315-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

schema_salad-8.9.20260327095315-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_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.9.20260327095315-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

schema_salad-8.9.20260327095315-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315.tar.gz
Algorithm Hash digest
SHA256 879bc569b2d0055782c0afb2d98f1e2fc1ab586484fa4f0438ffc8febc585997
MD5 2599e8ac1f77f835fb5126ff5ba6884f
BLAKE2b-256 9b5044f5938aceaae9ab3edc9c527be4129b4b9e3c8b4f54cf09c578a13dc619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-py3-none-any.whl
Algorithm Hash digest
SHA256 6596f795afd4f4ca7a4658c007bfe8a26dd2616fc812f4cff1fb52d42036ff05
MD5 ec02afac5c85e41e49f114e4d4480173
BLAKE2b-256 3eb1aef6b7e01bd242d5f2e23c28b9caec6326e59874a3cceee1f236fb23ec34

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c4d475be76c8f5e79a722494071603b8f16ae674810ed0f01b765c7f092cd6a
MD5 b3d6ac11528173b53c2ae426732171c4
BLAKE2b-256 09686bbc5a9262244ffc86201ecf322df4a375f234b4d10a0da62247e8d3cc84

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp314-cp314-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.9.20260327095315-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a89f0fe0cbb58e407bf1ecd7824b5b04f2901bb52fb9ac261a04ab65287ec176
MD5 b67246efe45596826b15f0ccf0407bd9
BLAKE2b-256 f7a292367cc18846660fb19f584c5fdeb0ea02221cecdcbc3d99351000f045f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_riscv64.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.9.20260327095315-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 797a79a2aab0c98a977045048e84925322ba4b8a23a14252950e994a0f1cc8b6
MD5 b8fca2bbc505f3242b7e6ae8e5f37da2
BLAKE2b-256 7ac368e7134241cd3d5755e8b2584c398f3720393c11b6e352e7b2150aff813c

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20260327095315-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 8109c99c8b13cd1a6693d3b0be910dfcfa1ab197865491530af591af11c1a0c9
MD5 8c795f52229d255dc0db7294548925f7
BLAKE2b-256 74cf028a309fb3b5552c41fd283c44db3687d03a5794d31bd5c6fb9b48af1871

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.9.20260327095315-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1b1136db44003d833f66a6572b9cf79060a36e67fafa0226bfaae85f543cec21
MD5 f26d38e0c6bbccccc52dbc3a91a921ad
BLAKE2b-256 e8e8dff94c3ab61a3d77779d0a12c97097d0aed3f6a46b127751b93a37f3b888

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c68b0387acdcfe8e4e19fe5e7a8e4ed2c126cb9b4431ad2a6551c609acd7a3d8
MD5 d9e1151d2892162da08dd22719fed77d
BLAKE2b-256 39f79a466585ced783c57d7d570968f96449bc7598b1faf005ac9a1f06a10dbe

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20260327095315-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db5d09da4a24527dfcea45fa1ee3eac170b00772f28b8bc7975a4e9aac54e822
MD5 6a20019108436c064aa2bc0915855bc4
BLAKE2b-256 70540cf9dd7bc4e08bb2ac8b00b99c590fdfd5493f8f6a9939355b922ec85e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp314-cp314-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.9.20260327095315-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6163330d6043aa62db0c2546a328bfb89af41f9146e7dec1e2eeb8202829eb80
MD5 979ef84264199e64fa24aea7761e6c97
BLAKE2b-256 b0791171cad9ea46f34d54d644e8be2cfee342a32927d5a011565327d8dd7c12

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp314-cp314-macosx_10_15_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.9.20260327095315-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99af92a5477ab1ba5f3f4b3b484b64ae3268888ec1ebc7ba47a4c661e9bc05de
MD5 d595aa3723420477372c964649b55145
BLAKE2b-256 9e0d2a53ea6d16383d858bb34529fce497f37cdc2acd0328a93800ffa979782f

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 26abf09debcf428926e842df7440bd6aeee8758f6ca3ea499f2db3e2255e875c
MD5 ccb6bb61036fe47959d0950b3e6c7060
BLAKE2b-256 d6098678ad23d29af73d9d2fd07b87521d2d39764a6f367d00a51cc712279c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp313-cp313-musllinux_1_2_riscv64.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.9.20260327095315-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 495fd9ea9b11f3ebc1cd311a4fac425d88e455de980dbcc9ddbc497e8a8da24c
MD5 245c5818da9ed785720692bacc52f090
BLAKE2b-256 5cdf4292b094e2bed110fcd14b69926d389f8cb5c74df06903f24ba54917ea6f

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20260327095315-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 35921d047d740ea83b4e7dbe41995770ad8d19a3cc178a6e32540c7742b1c507
MD5 b6388feb0688a370b2208b3feb7fcdff
BLAKE2b-256 273d6d60a546fb14e1574da255600eaf3288879adf0b68af18bdfc11aacd00bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.9.20260327095315-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c560da0682c3284d2b1f5b8833c8914ee40052cff88019339ea88dfaf4858f72
MD5 63caa5deccb50527f78a86347bd8faff
BLAKE2b-256 492ea75ec902c365942ead795e748f47cdbf0a3d54f3ffa1e3ecbb66eb23c1dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62960427d43094bcdb9278826c7a80e609702be702bffd99c2e49f487d965364
MD5 f817021e1a0096aaa1cbffa07f9500fb
BLAKE2b-256 a9e8fdf9fd5324451966df49fd10ad38c09ceea6ac5a3f62dfeb2cd307431b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7450b7109288dc7d4b51a0b935d8e689be9cc181895e231f5505674788cafd9
MD5 b0321dcaafb1197892ee83710e615edf
BLAKE2b-256 23adf1bc8c7947f93716bca02f1e91b77c3f3fbb8dbe1c35522ed3e30fd3ae53

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e8daed3f0818918d33582f6de1d9a7e1eb9982bf733345567c6c314e25b9d01
MD5 d0f64b320f9738b3e040fe5fd2153b9e
BLAKE2b-256 5769cacf07d313744f358eadc87572d82708a971b14560a9e4fecc95f158fa0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6642417266bf4c106272a88bd5b23f15d01f55e5f98b6fb796a7456ed92e345
MD5 e3e6a2c9abd8b475eef25d40c3130bea
BLAKE2b-256 a8c8820d30fdc16090584ddba675b8292a3df237adb5e3bf8311946163938ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0308728ab028584164e7051a66ad72e65b5b41028a7a92c20463ebc5f94e2fc5
MD5 3892f160bea118415e4f5712703f153f
BLAKE2b-256 8c11041b135716b28ee00cd74aa72339287a62e67efd01cace4b4bbd0fb7af07

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp312-cp312-musllinux_1_2_riscv64.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.9.20260327095315-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44d90310d17c131572f5637156558f602cf5a333d519113ba85bf4ea0ad21dc5
MD5 f5efa762d2c18d2d3514edf1f6d2446b
BLAKE2b-256 b079ca52e9ebd8ada4d67c6ebe1a4be753e67d73abafb448ea1f377a0f9473c8

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20260327095315-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 221e68c2ca3ea0344025aec77baac03d46785f8c140325f25b906ec0e9a07875
MD5 fcea4220c098511dced5a7351dad0094
BLAKE2b-256 a0dcdf95876a058a944a83b5de9c68391bbcb2c68ab9d55f91d6cb90b1eb1517

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.9.20260327095315-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e026de4a7f54e67a46aa7e92d42b6654f598be16bf0d76286176044307be2b02
MD5 8e3e3d5372f3833c041eeee32d702a3f
BLAKE2b-256 8bbd5fb8666ccce4d349b9d08078cb713dad417bb24792015ddb18154aca77b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94679eb830fcba11c3976135e3f1d95606342a8185446449cb7a923f66483646
MD5 25a309f9ae6820b2b4573dc2e8293cc6
BLAKE2b-256 a38c791b8cab718bda08851bc56b43e957ec45c87dd6bc75f475ed0f4c1ac62a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdb4b5b5d84ecceea2668b35dbf23c5e16ff1468d67085a094a602fa8d8c0e9a
MD5 6ed7ead10096855b0d6b07de30c67602
BLAKE2b-256 e4bd2c7c5d056bafc8f98f80f77de45b5de1ca0f3289eed809786d96440692c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a72e042c35199e4e54c98b418b1977699987ec3cd601d2584363bd6720d44c2
MD5 674650adf4ff36a2ef938752b7a82545
BLAKE2b-256 33f42af9f02561f2f26f56c6926f6609f0eae706f686ad384b4b6d64c8169d37

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7508b51ace9f3cc49d46873ddb04a0a399b9b69febe953bfa3031392efb43bf
MD5 838c80ea6fc8541aa52c2df266702cc2
BLAKE2b-256 6bfd94d510257d04b7bbfbe052f5d8a89ccd91d67ff143647e8e453da280fc4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a319a67e84118382dcecb4b09b61a2d4231052e605e5b0a526c7b8cf9cbea293
MD5 841baff2744c6c2ae41830e3c8805e70
BLAKE2b-256 6bd1e149516ec68f2b2884dd823a67f0450f8e0a02f73830b44f4d21b4ca54b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp311-cp311-musllinux_1_2_riscv64.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.9.20260327095315-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a07a2a42659a17a45bd74334f6cda664447f0f34ba6de3610ae726789bb1964b
MD5 b42980f308d92fb24425650d260451f7
BLAKE2b-256 b21b7635ecd4c2b1e54d1a52e070816209df2d474ed7df702e147076d4f5e81a

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20260327095315-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 52cf23b0ab73db12d05382f069e442f5dce95229b49642755d441c1b14199054
MD5 5bb21bf848e26df29b0ce6ee7bb07164
BLAKE2b-256 f93f35c1e17cc9664d39aa4e830049db25cbe9747a1c36f850c49b7162002a22

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.9.20260327095315-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df7d900db0bee2087a50349216cde07c14cbe0e4914f2ac2e69a95971662037f
MD5 61e264e7273d35fd17ac2920f2d315c8
BLAKE2b-256 afe3c405b6d1944f11616e09a101d5e178a458653838c4d33584fb83d2000721

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c751985dfd5d6007e880591c0983216f0699c7757abe615f37a9409dde6aec31
MD5 de53a3f542ab89c71fc3a43b4c30f440
BLAKE2b-256 cad79c574ab77d5132cea18c590ff6f3a73ab5824c2e69351d4c07b7484cba0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bedf677a8396ebe56a04e15fe93df7c87e9f643781604d244836488aa659c406
MD5 6bd983bf917adb1d6daedbeeb42ddb1f
BLAKE2b-256 087d5e530eab0c21719adfe32412b5ec8e44c718004f4a79e8982d49c1cd830a

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f2c9e1b6a779e15c333d12f68e3bf2f22864b602389bb7a4d59bcf5bfbddbba
MD5 e0ea6ac06678be7edcd477a12ac5b7af
BLAKE2b-256 8dd42e17fba85fbf6e22b043881fec2ec50dcc9e1e8047299a08bf68bd6d6e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2afba5b8a9ae210104296dfa7db566474fd992680d551484d1502a4b43990827
MD5 4020990d9dc44f652bf6280ddf0e91de
BLAKE2b-256 c83e33225a94209ffd3ff2c83cea4dc6bf6e0d166e55c5606340df02278f7f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1f32efee02c1b538f45721e53ac5d6f68c8948ab1e2f1a5ca5bdd88e817f6973
MD5 00e01d94db87346329231b9a6bbf58f7
BLAKE2b-256 dc079c04b55b4bda8b608a4e4f7d9ff3da6f424c73d2f9b8675ebd0bf11dfb88

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp310-cp310-musllinux_1_2_riscv64.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.9.20260327095315-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3be6f9ea69c237e5a51e7dcbb54e7caeb700f01dfd51122f31a0a3fb98439694
MD5 d9b6eac3eb2ea5d9d84e97fad15752d7
BLAKE2b-256 0c2addbee722cd5b7365a247a771fe3ecf3008f4d451759a584494c3fd8d5314

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20260327095315-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 59b69ae8e61428d1e3c16f87195aaef3c27c12d889a46ffb7e236c37a1faa8d2
MD5 0b0a4db6da8623ad61736b0a9d428f9a
BLAKE2b-256 7d7a5ba31edfc29731ad0e93c33f0886c1bc389740ed112ac3028d070503a447

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.9.20260327095315-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 906f52c693d826cd97f30e5113f5ed06a59c70a3ef1b28305123907838e1b9b8
MD5 a5f4e4fce3744491a43a6aaf7518b358
BLAKE2b-256 51d60e82240a23eff91cabb7a430119fd3a043dc9702d87895585d9deea23239

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_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.9.20260327095315-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 011efcbe7233a8336abaf9841423573584a9026e4cb04a8e59cbf1aeef51d461
MD5 b78643d91bb25ca0a9a654b5895dbdf4
BLAKE2b-256 91ab779584801b291c80e60a683359fa8baaf16429ce1582ac2a327c7acecc69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f9959d9bd457dcbf34b1aa3367e5c612919b9450b25c5f36e784cab887ef7af
MD5 f4125d57b3b0599abca8780c391bdab7
BLAKE2b-256 604dce1bceb334838f08389c018f42d8ef088ee2c4738a8f1952752215874991

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.9.20260327095315-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20260327095315-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 270fabffd34e35b98f64c80c536578700a5ba58cac8d4e6c7ee8304b290be0e1
MD5 362ef6084c6d9a904e3018b2ad48ac78
BLAKE2b-256 cf8115d86f73af169cabc26c1d872cfd452fb730938026c69616765d86976a41

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20260327095315-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.

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