Adyen · Schema

OutputBarcode

PaymentsFinancial ServicesFintech

Properties

Name Type Description
BarcodeType object
BarcodeValue string
View JSON Schema on GitHub

JSON Schema

adyen-outputbarcode-schema.json Raw ↑
{
  "$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"
  ]
}