18 lines
415 B
JSON
18 lines
415 B
JSON
{
|
|
"$id": "network-route-declaration.schema.json",
|
|
"$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": [ "route" ]
|
|
},
|
|
"attributes": {
|
|
"$ref": "network-route.schema.json"
|
|
}
|
|
}
|
|
}
|