Adyen · Schema

Resource

Resource schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
balancePlatform string Unique identifier of the balance platform.
creationDate string Date and time when the event was triggered, in ISO 8601 extended format. For example, **2020-12-18T10:15:30+01:00**.
id string The ID of the resource.
View JSON Schema on GitHub

JSON Schema

notification-webhooks-resource-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/notification-webhooks-resource-schema.json",
  "title": "Resource",
  "description": "Resource schema from Adyen API",
  "properties": {
    "balancePlatform": {
      "description": "Unique identifier of the balance platform.",
      "type": "string"
    },
    "creationDate": {
      "description": "Date and time when the event was triggered, in ISO 8601 extended format. For example, **2020-12-18T10:15:30+01:00**.",
      "format": "date-time",
      "type": "string"
    },
    "id": {
      "description": "The ID of the resource.",
      "type": "string"
    }
  },
  "type": "object"
}