cic-schema/cic.in.json

25 lines
408 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "sha256:",
"title": "CIC core metadata container",
"type": "object",
"properties": {
"targets": {
"type": "array",
"items": {
"type": "string",
"pattern": "^(0x)?[a-fA-F0-9]{40}"
}
},
"attachments": {
"type": "array",
"items": {
"$ref": "/mime"
}
}
},
"required": ["targets", "attachments"]
}