{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UrlImage", "title": "UrlImage", "properties": { "type": { "type": "string", "const": "url", "title": "Type", "description": "The source type for the image.", "default": "url" }, "url": { "type": "string", "title": "Url", "description": "The URL of the image." } }, "type": "object", "required": [ "url" ] }