{ "$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" } } }