# TechnicalResourceStandard-template.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "TechnicalResourceStandard",
    "description": "TechnicalResourceStandard template",
    "dataTypes": [
        "software",
        "none"
    ],
    "type": "object",
    "class": "TechnicalResourceStandard",
    "properties": {
        "title": {
            "type": "string",
            "description": "Technical resource name",
            "label@fr_FR": "Titre",
            "label@en_GB": "Title",
            "tooltip": null,
            "form_label@fr_FR": "Titre",
            "form_label@en_GB": "Title"
        },
        "technicalResourceId": {
            "type": "string",
            "description": "Technical resource identifier",
            "label@fr_FR": "Identifiant",
            "label@en_GB": "Identifier",
            "tooltip": null,
            "form_label@fr_FR": "Identifiant de la ressource technique",
            "form_label@en_GB": "Technical resource identifier"
        },
        "idType": {
            "type": "string",
            "description": "Identification system",
            "inputType": "dropdown",
            "label@fr_FR": "Type d'identifiant",
            "label@en_GB": "Identifier type",
            "registries": [
                "PIDSystem"
            ],
            "registryCategory": "PIDSystem",
            "overridable": true,
            "tooltip": null,
            "form_label@fr_FR": "Type d'identifiant de la ressource technique",
            "form_label@en_GB": "Technical resource identifier type"
        },
        "serviceContact": {
            "type": "string",
            "description": "Contact address for support",
            "label@fr_FR": "Contact",
            "label@en_GB": "Contact",
            "tooltip": null,
            "form_label@fr_FR": "Adresse de contact du service",
            "form_label@en_GB": "Contact address of the service"
        },
        "policyUrl": {
            "type": "string",
            "description": "Data policy of the technical resource",
            "label@fr_FR": "Politique de données",
            "label@en_GB": "Data policy",
            "tooltip": null,
            "form_label@fr_FR": "Politique de données du service",
            "form_label@en_GB": "Data policy of the service"
        }
    },
    "required": [
        "title",
        "technicalResourceId",
        "idType"
    ],
    "to_string": [
        "$.title",
        " : ",
        "$.technicalResourceId"
    ]
}