jx/internal/resource/schemas/container-network-declaration.schema.json
Matthew Rich 0888ae2045
Some checks failed
Lint / golangci-lint (push) Failing after 9m55s
Declarative Tests / test (push) Failing after 5s
add container-image resource
2024-05-23 22:11:51 -07:00

18 lines
421 B
JSON

{
"$id": "container-network-declaration.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "container-network" ]
},
"attributes": {
"$ref": "container-network.schema.json"
}
}
}