{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BillingEntity", "title": "BillingEntity", "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" } }, "type": "object" }