jx/internal/resource/schemas/exec.schema.json

25 lines
453 B
JSON
Raw Permalink Normal View History

2024-04-05 17:22:17 +00:00
{
2024-07-17 08:34:57 +00:00
"$id": "exec.schema.json",
2024-04-05 17:22:17 +00:00
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "exec",
"type": "object",
"properties": {
"Id": {
2024-04-05 17:22:17 +00:00
"type": "string"
},
"create": {
"$ref": "command.schema.json"
2024-04-05 17:22:17 +00:00
},
"Read": {
"$ref": "command.schema.json"
2024-04-05 17:22:17 +00:00
},
"Update": {
"$ref": "command.schema.json"
},
"Delete": {
"$ref": "command.schema.json"
2024-04-05 17:22:17 +00:00
}
},
"required": [ "create" ]
2024-04-05 17:22:17 +00:00
}