jx/internal/resource/schemas/container-image.schema.json

21 lines
538 B
JSON
Raw Permalink Normal View History

2024-05-06 00:48:54 +00:00
{
2024-05-24 05:11:51 +00:00
"$id": "container-image.schema.json",
2024-05-06 00:48:54 +00:00
"$schema": "http://json-schema.org/draft-07/schema#",
2024-05-24 05:11:51 +00:00
"title": "container-image",
"description": "A docker container image",
2024-05-06 00:48:54 +00:00
"type": "object",
"required": [ "name" ],
"properties": {
"name": {
"type": "string",
2024-07-17 08:34:57 +00:00
"pattern": "^(?:[-0-9A-Za-z_.]+((?::[0-9]+|)(?:/[-a-z0-9._]+/[-a-z0-9._]+))|)(?:/|)(?:[-a-z0-9._]+(?:/[-a-z0-9._]+|))(:(?:[-0-9A-Za-z_.]{1,127})|)$"
},
"Contextref": {
"type": "string"
},
"Injectjx": {
"type": "boolean"
2024-05-06 00:48:54 +00:00
}
}
}