1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-28 08:51:42 +00:00
senpy/senpy/schemas/results.json

36 lines
748 B
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-04/schema#",
"name": "Entry",
"allOf": [
{"$ref": "response.json"},
{
"title": "Results",
"description": "The results of an analysis",
"type": "object",
"properties": {
"@context": {
"$ref": "context.json"
},
"@id": {
"description": "ID of the analysis",
"type": "string"
},
"activities": {
"type": "array",
"items": {
"$ref": "analysis.json"
}
},
"entries": {
"type": "array",
"items": {
"$ref": "entry.json"
}
}
},
"required": ["@id", "activities", "entries"]
}
]
}