The Unify101 Dataset Vocabulary (v1)

A vocabulary for defining datasets using JSON and JSON Schema

The URI of this vocabulary, which targets JSON Schema 2020-12, is:

https://schemas.unify101.com/vocab/dataset/v1

The URI of its metaschema is:

https://schemas.unify101.com/vocab/dataset/v1.json

This vocabulary declares the following keywords:

dataset

This keyword is set to a JSON array that represents the entries of a dataset. For example:

{ "dataset": [ 1, 2, 3 ] }
{ "dataset": [ { "data": 1 }, { "data": 2 }, { "data": 3 } ] }

The value of this keyword MUST be collected as an annotation.

datasetRef

This keyword is set to a URI reference that points to the dataset in JSON format. For example:

{ "datasetRef": "https://example.com/my-dataset.json" }