You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
senpy/senpy/schemas/results.json

36 lines
748 B
JSON

{
"$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"]
}
]
}