{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OutputContent", "title": "OutputContent", "type": "object", "description": "This is a sequence of elements if they have different formats. Content to display or print.", "properties": { "OutputFormat": { "$ref": "#/components/schemas/OutputFormat" }, "PredefinedContent": { "$ref": "#/components/schemas/PredefinedContent" }, "OutputText": { "type": "array", "items": { "$ref": "#/components/schemas/OutputText" } }, "OutputXHTML": { "type": "string", "format": "byte", "pattern": "^.{0,262144}$", "description": "Mandatory, if OutputFormat is XHTML, not allowed otherwise." }, "OutputBarcode": { "$ref": "#/components/schemas/OutputBarcode" } }, "required": [ "OutputFormat" ] }