MenuImages#
- pydantic model nublado.controller.models.domain.image.MenuImages#
All available spawnable images.
- Parameters:
data (
Any)
Show JSON schema
{ "title": "MenuImages", "description": "All available spawnable images.", "type": "object", "properties": { "menu": { "items": { "$ref": "#/$defs/MenuImage" }, "title": "Regular menu choices", "type": "array" }, "dropdown": { "items": { "$ref": "#/$defs/MenuImage" }, "title": "Additional dropdown choices", "type": "array" } }, "$defs": { "MenuImage": { "description": "A single spawnable image.", "properties": { "reference": { "title": "Docker reference", "type": "string" }, "name": { "title": "Human-readable name", "type": "string" } }, "required": [ "reference", "name" ], "title": "MenuImage", "type": "object" } }, "required": [ "menu", "dropdown" ] }
- Fields: