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"
|
|
|
|
},
|
2023-03-05 20:11:39 +01:00
|
|
|
"attachments": {
|
2023-03-05 10:59:41 +01:00
|
|
|
"type": "array",
|
|
|
|
"items": {
|
2023-03-05 20:11:39 +01:00
|
|
|
"$ref": "/mime"
|
2023-03-05 10:59:41 +01:00
|
|
|
}
|
|
|
|
},
|
2023-03-05 20:11:39 +01:00
|
|
|
"certifications": {
|
2023-03-05 11:33:40 +01:00
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "string",
|
2023-03-05 20:11:39 +01:00
|
|
|
"format": "uri"
|
|
|
|
},
|
|
|
|
"minItems": 1
|
2023-03-05 10:59:41 +01:00
|
|
|
}
|
|
|
|
},
|
2023-03-05 20:11:39 +01:00
|
|
|
"required": ["version", "attachments"]
|
2023-03-05 10:59:41 +01:00
|
|
|
}
|