@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
36 lines (35 loc) • 763 B
JSON
{
"title": "Primitive",
"category": "data",
"status": "stable",
"description": "Union type for all primitives values",
"anyOf": [
{
"$ref": "Null.schema.json"
},
{
"$ref": "Boolean.schema.json"
},
{
"$ref": "Integer.schema.json"
},
{
"$ref": "Number.schema.json"
},
{
"$ref": "String.schema.json"
},
{
"$ref": "Object.schema.json"
},
{
"$ref": "Array.schema.json"
}
],
"file": "Primitive.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/Primitive.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/Primitive.schema.yaml"
}