ruddle/pocs/json_schema/schema.json

32 lines
604 B
JSON
Raw Normal View History

2022-08-20 17:39:01 +02:00
{
"$defs": {
"actions": {
"$schema": "http://json-schema.org/draft-07/schema",
"additionalProperties": false,
"properties": {
"dependsOn": {
"type": "array"
},
"path": {
"type": "string"
}
}
}
},
"$schema": "http://json-schema.org/draft-07/schema",
"properties": {
"plugins": {
"additionalProperties": false,
"properties": {
"ruddle/actions@1.0.0": {
"$ref": "#/$defs/actions"
}
},
"type": "object"
},
"version": {
"type": "string"
}
}
}