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
18 lines
407 B
JSON
18 lines
407 B
JSON
{
|
|
"$id": "container-declaration.schema.json",
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "container-declaration",
|
|
"type": "object",
|
|
"required": [ "type", "attributes" ],
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"description": "Resource type name.",
|
|
"enum": [ "container" ]
|
|
},
|
|
"attributes": {
|
|
"$ref": "container.schema.json"
|
|
}
|
|
}
|
|
}
|