Adyen · Schema

PciDocumentInfo

PciDocumentInfo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
createdAt string The date the questionnaire was created, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
id string The unique identifier of the signed questionnaire.
validUntil string The expiration date of the questionnaire, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00
View JSON Schema on GitHub

JSON Schema

legal-entity-pci-document-info-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-pci-document-info-schema.json",
  "title": "PciDocumentInfo",
  "description": "PciDocumentInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "createdAt": {
      "description": "The date the questionnaire was created, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00",
      "format": "date-time",
      "type": "string"
    },
    "id": {
      "description": "The unique identifier of the signed questionnaire.",
      "type": "string"
    },
    "validUntil": {
      "description": "The expiration date of the questionnaire, in ISO 8601 extended format. For example, 2022-12-18T10:15:30+01:00",
      "format": "date-time",
      "type": "string"
    }
  }
}