Sha256: 5bf776bf5c75a684912cf68f6787a9f8636866c2c9f34837882137ca6ea4a0fe
Contents?: true
Size: 1.01 KB
Versions: 7
Compression:
Stored size: 1.01 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "id": "temporalExtent.json#", "type": "object", "title": "", "description": "A temporal boundary comprising all or a portion of the resource.", "example":"../examples/temporalExtent.json", "required": ["type"], "additionalProperties": true, "properties": { "type": { "type": "string", "description": "The type of temporal extent.", "example": "", "translation": {}, "enum": ["instant", "period"] } }, "oneOf": [{ "title": "Type is instant.", "required": ["timeInstant"], "properties": { "type": { "enum": ["instant"] }, "timeInstant": { "$ref": "./timeInstant.json#", "description": "Represents an identifiable position in time." } } }, { "title": "Type is period.", "required": ["timePeriod"], "properties": { "type": { "enum": ["period"] }, "timePeriod": { "$ref": "./timePeriod.json#" } } }] }
Version data entries
7 entries across 7 versions & 1 rubygems