Adyen · Schema

DocumentPage

DocumentPage schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
pageName string
pageNumber integer
type string
View JSON Schema on GitHub

JSON Schema

legal-entity-document-page-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-document-page-schema.json",
  "title": "DocumentPage",
  "description": "DocumentPage schema from Adyen API",
  "type": "object",
  "properties": {
    "pageName": {
      "type": "string"
    },
    "pageNumber": {
      "format": "int32",
      "type": "integer"
    },
    "type": {
      "enum": [
        "BACK",
        "FRONT",
        "UNDEFINED"
      ],
      "type": "string"
    }
  }
}