Synctera · Schema

vendor_xml

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
content_type string Describes the content-type encoding received from the vendor
vendor string
xml string Data representaion in XML
View JSON Schema on GitHub

JSON Schema

synctera-vendor-xml-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/vendor_xml",
  "title": "vendor_xml",
  "properties": {
    "content_type": {
      "description": "Describes the content-type encoding received from the vendor",
      "enum": [
        "text/xml"
      ],
      "type": "string"
    },
    "vendor": {
      "example": "IDOLOGY",
      "type": "string"
    },
    "xml": {
      "description": "Data representaion in XML",
      "type": "string"
    }
  },
  "required": [
    "vendor",
    "content_type",
    "xml"
  ]
}