@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
28 lines (27 loc) • 562 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/CodeTypes.schema.json",
"title": "CodeTypes",
"category": "code",
"description": "All type schemas that are derived from Code",
"anyOf": [
{
"$ref": "Code.schema.json"
},
{
"$ref": "CodeBlock.schema.json"
},
{
"$ref": "CodeChunk.schema.json"
},
{
"$ref": "CodeExecutable.schema.json"
},
{
"$ref": "CodeExpression.schema.json"
},
{
"$ref": "CodeFragment.schema.json"
}
]
}