Adyen · JSON Structure

Management Billing Entity Structure

BillingEntity schema from Adyen API

Type: object Properties: 5
PaymentsFinancial ServicesFintech

BillingEntity is a JSON Structure definition published by Adyen, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

address email id name taxId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/management-billing-entity-structure.json",
  "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"
    }
  },
  "name": "BillingEntity"
}