{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomerDetails",
"title": "Customer Details",
"type": "object",
"properties": {
"customer_groups": {
"type": "array",
"items": {
"type": "object",
"properties": {
"customer_group_id": {
"type": "integer"
},
"customer_group_name": {
"type": "string"
}
},
"title": "Customer Group",
"description": "The Group (if any) that this customer is in. The value will default to zero if the customer is not in a group or is a guest."
}
},
"customer_id": {
"type": "integer"
}
},
"description": "The details of the Customer that has made the purchase.",
"x-internal": false
}