cic-schema/cic.in.json

28 lines
456 B
JSON
Raw Normal View History

2023-03-05 10:59:41 +01:00
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CIC core metadata container",
2023-03-05 12:18:41 +01:00
"$id": "/cic/core",
2023-03-05 10:59:41 +01:00
"type": "object",
"properties": {
2023-03-05 12:18:41 +01:00
"version": {
"type": "integer"
},
"attachments": {
2023-03-05 10:59:41 +01:00
"type": "array",
"items": {
"$ref": "/mime"
2023-03-05 10:59:41 +01:00
}
},
"certifications": {
2023-03-05 11:33:40 +01:00
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"minItems": 1
2023-03-05 10:59:41 +01:00
}
},
"required": ["version", "attachments"]
2023-03-05 10:59:41 +01:00
}