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

18 lines
421 B
Plaintext
Raw Normal View History

2024-04-09 19:51:56 +00:00
{
"$id": "network_route-declaration.jsonschema",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "network_route-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "network_route" ]
},
"attributes": {
"$ref": "network_route.jsonschema"
}
}
}