2024-05-06 00:48:54 +00:00
|
|
|
{
|
2024-07-17 08:34:57 +00:00
|
|
|
"$id": "container-declaration.schema.json",
|
2024-05-06 00:48:54 +00:00
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
2024-07-22 22:03:22 +00:00
|
|
|
"title": "container-declaration",
|
2024-05-06 00:48:54 +00:00
|
|
|
"type": "object",
|
|
|
|
"required": [ "type", "attributes" ],
|
|
|
|
"properties": {
|
|
|
|
"type": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "Resource type name.",
|
|
|
|
"enum": [ "container" ]
|
|
|
|
},
|
|
|
|
"attributes": {
|
2024-07-17 08:34:57 +00:00
|
|
|
"$ref": "container.schema.json"
|
2024-05-06 00:48:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|