File size: 861 Bytes
6f6633d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "AIDE Local CaseFile",
"type": "object",
"required": ["id", "created_at", "boundary", "evidence"],
"properties": {
"id": {"type": "string"},
"created_at": {"type": "string", "format": "date-time"},
"boundary": {"enum": ["private", "group", "public", "marketplace"]},
"evidence": {
"type": "array",
"items": {
"type": "object",
"required": ["name", "bytes", "hash", "dates", "imported_at"],
"properties": {
"name": {"type": "string"},
"bytes": {"type": "integer", "minimum": 0},
"hash": {"type": "string", "pattern": "^[a-f0-9]{64}$"},
"dates": {"type": "array", "items": {"type": "string"}},
"imported_at": {"type": "string", "format": "date-time"}
}
}
}
}
}
|