jx/internal/resource/schemas/container_network-declaration.jsonschema

18 lines
419 B
Plaintext
Raw Normal View History

2024-05-06 00:48:54 +00:00
{
"$id": "container_network-declaration.jsonschema",
"$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.jsonschema"
}
}
}