{ "$schema": "http://json-schema.org/schema#", "$schemaVersion": "0.0.1", "modelTags": "", "$id": "https://raw.githubusercontent.com/smart-data-models/dataModel.RiskAssessment/master/Measure/schema.json", "title": "Smart Data Models - Risk Assessment - Measure Entity", "description": "Specific measure translated into actions to be performed into the different systems", "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", "description": "Property. NGSI-LD Entity Type. It must be equal to Measure", "enum": [ "Measure" ] }, "action": { "type": "array", "description": "Property. Actions to be taken related to a risk", "items": { "type": "object", "properties": { "id": { "type": "string", "format": "uri" }, "value": { "type": "string" } } } } } } ], "required": [ "id", "type" ] }