1
0
mirror of https://github.com/gsi-upm/senpy synced 2025-10-19 01:38:28 +00:00
Files
senpy/senpy/schemas/plugins.json
J. Fernando Sánchez 8a516d927e Multiple changes in the API, schemas and UI
Check out the CHANGELOG.md file for more information
2019-04-04 10:00:24 +02:00

25 lines
444 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{"$ref": "response.json"},
{
"required": ["plugins"],
"properties": {
"plugins": {
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "plugin.json"
}
]
}
}
}
}
]
}