# TechnicalResource-schema.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "TechnicalResource",
    "description": "TechnicalResource schema",
    "dataTypes": null,
    "type": "object",
    "properties": {
        "title": {
            "type": "string",
            "description": "Technical resource name"
        },
        "technicalResourceId": {
            "type": "string",
            "description": "Technical resource identifier"
        },
        "idType": {
            "type": "string",
            "description": "Identification system"
        },
        "serviceContact": {
            "type": "string",
            "description": "Contact address for support"
        }
    },
    "required": [
        "title",
        "technicalResourceId",
        "idType"
    ]
}