{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OutputBarcode", "title": "OutputBarcode", "type": "object", "properties": { "BarcodeType": { "$ref": "#/components/schemas/BarcodeType" }, "BarcodeValue": { "type": "string", "pattern": "^.+$" } }, "required": [ "BarcodeValue" ] }