Skip to main content

Schema Annotations for Linked Avro Data (SALAD)

Reason this release was yanked:

regression for cwltool

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.9.20251031145656.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.20251031145656-py3-none-any.whl (650.1 kB view details)

Uploaded Python 3

schema_salad-8.9.20251031145656-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.20251031145656-cp314-cp314-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

schema_salad-8.9.20251031145656-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp313-cp313-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

schema_salad-8.9.20251031145656-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp312-cp312-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

schema_salad-8.9.20251031145656-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp311-cp311-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

schema_salad-8.9.20251031145656-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.20251031145656-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_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.9.20251031145656-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.20251031145656-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-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.20251031145656-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

schema_salad-8.9.20251031145656-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.9.20251031145656-cp39-cp39-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

schema_salad-8.9.20251031145656-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

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

schema_salad-8.9.20251031145656-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_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.9.20251031145656-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_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.9.20251031145656-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

schema_salad-8.9.20251031145656-cp39-cp39-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656.tar.gz
Algorithm Hash digest
SHA256 2e1fd52cf372eb42917c3034d6d5c30b4e151e6e7a749aac17d172d696a41307
MD5 5f60a40ca58e53cc85839af3fa35e83c
BLAKE2b-256 f4c695f3bebdbc0eca9e4c1498f336163c15b7eb8d7f34a20c2cea57e11f0d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-py3-none-any.whl
Algorithm Hash digest
SHA256 ae4479b158f80377bcfeb5290d3f1c95fcce2b0f560d19ecc17b802169d11b3d
MD5 f26aff6414f8be8464067c8f0af71957
BLAKE2b-256 689cf44a6261c67d496af3474cea07c053932b6c4089e6311da3f65b154d2eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d9ed7a7be4569babf67fa100edec95d6cd0bb51d6f8b51c96f868230e8cc12a
MD5 ab54c8f7d71a3e7e8c7b7670c18dda5a
BLAKE2b-256 f271f21865d1c0acd71f085ed6e07e16f2649967348f04f4331224087f8f7a7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 1099e5018447c075f1991fc8815121adf46818783c042f11398373f3bd8c6ca5
MD5 f1bb60026e482a6709202a1604d8be02
BLAKE2b-256 7b5533cc8d3e83957a9d2011b2a689046cffbcd22a72c89a6cf2132d82e92f6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17e7ed03b28879aef839b2ccc2f0b00c47fd3f436ee9fae967b1161f25dddef6
MD5 a0a6006494f7e6f55e82cefb0678c41a
BLAKE2b-256 88650ff9ea6668cb09fdc090f987c7a3d0b5dddf81f163f750b3ff4b3dbf71fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 71ad4715f8d4388d35ded47f6ec1e66d2bbfa6c48112b7ac9342da81adb55be9
MD5 c153d7a32deacc494c11f1cb9d7c433e
BLAKE2b-256 28037bc97227750b85e7f2ba08f941859a8d951512ac0437908b0f7a85106f5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f779005d9d9ff5eda61c21a4af08318ed0c2b76a3d34da1ffc65b777aa6f50ca
MD5 2f33c65d662d0d49b6d47e9302eb7e3b
BLAKE2b-256 9f6a8bee95f0729adf078f06d53d638a19c6d44c22f29dcf56d72e4199df12f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55f55ceb2771e7c7acc6e54e3daa31c514e00c661098bd8e38253376c63e8ac4
MD5 c3ed7442601556151712d904597bdb3b
BLAKE2b-256 fc63e789f848ee06a4d48d10a9140d078b70455803568a29b8f41b5ddf973e46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9ee6b42e016bec786fe2a17625950bea5b95b2600fcf4dd9f44f9067c5e6a6a
MD5 b43da142fb9f7df28c7b32054a14d338
BLAKE2b-256 76f1c67de4065077a10f3f45aaa648ecabc2ff65bb877b4df44eb961b53afa1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e3a731d1afbcead519a0872e145b834dd5da125412c4bd4115674ff2e4fe9697
MD5 ba0a5a55afee192f8147c2453a9d2a09
BLAKE2b-256 1ff35fb5369cb5e285d8e348392587d9be61f58bc119f86362c37cf56b9d63dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 add22accf41cb25d9d36e613a96cdbd1cb69ff77cd355cd7685878fd743371a5
MD5 446e5ddbfe85723c97ee4d0e54e28d14
BLAKE2b-256 11b13574c5b403214bd9c11c7b044582dae3311fedcfbe7b85bf91440fda4ec0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 454f48c5886413613d794bd56b7859f28140bf5ba9cea9afc52e24cf3e19b512
MD5 5d69ed36dd542818f1da743added4050
BLAKE2b-256 81e387bb9d2bfc386fb346a473843c67b8209c1cf132411b6b280dcb41868cea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b46731ac990249174c0c8cae857111d33c6e4f3de88ab77611b1f14323c3ef11
MD5 8b60893ebf20a82fce9032056c098b61
BLAKE2b-256 67fc2f7a20d0db770b83fe431d6a6387cc2bb9adae5f8d7a78671c8ac4425599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 99f10b1eff30b5c66c4b6240a4971b7ff92ea321d95384d580c2b5409b034ee0
MD5 d8806d1059eaab29a89189c035d53b40
BLAKE2b-256 4ead530d242c7f82e9e746687699b0bd0ad7275f1a4dd7263b39d9a6fd251986

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bff35993e87753b1434a4fe7e6e4137181f89a75c7cf5330f977903acdf4121b
MD5 dd7b189047ee943718ff351fed9bee4a
BLAKE2b-256 e30bcca1252dcae0d7a2ede7cbb85788eb4e0e6c3fecb6cce16ecb7de087572a

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 34fbecaa73b1c7316ea1ab95a222c13cb14ea0e35b9810aafdd873b740c4cb6a
MD5 44b1dc2fd9386b0347c3ac05aed3e7f5
BLAKE2b-256 269217025b98928a2e0b9a93af5cd1b571a3b5e3a7b69d6ef9ebf4c9571d7799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02b3222b6f3b3619cfc50d5d5f8462d81f9a5d109aebd9eda93240791bf63ff6
MD5 64511b9340eabef2633045438d7afcba
BLAKE2b-256 0a8a643fb7bb38c004538f31a4457afd8588cf093ed81869647d7fc7303bf75f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d9ea234209a283626206638b7e3050482885987bef248535a3608211d27ad49f
MD5 371718e2ef5a317afa89ac40056d9a15
BLAKE2b-256 03697fe092b22ab20ab94a66a1ba907350e7a7f78980821e1d14cafc0ff1d131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5c205a617350ca13b3ff99042b685cde9d90f175d3737096e9fb18e921828e2
MD5 12f1b7f8d7db949022c9b378556fad95
BLAKE2b-256 7b5ec148d2bac75f546a247bfd039773c3620064ee6ae8da7615248022a7afcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 93990c3880e62adc4f2b1dac499cdeca6b72272865c34ef52865b57af2be12fc
MD5 99fe204226b5124c0b70b51674329e95
BLAKE2b-256 eec2aef4466957080fb59a74978e51cf7c3e8da5f077ec85f8a1dcfd37b306ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5738300ed80042e9df5f9bf4c89d6204736ef4540dab570a687c0d584b80be9a
MD5 df4a580edeedfd7d59edee9658e02c22
BLAKE2b-256 ee1309312bed80db4a1cf167c5519403f9cc779db461793e7f8431022c7b166b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 458ecda102f598bcc1a0d559283cd5c9256aba05d2148500a97bf947a3b02755
MD5 560a8c35173634b0d03f765723b3eb84
BLAKE2b-256 b5013971786ab7bca3339489cafdd5fde6e2702cd34a4ced0e1b3d27d970fc02

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8b18a3c3ccbc663cc173c0779c58c53c067f0323a4725636cc6f4ae5488dc46
MD5 d23a56e2eedcc4ea0f98d88e3754e8eb
BLAKE2b-256 d0822ef3877a4cd182b4f286b978d3240a7326a0b1640c99100adaa541b8d20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d32271c112b5a9baf04784336241914c201e9698bd6b3bc71820939459bcb897
MD5 b876f51459f1d9a07ec41e09bc206f4c
BLAKE2b-256 5f94e83da6d460cdcfb5fa9adb2f1f416140c88035687d0bfcf9140c049aec51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a5a060dc7c150e6aac13164a2cb0057bf4073575e223e8e44a914c2e7e8ef2e
MD5 bec3fa4b6e04fde4d0cdafffe07a2ff6
BLAKE2b-256 6fe3142ceb4ba3a51ca0b2d04b2d587c2e9cd42ed8a4ba8cb1b504c60975afe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c6fe65fdc2ec3c41a74bc18ac86dfaa4ed08caa36c1835c1d33986bcb9bb7f3d
MD5 ae24638c7b78ea4ddc31c791fef8e36f
BLAKE2b-256 cd7b85968f5fd6aed75124658045da6346392cc1c0c4b7759af1003f50f2ac2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa9a1db6e3d1b7fab0ba50d06158f9b0f68865e1c70dcef3fc5b718e21e053c8
MD5 62fe9ec6185dd9a8b487a9feb9dfda35
BLAKE2b-256 40e3f4dc27468971d909eae7247057a566afd45e638ee57a747d0c729e14a740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2c48cfadc2977d6feab8f124d736fdf0b84ee90cc79238f57cb9b6544f042f81
MD5 b01243498ff12da91108e29754cf2f71
BLAKE2b-256 629689d436b5542352a7baf73c65fd48ec2c9e82baab6929b89e950c2571a082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a4562196be889d993abfad447dc1c914379706ee4ece9fbae3da5b6a0b944a5
MD5 7806ee792da6069e703aa5cdb54f9229
BLAKE2b-256 eeefcd03b5a82bfabb4cbbca4d45e1068c51a06e16231dc1d932df4d2e6cdbaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 251ed8d73c5a45de706876de5f25a3bc2da9e7f62ecd4af3b848177184ee17a6
MD5 20cb3c8924618a064eea41e47a16080e
BLAKE2b-256 4754ae0de8315ac187e1073a0bf2ac0d651f6ab720bb95ed2b501c8c2bfaf0e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 746b7163ac0d093b0f39bb91efe2bc51598ada6be1f08dad975cfd87bbeda6bf
MD5 60d782199ef70388e42d7c0f8d050a73
BLAKE2b-256 348cd1b33e9e29a185c0a625854a4b007159755c23babcd3fe9ffe1b6bd89167

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84a73e7d58b4453abb556d19538fa3c2f4286c0543c10e963e331f02dda631a5
MD5 855275b227b956ebbc0b02a1cb8624c4
BLAKE2b-256 ff6a334be0689187a56648ebdd160e2f852ae2af4da02c6b2ff112f9494fec28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0d2eb942522f5f1382ae523ff50d4fc1d41b5add4de356f06a515ef1fe964fd
MD5 00cf9dfec0c2f1ac326063701e3c658a
BLAKE2b-256 7e51adbb98c65533c1a0569bdb51f31b977cf2fbdfc8b95f2bb8d9e092ef6461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ddd0b387b0386749805328235bb583db1552d724384906554b16f2efc3cd7791
MD5 4bba6ed6069aae418f970f96f8158485
BLAKE2b-256 52793179757e1260d6c0a221b4548797554631c47ce181f5ac162a0b419f2b51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 364a9e48c77fc670180869ae520ac35a5295a6e3c5e78b36c51ee593a1e0c235
MD5 a71c022ad0c4702afcbc5c962e6314fc
BLAKE2b-256 85f283b6070407e1876e46cde8d26dadc74dc1421b8138bc3332faba9d45f075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b059d4f13604cbe85270df5026dcc2d6454d6a3e2dbfc2e9b39b0decb9a8d2d5
MD5 44e3fcaf7be31b03b9ba0148add340ca
BLAKE2b-256 d81cd9d07c0b2c6643086fa0375d64d024e5141add77365dbd6575cf972e57b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29ebb1c134fe2f3a939d4115da1ddace23d410950f351800a363ee89062b543e
MD5 1c8615694231b0133123643b6c5328df
BLAKE2b-256 8c1ea85ca90f9f0a452d8ce50851f6270145189867df7d78f2d66815ae0f3a0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c9d2ad71992a90eaf3f2dbc1fbcf91f4708f7f417c4cf29f7d4430c3ecba06c9
MD5 feda4793b6ad857b426dc3f01ac0731f
BLAKE2b-256 e0ee954a044f813dc2203d6c2eb375965ff974f8dafee66021808a1bd8596b11

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-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.20251031145656-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 157c873dfa46e70e9815215dc77bb1e48ad3f17174e5823b9ba034b8aa888ec6
MD5 69f753cc322ae3546032e9e6524f03eb
BLAKE2b-256 c7ad1b16082f0b162256bd1fd91c25279d8d9a6dd47faa90e5804074fb98bf47

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.20251031145656-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a9b31c314a88ef0dc693c3f5affb04feff1e08d9730e5b93c63aa7db5705a961
MD5 8ab908f918283c75bbc68acf951ac3ff
BLAKE2b-256 271d6caa2a6a7c2060b08acea758f4b0c039997d77523befc4c74a121b2805ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4117acfcf9d1953fb99688a2f3b8fda52bfd1089951938521fcf728f514e5cf4
MD5 8fd74a484d30e0db72a3b6ef17cb7d91
BLAKE2b-256 ef2bae1af3397331b4ae6f95090856130a9b332ac8715166730a6cc214d6f27f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40ac7292daed1e1f5aeb5e92f61bb1b4d1a7cf5848209c3e7d1894cba5f3c1b8
MD5 70ca53e7c4bca2ce2572952165ce48ae
BLAKE2b-256 9068e25f517fc279542db3eeb0a30965bf3ef34ffdbe73e650fc882e1fca0758

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.9.20251031145656-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2b1873a8a3b842c5200fcfd3e799697d03ef49550efb8f86490c4ed193aeaaa
MD5 9d618d338c0e5138a4cf2b10f93cd08e
BLAKE2b-256 61fd14f328386e8588625ff4227e8f7d7af0345861ddbbebc23b6abb949eacab

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.9.20251031145656-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c3c13fd3ca7ae16369d213f2c6fdce31926c559e3776886f3ed59a1b8005cf90
MD5 3ce7f02fc87b76a75deeb57488140905
BLAKE2b-256 49a11b7dab9dda1263fbfd49062d98e7251f44053cb782d059c8295fd8fbc80b

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-cp39-cp39-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.20251031145656-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f10dded43c949a7583ebb295ac7ee8257362df993d1fd910872a5462a16e2dba
MD5 d0b0f6c908b52d6a68ccf64196cf5e48
BLAKE2b-256 82a5f87ce3fce1851289bfda405dd38c2b917197728b4193b1e9bf450cc612aa

See more details on using hashes here.

File details

Details for the file schema_salad-8.9.20251031145656-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b88a445d71058f3b6abe1d5d774953b33b7881e5d5d158ba92a674beb4493523
MD5 7685dcba5ce82f17f140601f221a8900
BLAKE2b-256 d32ea9d03eed1b0501dd86ef0872ab4ec5095c40e1697fd0483b0013bf9814a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-cp39-cp39-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.20251031145656-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75e53b6a237bbea3fc6a9203d36bb2e3bc22df5c2447d5a0a9fcbab77c719bc8
MD5 e38d5e2dd60b1716c0ad86787de278d7
BLAKE2b-256 afcd8b1ec1b5d16afcc080fee677e5f7472b0b368f912967703f495efab774de

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-cp39-cp39-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.20251031145656-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f633e36d1c2ee6c62ce3c8af2e04f6cfae5eb84d62f272492a9049d530c30f70
MD5 8fb3ac110d2ada86e5186c9c47235c14
BLAKE2b-256 c25e26c1c52e9e7a17dd643fcb72b82deb8aef149ad7d78615e3661cc982eba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfe9bea93c018156630bfbe9a916ed13af87c0e2f173fce4e5636a014d4c2d09
MD5 07c0406e0c61174a5219cd855cef7f4f
BLAKE2b-256 9a15402a5f5b932e8b16edc75489e034ae5ca4681659559d50a99e3ebe6cb76e

See more details on using hashes here.

Provenance

The following attestation bundles were made for schema_salad-8.9.20251031145656-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.9.20251031145656-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.9.20251031145656-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 563b93da5eef2a986a03c1e4b1079e3ff212e8addfa294592166c8d9edccc435
MD5 90663fbff139d635d069c56445b04d1a
BLAKE2b-256 95edb97447266e5dba28e063d8aaae05037a1acc58d558c52eabdef37b9a01a1

See more details on using hashes here.

Provenance

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