@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
37 lines (36 loc) • 770 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/ValidatorTypes.schema.json",
"title": "ValidatorTypes",
"category": "data",
"description": "All type schemas that are derived from Validator",
"anyOf": [
{
"$ref": "Validator.schema.json"
},
{
"$ref": "ArrayValidator.schema.json"
},
{
"$ref": "BooleanValidator.schema.json"
},
{
"$ref": "ConstantValidator.schema.json"
},
{
"$ref": "EnumValidator.schema.json"
},
{
"$ref": "IntegerValidator.schema.json"
},
{
"$ref": "NumberValidator.schema.json"
},
{
"$ref": "StringValidator.schema.json"
},
{
"$ref": "TupleValidator.schema.json"
}
]
}