2024-04-05 17:22:17 +00:00
|
|
|
{
|
2024-04-09 19:30:05 +00:00
|
|
|
"$id": "exec.jsonschema",
|
2024-04-05 17:22:17 +00:00
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
|
|
"title": "exec",
|
|
|
|
"type": "object",
|
|
|
|
"required": [ "create", "read" ],
|
|
|
|
"properties": {
|
|
|
|
"create": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"read": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"update": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"delete": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|