mirror of
https://github.com/gsi-upm/senpy
synced 2025-10-18 17:28:28 +00:00
18 lines
308 B
JSON
18 lines
308 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"allOf": [
|
|
{"$ref": "response.json"},
|
|
{
|
|
"required": ["datasets"],
|
|
"properties": {
|
|
"datasets": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "dataset.json"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|