# SoftwareRegistration-schema.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "SoftwareRegistration",
    "description": "SoftwareRegistration schema",
    "dataTypes": null,
    "type": "object",
    "properties": {
        "catalogue": {
            "type": "object",
            "$comment": "class=TechnicalResource",
            "properties": {
                "dbid": {
                    "type": "number"
                }
            },
            "required": [
                "dbid"
            ],
            "description": "Catalogs or repositories in which the software is referenced"
        },
        "identifier": {
            "type": "string",
            "description": "Resource persistent iD"
        },
        "idType": {
            "type": "string",
            "description": "Resource ID Type"
        }
    },
    "required": []
}