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

15 lines
333 B
JSON
Raw 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-05-24 05:11:51 +00:00
"pattern": "^[a-z]([-_a-z0-9:]{0,31})$"
2024-05-06 00:48:54 +00:00
}
}
}