Matthew Rich
bcf4e768ff
WIP: add support container image build using local filesytem contexts or contextes generated from resource definitions WIP: added support for the create command in the exec resource Fix a type matching error in `types` package use of generics
25 lines
453 B
JSON
25 lines
453 B
JSON
{
|
|
"$id": "exec.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "exec",
|
|
"type": "object",
|
|
"properties": {
|
|
"Id": {
|
|
"type": "string"
|
|
},
|
|
"create": {
|
|
"$ref": "command.schema.json"
|
|
},
|
|
"Read": {
|
|
"$ref": "command.schema.json"
|
|
},
|
|
"Update": {
|
|
"$ref": "command.schema.json"
|
|
},
|
|
"Delete": {
|
|
"$ref": "command.schema.json"
|
|
}
|
|
},
|
|
"required": [ "create" ]
|
|
}
|