Skip to main content

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] [--version]
                      [--print-jsonld-context | --print-rdfs | --print-avro |
                           --print-rdf | --print-pre | --print-index | --print-metadata |
                           --print-inheritance-dot | --print-fieldrefs-dot | --codegen LANGUAGE |
                           --print-oneline | --print-doc]
                      [--codegen-target CODEGEN_TARGET] [--codegen-examples DIRECTORY]
                      [--codegen-package DOTTED.PACKAGE] [--codegen-parent PARENTS_MAP]
                      [--codegen-copyright COPYRIGHT_STRING]
                      [--codegen-spdx-copyright-text SPDX_COPYRIGHT_TEXT [SPDX_COPYRIGHT_TEXT ...]]
                      [--codegen-spdx-license-identifier SPDX_LICENSE_IDENTIFIER]
                      [--codegen-parser-info PARSER_INFO] [--strict | --non-strict]
                      [--verbose | --quiet | --debug] [--only ONLY] [--redirect REDIRECT]
                      [--brand BRAND] [--brandlink BRANDLINK] [--brandstyle BRANDSTYLE]
                      [--brandinverse] [--primtype PRIMTYPE] [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 src/schema_salad/tests/basket_schema.yml and src/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.

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.10.20260810193251.tar.gz (598.7 kB view details)

Uploaded Source

Built Distributions

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

schema_salad-8.10.20260810193251-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.10.20260810193251-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

schema_salad-8.10.20260810193251-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.10.20260810193251-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.10.20260810193251-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

schema_salad-8.10.20260810193251-cp313-cp313-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

schema_salad-8.10.20260810193251-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.10.20260810193251-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

schema_salad-8.10.20260810193251-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.10.20260810193251-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.10.20260810193251-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

schema_salad-8.10.20260810193251-cp312-cp312-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

schema_salad-8.10.20260810193251-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.10.20260810193251-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

schema_salad-8.10.20260810193251-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.10.20260810193251-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.10.20260810193251-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

schema_salad-8.10.20260810193251-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.10.20260810193251-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

schema_salad-8.10.20260810193251-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.10.20260810193251-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.10.20260810193251-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

schema_salad-8.10.20260810193251-cp310-cp310-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251.tar.gz
Algorithm Hash digest
SHA256 abf6ae90ebc2c2bd89de7e66387f4c9143aa875de8401dae09a938c210cba703
MD5 af37000bca1bf0e1480ff52af4b4d0d4
BLAKE2b-256 bd5aef7e389622d894c2644df62f168958e3ba6b41d17fc770a08d96d2dacdab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdf34e35982a2d526f03476f18975fd865d743e2024402ab4185a6faafcabf1e
MD5 1132c0b880dac68820e57242423ad667
BLAKE2b-256 5955410ef052bd49b46e695abf79a0a8811462a8a207e3daa3ebfd7771f36f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 023a090ecb1f85e832ffcb3f250ab1574d6e7eea07471fdda2e3e049bede67b4
MD5 97a7bc5655a4cf1126099265a8395181
BLAKE2b-256 dcb4620e544edcac35b54d8ac7d3ca3e9d3691f53d599b337598210d0d915ecc

See more details on using hashes here.

File details

Details for the file schema_salad-8.10.20260810193251-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.10.20260810193251-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98c26a66b9b0d08432c7245523e4850886744209b61576c5aaa54bd5e043dce7
MD5 b17708c1c8d40e2b0157e1cc01bd5032
BLAKE2b-256 afd48821bdfe5239cee4cda76593f8faceee55c422710d2a1234edad49c4aab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc734071e98a15593e41949a388596a8ae664115616362587203a5ce0a8f372f
MD5 9964dec9d82993a96d34c060e07a64e9
BLAKE2b-256 4eac1f5051a383c3d8b44e37cedb76518d9be2ff011d779ef1ca9264dcd52364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49c58e8bb6e854774ac96f3d6a6389536bc6bedab7ee558e829029344d9186f6
MD5 ba2946b2c3175f1e2a889f1ca9532e48
BLAKE2b-256 afcf3344225cdaa1a60a064ce9304c509bbd7e859762737427a5a47b3e57d9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6be991e9c1880c290d3ca59fb23f437b36c60dced755db9a9191416ced20b841
MD5 b3aafcb0b83f07a7e9bd86f19fdf7b1b
BLAKE2b-256 3a6999f439b734bfc41f67a3f40a024cd2b5524ab20a1d759fd030b97ebe591c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc8eddbb556008c671991d78fb8479719ae44f25d1613dfe9eee306974bbea5c
MD5 22bc70e2356a27070c86e4e3b45398cb
BLAKE2b-256 6878bc7638e8f2e611e1d76be03913bddea21b4f5050624db5f8e9ef8b097011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9914891df9d81aecf4c396e43f0bacb4e70fa33355cefea025bced6de1f4489e
MD5 cf9b586a0b0dace7ea29db6071053330
BLAKE2b-256 566ee83ed408ef5d6d7d28319a4955923d7e52573762d858024318b0e5cb3593

See more details on using hashes here.

File details

Details for the file schema_salad-8.10.20260810193251-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.10.20260810193251-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9717c8774206560d6ea5de035293410f6cc45ccce08c9f1cdbd45a2af8e3fd14
MD5 4e90f7e302c9248f88519eb281b946d0
BLAKE2b-256 cdefe62608928757af8af6e56279c2b4b041c79e3dc804081be9a6bd331ad032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 31aeb089d305e175c97129040f1f29de51f06319bc5b532d721c3cce61902e37
MD5 78b660b7e2e10dbcbd01ea34e77fed7a
BLAKE2b-256 dc14330eecdf43dc31976217fecc4bd47924892f6909a0421b28ba5b6604a60c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d049b0f48674af9475d31f6556dd12471d248d943002c2f7c59f2da434d8b370
MD5 945ce467dc42b942ec46f1de206ad1fa
BLAKE2b-256 8c9bf451c86e14b0672e8c720a51ce611a3512f6562e6015e670739ff4600a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 977b878fa10dd62fe56547e34228ea1f6df3b67f37f63017237b5f2e8a21dd7c
MD5 87873d6e84758ea05943091845d136f2
BLAKE2b-256 9e7bd2a081277c032ec8a079373285e4fad1cb2a28123c0cf5e527d966561b0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e9d27e262b6e21b23957cef97da976cf9ce74bed0eec48f13f4d70af56fb04c
MD5 d715131578fc67ed0575db2dcb46d8ca
BLAKE2b-256 863d65e3f18f63ffe0739d419ae09899ad4d16e53254da86978083b3604e1b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14e27b5a7c6aa162e5463848874bbe15401c52e573d23f77784381858777562f
MD5 3f0e500d1135214d857f4a14da8db8dd
BLAKE2b-256 eb1c03c1dfe373fc0f57a0ecc025e2898e68277c6b6d6841761f7a166b4e2bd7

See more details on using hashes here.

File details

Details for the file schema_salad-8.10.20260810193251-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.10.20260810193251-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e253ab071e35a47f2d9a5efe34941787a885ad3e481c6714bf93003695dbc58
MD5 52f2cb3cc8887672f7e5fca1f8da2a6e
BLAKE2b-256 f908142dda16de9128a86ec912f218b5f8f7f02a42045aefb397938203f39211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c70590500de83b986fdadbc0dca25b75d8682ee0d1af15f7b051619594ad43d0
MD5 d942cd2658b23c0bcdf2fdf39cb004cc
BLAKE2b-256 90a84041718622c75e8c55e8a54be5266c1dbe6c71456d98844928510ea1365a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5b20bbca13e194016449b8d37c3a58175c21f06932149480bc3d37cda2b74ee
MD5 afa72701c47229bc549080c946500bae
BLAKE2b-256 db710613999387f52cfb1723d1acd02cabc2688323e7199af55a5127eb52149e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 331d5b8864936c54c722344ef8e9f419b48e58de0b4f456e4485d33a2c2ce394
MD5 a0d7353f8dd8c775aa001cc724fa3a9e
BLAKE2b-256 e7ecb27fee66b1fbe3f22cee30991737f6f40755afd338755570e1519a6509c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7f5b71cb9df8105d977b5e79f9141449a9fd9b073d202fda7670c5a18aabcfe
MD5 3ef281e4204da87159d12c02f363f07a
BLAKE2b-256 15c90e5ff1cbfd64f803f2b5a02469dbf09bca339b5d32494abc26a0221796b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8b8bf95bddebcf69e9957fe07ca6693c83ecab44a6e480965e34f8df429f775
MD5 145998ddb94a16f640ab82d3aab53b60
BLAKE2b-256 b0908d1023271f353466fdec14161600fc44ccee712da6be0727da808b9ac474

See more details on using hashes here.

File details

Details for the file schema_salad-8.10.20260810193251-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.10.20260810193251-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e665fa2c14c24f6b84624bf62a1028454a6615d7604887ca97753051a23f63de
MD5 211eff5edb820f98ff00f418f42b0673
BLAKE2b-256 3862d0b2875dbe280018b0df6aaad1f308cee9beb0316a1f84c8e5b466ffc3fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2d3ebc488011edbcd98440f5081c71fa91c44cb21a20d50b4f5614b4eaab424
MD5 768e0e17ee6b76ea7e4ce4ce09489874
BLAKE2b-256 db6b722179c55080bdcbdf12b75570c2d5337e795ed77dcf019fa0bcd92c9c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ca39cb984f8b2a8ecc2b514596ee1fb5b003da9cc66a9e51b7458be3f62ed64
MD5 f4e7399f363975f0a82906906afb7080
BLAKE2b-256 776ec4810686496fc1ccf4f62465344928fa2ebf588947a9602503145b729751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for schema_salad-8.10.20260810193251-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2541858aaa0c9d4726ecc5207c7953089362dc0c402108e6b690797b044dce87
MD5 a207ecebd9278d282afa6485379b4607
BLAKE2b-256 492c98d0cae805153b52066e12198a2cee8045eabaee55906a602ce3c9c7c60e

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

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