Commit 434a6158 authored by Matija Čupić's avatar Matija Čupić

Fix Variable JSON Schema

parent 55805701
{ {
"id": "string", "type": "object",
"key": "string", "required": ["variables"],
"value": "string", "properties": {
"protected": "boolean" "variables": {
"type": "array",
"items": {
"required": [
"id",
"key",
"value",
"protected"
],
"properties": {
"id": { "type": "integer" },
"key": { "type": "string" },
"value": { "type": "string" },
"protected": { "type": "boolean" }
}
}
}
},
"additionalProperties": false
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment