JSON-schema Verifieringsmetod
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://schemas.infopack.io/100gruppen/rexs.verification-method.1.schema.json",
"title": "Verification Method",
"description": "Schema for a verification method.",
"type": "object",
"required": ["verificationMethodType", "definition"],
"properties": {
"verificationMethodType": {
"description": "Type of the verification method.",
"type": "string",
"minLength": 1
},
"definition": {
"description": "Description of the verification method.",
"type": "string",
"minLength": 1
},
"attachments": {
"description": "A list of attachments with additional information about the verification method.",
"type": "array",
"items": {
"type": "string",
"format": "uri",
"minLength": 1
}
}
},
"additionalProperties": false
}