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.6+ 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

These 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, using the CWL v1.2 schema as an example.

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

(Not yet implemented)

D

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

How to use

How to use

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

Uploaded Source

Built Distributions

schema_salad-8.4.20230606143604-py3-none-any.whl (587.0 kB view details)

Uploaded Python 3

schema_salad-8.4.20230606143604-cp311-cp311-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

schema_salad-8.4.20230606143604-cp311-cp311-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

schema_salad-8.4.20230606143604-cp310-cp310-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

schema_salad-8.4.20230606143604-cp310-cp310-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

schema_salad-8.4.20230606143604-cp39-cp39-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

schema_salad-8.4.20230606143604-cp39-cp39-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

schema_salad-8.4.20230606143604-cp38-cp38-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

schema_salad-8.4.20230606143604-cp38-cp38-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

schema_salad-8.4.20230606143604-cp37-cp37m-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

schema_salad-8.4.20230606143604-cp37-cp37m-musllinux_1_1_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.28+ x86-64

schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.24+ x86-64

schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.28+ ARM64

schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64 manylinux: glibc 2.24+ ARM64

File details

Details for the file schema-salad-8.4.20230606143604.tar.gz.

File metadata

File hashes

Hashes for schema-salad-8.4.20230606143604.tar.gz
Algorithm Hash digest
SHA256 f19a3d6614b4afecec93b9c7121d31ee01d8c1aa169b272d41844ca61d3d9af6
MD5 17cfb564770a3dd04edf85154858e501
BLAKE2b-256 34a0245b852857d738cb771d7f7baf9abbd91942317fd9776f82d8b7ea1487c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-py3-none-any.whl
Algorithm Hash digest
SHA256 0f3a9adcafccdfe4728591ee61cce96f9ddb78a6cc664d189d0bb212389e8c54
MD5 1ba33f7a2c8b9c2e3ebc9deb00c806da
BLAKE2b-256 92cfe35262f46b8fa68933525edaf4c4dd775fdfe0a9c844f633358ae774575c

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3e463d658db5640145a4983420721efcd908bbf9342da22a2dc83514cc8ccea3
MD5 cad76ffb9fc26752fa4029cf5ed4da63
BLAKE2b-256 0fe33666195d63835d1ba3aa167a86bcbccd041b22713437d58f95c0bc4ea057

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68e65194388ad29b399f94c22d4affa63bf9f2602c1dca57acf5a2eaa504dfd0
MD5 d1515b16f26c49fcaa2bc20467009169
BLAKE2b-256 e6714c8be3a90ce2bf9a2f94014d69e12c701ca64364a59394879bce47278970

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b37445c4f4336fcdc278388f2dbc97c9058e06a0935c4f84ad9659e336f7bc1
MD5 49b3a6dd4904e6da0772c75d28b06119
BLAKE2b-256 11641ff8fa57d376b2ef01e1c84f333b36fb14ec920425f4f17f17a772e36aff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b88d26ddd67b6682599502b1958b5d74622dcd1f0f82501dc3a210935a5ebf4c
MD5 cab3fe5758c57e36b8b135b540f7bbab
BLAKE2b-256 3cd84ff468f98dac8b5989128500d3c18c2709e30fd0c494c791c0b605ace44b

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 4ff932dcbc5ab487e959cab5ab7856d367c8e339d105b9d1fc4659c44668456a
MD5 5bfb8e0c679002e406d3fb694e5b92be
BLAKE2b-256 edd0873d8f1fc626c34492fee46f32820cf2ec0213a144fa8cb512a126c97b3e

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c9b601a7f7430f0582dc6be0fda7b7aa6cc112e622ecf60f1236786c4597f86
MD5 882e4cd329ea035d2854287fd2586655
BLAKE2b-256 7ccf57efc015733bd7ccfe8b593e5065f7e1b011bc340865ce8e606772a7bd69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08112507a4dc5102876fce6d9b2138ae5f0b90d04690a17fd9dee8d11687d91d
MD5 5925e5acb77caade4caeea6558767fc9
BLAKE2b-256 ff39f8c2210cae4162c7123e55803594c38c5686381e7d2e5737d79c50bfeaac

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 6d3df5263a7be8c74bf11d46cccf77d004970edb8342a0125a14fba57d4a1033
MD5 0c3d53dca74943ceb2a300ff021c9676
BLAKE2b-256 e847eabdd50815b72f339de4b7795e31b15a1f78d09e3e2eed535bd551222360

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 72ee112e555bada3d2941905bf01ac6ca5531bf4b09fcef9ab98b4ba313a9014
MD5 a74de97ac0148ed987509e44fde25558
BLAKE2b-256 d182f8a4573c831e2c8f65a3855a985d5ab87645270ae610e4904f854d27fc1f

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea0ed53039666f2c8ff3d3a53a95f0240c70091529cb731a14c5027827e33461
MD5 b3ec49401f4cc56204513c0aac930cee
BLAKE2b-256 2870b13fe1791917c83421597725a4aa5f8f6ddd211ae5799a3019a28dc27a6c

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12cba653cb1ecae6e15fb4705cf34c647acbce56ffd9cb051933229b004a28b8
MD5 22d6541eee95ae8ca9d8c7a5aee9fb09
BLAKE2b-256 5db740543b3b74d0db68702814db9ca82927ff320264e8a0fed43ad96ca26714

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6489c690cdea3a0989136d2b7ad46e99303b5de57564f4b10c70331dec08d6d1
MD5 b5b7b664ecc80c5e145dcb05e2d0c455
BLAKE2b-256 b043e2a13e462b42f2c91134da31c2517358ee2b7cf0f5b206cf41d7338fe0b6

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 46e1f334fd51f09e500ff4fe80c68fb5497bc293742ac599d9c40c6ee2baf82d
MD5 bd21ba95e7cc07a41104c7bfa2e86c18
BLAKE2b-256 91289c3a455ad0145cfc1099f1c8ba61a308e514f979fed9cf491fc3698af407

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 accd90fd11a203df7c20505e8187873f36ede9b12379afdd440fa893ab68b6f0
MD5 9003ce855705d218b8d02771c3f6a433
BLAKE2b-256 29a22e268ccea3f4a657d0343376459aa1ba52aaa64f9ee2b64a9e9150cd7764

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3ffda242c3b957ab79a07877c81c4488eda3cbb7c6796943a077462f84d14f8
MD5 de04e4a492d6a1939fbb34b701dd3f1d
BLAKE2b-256 65e25cabbd62851d12f71d9dcc903f484db9af542d0facf0a0a863d724a3fdfa

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 5a7e84f7f6a5e7d97b55a342d81e2969014a1b135bba749479b694c0264e043d
MD5 e1ee544fca8f581d9ac9cd9a0450eb7d
BLAKE2b-256 a8bb6f83a425b72a622acff18b10ad02175d5ecba09362d72f8af0f592aa453e

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aadf5899a3fae74badfa71d59dd170cd92eadf5904b4dd6c58656651b9179c9f
MD5 419a6777248e5e93574535d6adbcc692
BLAKE2b-256 96182388a7a99ef0d5f8a98950a447c86b8e049aca539149dbf32bf1ff9ef5f6

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 74a6f5645cbc6236c1b3d90a15987c748590765a24297c25e2f35b6c0981655d
MD5 9c71e87961fbed23b30e5dc0100d978c
BLAKE2b-256 dca70b5f9e9990025634166278fc04ad88c043bbb8732ae4b9cc347570e52115

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6488b7194fe2542f982476795ea5db6b86e32d9f6454a7ad9d5a4049d033f296
MD5 df254dd464860115f0397afb1ce11fc8
BLAKE2b-256 b81517c5d398194408f90a0a3d0f3b34106000abba4cb7f6631295df3c991656

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6c0c26d12f9081d65621e491708f3c75d8f7ffe0877f980c90c34e779d45d6c
MD5 6ff1385682bc159da8e87a48581723fe
BLAKE2b-256 058158647bfec74672e7a951c8ff0c843462186907e16d84eca1f7655b8dde33

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6789d1d40066c527b8710c69f17b62f485ef92762ea35ba50334b9fe5c1b5c6e
MD5 e052f71c8d51a8005f12d4701e25aa5f
BLAKE2b-256 7378c747aa328f1c11232ba2dc0d73193df9e869402690a9112b0db12e0ac77f

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 441bc6b2c868e9e8d158b6392fda5c87d1adaf508aa43b101fa7bd6d2dd97eba
MD5 deca4c6085715d80e2cf69264ad29e4d
BLAKE2b-256 01c4b06369b03d9491f22d8137035e4ea1024c5aadb5109eef78b57271d395f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa35788cdf38becde9166d1703622176f30a1dc62b71fc7b654faea30fb2c3be
MD5 bd19728c04a95924912119415185f367
BLAKE2b-256 e4a4a4752b9a14c5d9dc6a6ec2a6fa145690546eb6997c8cb0c4711070c4d106

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 2abe3c6c0308257d5ee9a2755094c60983e5ce9ff1a0594b74d83f982b434ebf
MD5 d8c7e8042a39e288618bdafa8b056588
BLAKE2b-256 12a754d29480152984f334aa29b1b781dfb5f08db0dd9be81e03f46ffb2b232e

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea0d4c3942317ad3f9a2c0c9dd9ed8d74752b67736721db07a267dab301d1d6c
MD5 b2f35c163d6da602979f8fc3b05331f8
BLAKE2b-256 f6d061f427a2ec99f35b58737b24fbe654ca5525acfbd8716d80884c2d450945

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c0c9f3112627b01bf1eba7633de4d191f0e7dc617604228f810379a65cfc6cd
MD5 bf5030a982f3d8543fb2e37e140e6b2d
BLAKE2b-256 87f11849a1fde2b492fd276ce965aae6e1468cf9f6bf5595ad6d77c364164f44

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c55f5ecb7fa1fe844fbdb50f4400a7339f12d053394c51955263541a5ead3cd7
MD5 68dd4f6c5970fd3de68890e971dc7f8d
BLAKE2b-256 fe70136e9280813e2210daaaa3cae02519876e20287be7d920a8fd04bc3d3d66

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1baf114f9128fdbe89f816f7abf93cd2a7927e3e9fc30633ec741badcfe475d4
MD5 d59739fab64780c4a66aa3c9446f599f
BLAKE2b-256 5eef19e9553034c6cf935c799548c64d5412d68a99fafeb9d617024658a2082e

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 6f13c693dbd954d36696f42c7eeb03755ffe1ffdc1e778010d55786671c332b5
MD5 eba553b621ae950cdfe9892d208438da
BLAKE2b-256 08ffdde10911bf7fb03dd5f1620ece8918509513be1eb3b84a17e382e269c27d

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85cdf3850f1215a3c741d729c1f65514f2ba90dec3ee3597a3a44ac7cb2657e0
MD5 64c3d5be9d69a98c6a189a7581817823
BLAKE2b-256 66033cef79fe3216164ffd7a8170f422ecd2ffad7cf0fd83a84468ba13cd1ffd

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7be63416d551ac8e4eb6ecc83268a6ce1775a363f965c60957a27083acff8d96
MD5 4fc4aaf3377c11faf19248cae9a9015b
BLAKE2b-256 800d506f86b4bfd8aaeeb7526ceb4666e52db6306a4eda3470f8aeb241fbbd0e

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 639fe4c9ca2fa3f577ae6661a4a538ff10d76a7a85c309d480dc278e0ddd635d
MD5 a8fe75ac7117be4e7f9a361856e662b4
BLAKE2b-256 d026eb416609444521024bb61ecc877d72d01859c55f7f10066aea7ae74b8ce9

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eb1581920d96c8044376a072cb45189a5aac743789d9b203fe5351a5d1ab7d58
MD5 3965e06633a0639d1455c316b5a563db
BLAKE2b-256 e09e83e64ea233fa78f67def8a43ebe5298e90b9dc16d379c268ccf43b47c27b

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d33c3c0a1820fd21bb3b94061a971e5fc5156ed69398ef3eb487779891a396ee
MD5 09b2de76bbd7a3739c4a4b7af536df7f
BLAKE2b-256 0ae4426bc32c8cdb42850640b7a040a560a81ee3bd9177d9f22f06bcfbb7e204

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0006e17d5c2d3edb5f6dc7e915a2355d4ec22a686960f0eecb22bba9c40acfc
MD5 a6f3d88ca9f1f9e2ff28e54d84796b39
BLAKE2b-256 34e99999f65ac9bddd17cefa7c737f725e3667881e2d2df627a1cf6f74db1887

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c4550c83760138a242010bd75db589104f19c9071b4edb805dd101137097c70
MD5 433c8ebd09527504938ac91e7e2f0944
BLAKE2b-256 244276ce94a197018ba460de40f254efb7f795f69fb3935ad997d3a75480f8dc

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 4e88d3f46895a15c3356840a84cfc965a60ffa16233d3a7237425c294fb08975
MD5 f650fb5af9a58ddf69021478b93ca138
BLAKE2b-256 2cffb20944c5648f3b86ab643468533c55b204a14cf6df8c71457ccbbcaa8743

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a496464826b187b6a4a0da14ab9754940e6310a35ba5f22b37de411f4267ae9f
MD5 89fd5926d1e5c0238c88d9b471521a24
BLAKE2b-256 0abc5e652f38966b74f0c163bd9b48fe421fc1f38a1037251273a09cc2a32260

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc8fc3f9b25305a2bd660d3343ec099a4d620a659b62530a543f5f5aa30939a2
MD5 88e7c8dbbeb6000e9a6052b37a8eb147
BLAKE2b-256 26e1319c0e06525e635f33155ebde19a5e27edf3476ea4301bc10ae3b5d876d1

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl.

File metadata

File hashes

Hashes for schema_salad-8.4.20230606143604-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 217aff85c2eac567dd490fd3c5fc44f0c6323e5c772ab04c599396e05e556f67
MD5 a8173b0aa57cdd3f115a6a83da112d64
BLAKE2b-256 10a4bf6a9f7a369dbc1019c802dc0a59a0abfe2dc6a4f29441b92757e68605ca

See more details on using hashes here.

Provenance

Supported by

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