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": {
|
2024-07-22 22:03:22 +00:00
|
|
|
"Id": {
|
2024-04-05 17:22:17 +00:00
|
|
|
"type": "string"
|
|
|
|
},
|
2024-07-22 22:03:22 +00:00
|
|
|
"create": {
|
|
|
|
"$ref": "command.schema.json"
|
2024-04-05 17:22:17 +00:00
|
|
|
},
|
2024-07-22 22:03:22 +00:00
|
|
|
"Read": {
|
|
|
|
"$ref": "command.schema.json"
|
2024-04-05 17:22:17 +00:00
|
|
|
},
|
2024-07-22 22:03:22 +00:00
|
|
|
"Update": {
|
|
|
|
"$ref": "command.schema.json"
|
|
|
|
},
|
|
|
|
"Delete": {
|
|
|
|
"$ref": "command.schema.json"
|
2024-04-05 17:22:17 +00:00
|
|
|
}
|
2024-07-22 22:03:22 +00:00
|
|
|
},
|
|
|
|
"required": [ "create" ]
|
2024-04-05 17:22:17 +00:00
|
|
|
}
|