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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GeneratePciDescriptionResponse",
"title": "GeneratePciDescriptionResponse",
"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"
}
},
"type": "object"
}