Synctera · Schema

vendor_json

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
content_type string Describes the content-type encoding received from the vendor
json object Data representation in JSON
vendor string
View JSON Schema on GitHub

JSON Schema

synctera-vendor-json-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/vendor_json",
  "title": "vendor_json",
  "properties": {
    "content_type": {
      "description": "Describes the content-type encoding received from the vendor",
      "enum": [
        "application/json"
      ],
      "type": "string"
    },
    "json": {
      "description": "Data representation in JSON",
      "type": "object"
    },
    "vendor": {
      "example": "SOCURE",
      "type": "string"
    }
  },
  "required": [
    "vendor",
    "content_type",
    "json"
  ]
}