Adyen · Schema

BillingEntity

BillingEntity schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
address object The address details of the billing entity.
email string The email address of the billing entity.
id string The unique identifier of the billing entity, for use as `billingEntityId` when creating an order.
name string The unique name of the billing entity.
taxId string The tax number of the billing entity.
View JSON Schema on GitHub

JSON Schema

management-billing-entity-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/management-billing-entity-schema.json",
  "title": "BillingEntity",
  "description": "BillingEntity schema from Adyen API",
  "type": "object",
  "properties": {
    "address": {
      "description": "The address details of the billing entity.",
      "$ref": "#/components/schemas/Address"
    },
    "email": {
      "description": "The email address of the billing entity.",
      "type": "string"
    },
    "id": {
      "description": "The unique identifier of the billing entity, for use as `billingEntityId` when creating an order.",
      "type": "string"
    },
    "name": {
      "description": "The unique name of the billing entity.",
      "type": "string"
    },
    "taxId": {
      "description": "The tax number of the billing entity.",
      "type": "string"
    }
  }
}