{ "$schema": "http://json-schema.org/schema#", "$schemaVersion": "0.0.2", "modelTags": "", "$id": "https://github.com/smart-data-models/dataModel.DCAT-AP/edit/master/AgentDCAT-AP/schema.json", "title": "Agent DCAT-AP 2.0 schema", "description": "Agent Schema meeting DCAT-AP 2.0 specification", "type": "object", "allOf": [ { "$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/GSMA-Commons" }, { "$ref": "https://smart-data-models.github.io/data-models/common-schema.json#/definitions/Location-Commons" }, { "properties": { "type": { "type": "string", "enum": [ "AgentDCAT-AP" ], "description": "Property. NGSI Entity type. It has to be AgentDCAT-AP" }, "agentName": { "type": "array", "description": "Property. Model:'dct:description'. This property contains a free-text account of the Distribution. This property can be repeated for parallel language versions of the description", "items": { "type": "string", "minItems": 1 } }, "agentType": { "type": "string", "description": "Property. Model:'dct:type'. This property refers to a type of the agent that makes the Catalogue or Dataset available" } } } ], "required": [ "id", "type", "agentName" ] }