| 1 |
{ |
| 2 |
"$schema": "https://json-schema.org/draft/2020-12/schema", |
| 3 |
"$id": "extendify/launch-global/brand", |
| 4 |
"title": "Logo", |
| 5 |
"type": "object", |
| 6 |
"additionalProperties": false, |
| 7 |
"properties": { |
| 8 |
"logo": { |
| 9 |
"type": "string", |
| 10 |
"default": "", |
| 11 |
"x-label": "Image", |
| 12 |
"x-control": "image", |
| 13 |
"x-feeds": "the logo part's image", |
| 14 |
"x-placeholder": "https://\u2026/logo.svg" |
| 15 |
}, |
| 16 |
"--ext-ui-logo-height": { |
| 17 |
"type": "number", |
| 18 |
"minimum": 16, |
| 19 |
"maximum": 96, |
| 20 |
"default": 40, |
| 21 |
"x-label": "Height", |
| 22 |
"x-control": "length" |
| 23 |
} |
| 24 |
} |
| 25 |
} |
| 26 |
|