Properties
| Name | Type | Description |
|---|---|---|
| display_device | array | |
| classname | string | |
| image | object | |
| additional_fields | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ImageProperties",
"title": "ImageProperties",
"type": "object",
"properties": {
"display_device": {
"type": "array",
"items": {
"type": "string",
"enum": [
"both",
"desktop",
"mobile"
],
"description": "Enumeration for mobile and desktop."
}
},
"classname": {
"type": "string",
"nullable": true
},
"image": {
"$ref": "#/components/schemas/ImageAssetProperties",
"nullable": true
},
"additional_fields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AdditionalField"
},
"nullable": true
}
},
"required": [
"image"
]
}