22 lines
367 B
JSON
22 lines
367 B
JSON
{
|
|
"$id": "exec.schema.json",
|
|
"$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"
|
|
}
|
|
}
|
|
}
|