@stencila/schema
Version:
Stencila schema and other specifications
38 lines (37 loc) • 677 B
JSON
{
"title": "Node",
"category": "metadata",
"description": "Union type for all valid nodes.",
"anyOf": [
{
"type": "null"
},
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "integer"
},
{
"type": "string"
},
{
"type": "array"
},
{
"type": "object"
},
{
"$ref": "Entity.schema.json"
}
],
"file": "Node.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v0/Node.schema.json",
"source": "https://github.com/stencila/schema/blob/master/Node.schema.yaml"
}