@stencila/schema
Version:
Extensions to schema.org to support semantic, composable, parameterize-able and executable documents
68 lines (67 loc) • 1.69 kB
JSON
{
"title": "Date",
"@id": "schema:Date",
"extends": "Entity",
"role": "tertiary",
"status": "stable",
"category": "data",
"description": "A date encoded as a ISO 8601 string.",
"$comment": "This type serves mainly to disambiguate an ISO 8601 date string from\na plain string. It should generally be used instead of a date formatted string.\n",
"parser": "date",
"properties": {
"type": {
"@id": "schema:type",
"description": "The name of the type.",
"type": "string",
"enum": [
"Date"
],
"default": "Date",
"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"
},
"value": {
"@id": "schema:value",
"description": "The date as an ISO 8601 string.",
"anyOf": [
{
"type": "string",
"format": "date-time"
},
{
"type": "string",
"format": "date"
},
{
"type": "string",
"pattern": "\\d{4}"
}
],
"from": "Date"
}
},
"required": [
"type",
"value"
],
"file": "Date.schema.yaml",
"children": [],
"descendants": [],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.stenci.la/v1/Date.schema.json",
"source": "https://github.com/stencila/schema/blob/master/schema/Date.schema.yaml",
"type": "object",
"additionalProperties": false,
"propertyAliases": {}
}