Adyen · Schema

LocalDate

LocalDate schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
month integer
year integer
View JSON Schema on GitHub

JSON Schema

notifications-local-date-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/notifications-local-date-schema.json",
  "title": "LocalDate",
  "description": "LocalDate schema from Adyen API",
  "type": "object",
  "properties": {
    "month": {
      "format": "int32",
      "type": "integer"
    },
    "year": {
      "format": "int32",
      "type": "integer"
    }
  }
}