jx/internal/resource/schemas/container-network-declaration.schema.json

18 lines
421 B
JSON
Raw Normal View History

2024-05-06 00:48:54 +00:00
{
2024-05-24 05:11:51 +00:00
"$id": "container-network-declaration.schema.json",
2024-05-06 00:48:54 +00:00
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
2024-05-24 05:11:51 +00:00
"enum": [ "container-network" ]
2024-05-06 00:48:54 +00:00
},
"attributes": {
2024-05-24 05:11:51 +00:00
"$ref": "container-network.schema.json"
2024-05-06 00:48:54 +00:00
}
}
}