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

Uploaded Source

Built Distributions

schema_salad-8.4.20230201194352-py3-none-any.whl (586.3 kB view details)

Uploaded Python 3

schema_salad-8.4.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

schema_salad-8.4.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.1 MB view details)

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

schema_salad-8.4.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl (1.1 MB view details)

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

schema_salad-8.4.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

schema_salad-8.4.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl (1.1 MB view details)

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

schema_salad-8.4.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352-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.20230201194352.tar.gz.

File metadata

File hashes

Hashes for schema-salad-8.4.20230201194352.tar.gz
Algorithm Hash digest
SHA256 ad9b13f63a58d6fe58b485c9fc46469e9f7d49aa5067dc5064d98d87b08e5e69
MD5 eb651c2d248b8228f1798dd282d1ccf2
BLAKE2b-256 9d2ab6da95815ec7d3099ccc2898af1604f57ce5bac48f3b34d3e45f7145a247

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-py3-none-any.whl
Algorithm Hash digest
SHA256 6a54f86accebcb874b1459059a309620bcf7b325b611ab3b86accc3b670fe24b
MD5 998e68e9d3c4691caffa577dbfcf435a
BLAKE2b-256 2769c0f71ec98530a96a0405507ecbb0a20885e1f0694f3f4905c3f37d6ab9d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23d0009b1142cb7962a3097ddeb746b81ad51775d855fb81b293861f9fee2c17
MD5 d35aa9fea3af439b085f60290f71e84c
BLAKE2b-256 74e230de480cc4968af010600aacea19b246bd49446c8189d4919277d8f4dfa6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fe38e3ea3ea737b7fb5486aabab80e84f79893c3ae2322ddcb0a09e54ccb7302
MD5 d4a2a539010f3318958fb903889a324a
BLAKE2b-256 4f12395be0b40de1a57c82851d2161d98ae8ef1d880c3769948233e6d694fdcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bff55d4d8cb4822d4e97383d1b9ec3219db1424939853c17145ad902f1b7c5c8
MD5 4b0956c7732299f9511a1b9ee75b62af
BLAKE2b-256 f367beb73d4a557eb0180f4314c3e58fe86b116d1d859520a5de03a32635d0af

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cba50721df689ed2ca458f58b6bb1e2ec1733926e1ea1eeaa12c3179d0feb1e
MD5 024b1a8cc44b767b0082d8fe6e9babfa
BLAKE2b-256 c0af9fca16c5a772c13dd07c841b95cc172fa3561be1f07bfd24e33372df39a8

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 21e4dda52f1c549aed528d8db9ed5d345ff9145ee95ce9ac592cf2d17e312ce4
MD5 71d9374d7e28bab07ee87174c5b9f9e6
BLAKE2b-256 fb9f9faa8abe59b474bc74a87cb27fbe36e36d147c48a2aff1fca3e5d5d07b03

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c50f6248b756cf842efcbef32de1e4f064a766ade028d2730f0c7b6c2489508f
MD5 c3ef129c6373a0138b0016210abb6c38
BLAKE2b-256 08289581b42caf271804db76c67acea5dbff9d9c7e3af4fc35367e2eefe2ed88

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc53caffff5f213d2099b8599aa5f52deaa0d690875dac468da9773e77ca9255
MD5 bb6f924b1c83b3990a91b61ece4f4a39
BLAKE2b-256 a6f39e2ef9c0ae4dc262bd99bdac16b4dcd007d1a62cd1c793306ebe6e50022a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 d1a90d41268215b67f19ab878c1bac0404e57605e67529d7262c126424082ed4
MD5 a8e726b08159dfa1fc108941a255465c
BLAKE2b-256 4c00ec712c31af700d437439a3400510d5407359f9791276c1e7a52ba8e30357

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fff6797a7900c150cb0dae1800ad09f501b5acbbdac12de19fcd8342282b698
MD5 710c3775dfd6062f92e0e70a5840852a
BLAKE2b-256 7154e51219dcadd08e5b430edabb25b11dd49d37845af85033b7e0926c5cf8ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9d2fb0fc04011f30f38fa3b45e52fafc2ea3aefca44b3d00b34c357f24a048f
MD5 8f842ba498fdf218aa9e44561ecd38d8
BLAKE2b-256 c5441185e7f4765ea1cdec669e567ac941b1e4f8a365c9f8651a2edbf8e14ab1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b759debdfcd6e369456878f1f3b6d0e28cada265540119fd3decacd5653ab16
MD5 8330d51995043f99833063f8e03cf190
BLAKE2b-256 2c137cc69e92245f706b8edbf7fd8f0b73afb70504df7d6eab95a04f7d1acc64

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd57618b40425cbd737251412aa466a37d2a7badfd2df1d2bc392efd882cd629
MD5 5a5caa56b29dbf47d9b7423d3ea5e7af
BLAKE2b-256 2a0a9778ecb9ce9a5f9fbfcb546de17440a21e071431ea56ec3f3f1f3c313290

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 9bdc168823caa4d9b386c7360c26f5ba3e4ca536a3cc4a1326e838d24ecbcd96
MD5 c4bbec86096dd9ce6938ad46581f7be0
BLAKE2b-256 7f951a9216be239bbac330f4e66f54587df6066bdc05043c23b68e143ea6a056

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d3947868576c698e8cd20d78e300e34359484d94c3771c986d512b1e8366295
MD5 21f01528efaaa986e234388317fdfe48
BLAKE2b-256 475b1acf81f7dcff34503b73c39be9d115603af230224e0a200f8a9612ba9f34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78ad98187183dc3832a6a374b6b9dd5dca65b21f0f0b755555c7be32cfa86dfe
MD5 84d9729e8519d80816be2de67c715bc4
BLAKE2b-256 5b6aca4f5aba1a35441cd3739e9f154973cf269bf4a73418226f10c1583a6258

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 7f8d9180d5364e072f93176fee1b410b9d7cc36110c7db6d14851f7a829c9ed9
MD5 f92eb10676fbaa46d5487db1137239ee
BLAKE2b-256 bc05a0915cf3e79a653b3c360f20a5d5368c12d35bde0682f00baec37a762683

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d22c5dd4f38666220e35e02e239e1ad19404cbcd1e41dc2b5a2c3cbf06cc133
MD5 dae2d0c7d5a54e6aca6c99d11975c880
BLAKE2b-256 3a9114c521329806c23a9095dde1398e912854b31eb3526c1cc752b446bc0898

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 246061392d81a6e5f0aca78cd3a68b649f0779e2e3315facbfb7ff96dac865f0
MD5 9f0f849f7f2b87cbed5c647a4ccb250f
BLAKE2b-256 8d4ba19e4f1ef6e3874e0fb02d287652bd382a609e5697f06fda8c370c531d75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f8e64caf0eaab8e164387ccc7570f5230cec83bcb9f8b2eab92b1bced51294e
MD5 957a0c1f6431033dacfafa3786242e4a
BLAKE2b-256 97a47f74ae878bafdb5b59cd41c30fa912f9e4905ebad19ebe8fc8a77c3759bb

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 544a920bcebca71a566123ad9aecd64264631941d3d14c9167f1925eb6e52545
MD5 619550d37c2182abf9efceebe26e5e5d
BLAKE2b-256 1b4b0206c2503004a30aca9a4611f5a3742c75084a04ef9fa7f229a550486fdf

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8f36377abf066d6a929e4385850fd10a06879c0eb77733885594c70c2878461d
MD5 5b0834f89ca2d6001bad1f320e552210
BLAKE2b-256 085d3b6ed01e73174b29a4ee2769c4975211fccd6e565759a199ec93181f75dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 905e73d481eda9a32dce31468a88b319bab2cb2c3c45dd67a2d2f5092785b031
MD5 53a21cb4c68e08757b5af861a14548ba
BLAKE2b-256 a252dd48e009a15816f32d26723a563616fd6c712647b89a0c2eb6265bb2eb6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 137812eb775c0d44d9b51c9ce6173c3fb00d3121c3f81b263c9d5c2b3b6d2d26
MD5 4b41a8c5b4d652bf1cf56a7615c4755d
BLAKE2b-256 191790fa2b939983905114d602a665a1f1cf88b2b16cb8f0442dfa3fc920b43b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 ba4e1e3e755459c974943351ab3e73e858f8260296138c3ee1dd830601fb4eab
MD5 c6f9b0f54117491d19de41557b60083a
BLAKE2b-256 a9575ef5632de1389eccf74e10d55cce04e5b353ab41ca8851f1ed8b74da832e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b326a3358aecf872621b4f5b5bb4d0b20a2e06533835d1f050883397392b8624
MD5 14db49881877c1358fdb425243913135
BLAKE2b-256 0e4495c345e729200f9bbf3e89cfadf620057d2fa955edbfd1718248dd0dd11c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 531d8f35dca37662f9bfd468cb19dddaff6dfc4b0162c68008a237224bad674a
MD5 8b864e9197c235b5e07e478561988921
BLAKE2b-256 17a91da2f79c3ab91ce8ae32a464cadf293ce787abaac258e270844b8a629ff7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24270ffb5a4d069c7fd3de7ab6204b93e92d2f798909089d0c35745c0dd45eef
MD5 b8c06246fa4cf2d782bc44afb0538a07
BLAKE2b-256 cca408e3c10b9156f453b5e06d8e3e6ef6ceb80b3ea378c1688b7ef858d2f3be

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d54110c5c33df2e463e97fc9d32019a66dfb0d9e5c53c7bb2b03145565536849
MD5 e8563437c7aa510c254bc961123ec088
BLAKE2b-256 b67ec03a4a64352e8750830d8cafe07f042b9d388f1869d4e18f5aa66c4761af

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 29dd263716a40096eaa9e5e4913116ef05f6f63a8cb71baf525b8c1adf0ae02b
MD5 b77e5bb2f67c18e265c94e03a293a24d
BLAKE2b-256 0954e57fed5f048223001ac5e6a127ab9ddd7258a68ad15cff2f5aff475e13f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caf7cc73b6ec8fae6fa7d2a89607a0caca76fbb45197c83c804a009d01b6fbc1
MD5 503feb2a9987ab02c85f097411cb2e5d
BLAKE2b-256 e3ff2ce61e53ac860cce64fd5cc26d6598d75dc7eb1810ba9b5a54ef9a73aa8b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd65df444a66cec120e5c08f8b6dbe61ff394ee3f9376a51b4c6dfa4ecb84413
MD5 845ff2b141d65402c405a0c58bab4cd2
BLAKE2b-256 75f38cc151848e7966a77cf9479f6b2452b19c799d789f875df5e0841c88bf6c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 aba36c20c674f4bb7365df5c6c6535995a9a4b410498fc5326e86d4239771318
MD5 7f5e7744ac3a0b16f84554ba69d0e1f1
BLAKE2b-256 abf69821439e3749867905a3889fe660fde3c7afcb60c1096e1a9412c7f427eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 62898b4c46c36508f4204525469ca7459d7e0204ddff72a717ade988e16a0e15
MD5 cb5486c75f4e51daffe2467e12c7bfc1
BLAKE2b-256 164c78734d06ec255bc71c81bbdb1c78e02df2afb5887ea142771692030ecec6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb1c87beb97ee0463cc999442822b0ebcc1f475a2dc8d47bc68330963957a73f
MD5 ba69cfff53f4d4a3944a878bc87025a5
BLAKE2b-256 e6463520b0d3c3ad6778be08584ff4b8eb1453077d0cb2e1e076518f315a5734

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3ed9fd4e44a67ebbd4e1e87d17a59a4a367c241fbce3bfcd232c377f8177eb9
MD5 db45c40f1c42a9a9879a52cbff3190ad
BLAKE2b-256 5c27b771c4b63e2d057f609e687c376a3d18045ab1f3c20b8b84da0cd3ed6146

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ec21bb577f6888712354abd54abf6c66150b412234254e0ba9e29f9ace95cff
MD5 1d917dcf855e7d5960bfce156f6d3624
BLAKE2b-256 82ebcf743026ced10f4f59d756ae62a493af8e9b33a60811d5c520466261862e

See more details on using hashes here.

Provenance

File details

Details for the file schema_salad-8.4.20230201194352-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.20230201194352-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 2a88585bf5ecb53d3caa0278bb896701168bed828eb896e6188035b1a9eb9bf9
MD5 4c98c86c6bb651793b8d006f5f72162b
BLAKE2b-256 6d2882d9724b75ed84e2b8b3c521c954eca205d9179b7e54ff4230cb9e5c8c9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30ac51e273361fdb7362e3a65c25aacfb6feb8760d3201bdff68d61015d413b0
MD5 f598b2a452461f31d55e818d4f08cfe3
BLAKE2b-256 d53a2e6131ee8b8af55762f20ead0b655b6aa1b8521d27cf8ecf2daba01d1085

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed9a027b051e4b3f469decedb1c52f42561dabe78cdd23da037a23effda73d85
MD5 1784214000cbaa1cde21ee4faf8d8a5a
BLAKE2b-256 887e6dae4cd7a0ad3bd863eb5f7ef83b69fb9e2bd2b52e26bc6c925fb69ca240

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for schema_salad-8.4.20230201194352-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl
Algorithm Hash digest
SHA256 a16e7e6eab15026c0b7079a927cd6c8f8c2694b74c7066be960fcfb28c8d3a3f
MD5 6ba43ad82494c0395b81ffbd3fe01bad
BLAKE2b-256 4673c0967e36a29cb825ac532567918fe660c9a96f6132e3569b8a2c74266313

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