@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
62 lines (61 loc) • 1.63 kB
JSON
{
"title": "TupleValidator",
"@id": "stencila:TupleValidator",
"extends": "Validator",
"role": "validation",
"status": "unstable",
"category": "data",
"description": "A validator specifying constraints on an array of heterogeneous items.",
"properties": {
"type": {
"@id": "schema:type",
"description": "The name of the type.",
"type": "string",
"enum": [
"TupleValidator"
],
"default": "TupleValidator",
"from": "Entity"
},
"id": {
"@id": "schema:id",
"description": "The identifier for this item.",
"type": "string",
"from": "Entity"
},
"meta": {
"@id": "stencila:meta",
"description": "Metadata associated with this item.",
"type": "object",
"from": "Entity"
},
"items": {
"@id": "schema:itemListElement",
"description": "An array of validators specifying the constraints on each successive item in the array.",
"type": "array",
"items": {
"$ref": "ValidatorTypes.schema.json"
},
"from": "TupleValidator",
"isArray": true,
"isPlural": true,
"aliases": [
"item"
]
}
},
"file": "TupleValidator.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/TupleValidator.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/TupleValidator.schema.yaml",
"type": "object",
"propertyAliases": {
"item": "items"
},
"additionalProperties": false,
"required": [
"type"
]
}