@stencila/schema
Version:
Stencila schema and other specifications
21 lines (20 loc) • 456 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/MediaObjectTypes.schema.json",
"title": "MediaObjectTypes",
"description": "All type schemas that are derived from MediaObject",
"anyOf": [
{
"$ref": "MediaObject.schema.json"
},
{
"$ref": "AudioObject.schema.json"
},
{
"$ref": "ImageObject.schema.json"
},
{
"$ref": "VideoObject.schema.json"
}
]
}