Adyen · Schema

GeneratePciDescriptionResponse

GeneratePciDescriptionResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
content string The generated questionnaires in a base64 encoded format.
language string The two-letter [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) language code for the questionnaire. For example, **en**.
pciTemplateReferences array The array of Adyen-generated unique identifiers for the questionnaires.
View JSON Schema on GitHub

JSON Schema

legal-entity-generate-pci-description-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/legal-entity-generate-pci-description-response-schema.json",
  "title": "GeneratePciDescriptionResponse",
  "description": "GeneratePciDescriptionResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "content": {
      "description": "The generated questionnaires in a base64 encoded format.",
      "format": "byte",
      "type": "string"
    },
    "language": {
      "description": "The two-letter [ISO-639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) language code for the questionnaire. For example, **en**.",
      "type": "string"
    },
    "pciTemplateReferences": {
      "description": "The array of Adyen-generated unique identifiers for the questionnaires.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  }
}