{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Customer", "title": "Customer", "type": "object", "properties": { "id": { "type": "string" }, "descriptor": { "type": "string" }, "customerName": { "type": "string" }, "customerCategory": { "$ref": "#/components/schemas/ResourceReference" }, "status": { "type": "string" }, "paymentTerms": { "$ref": "#/components/schemas/ResourceReference" }, "currency": { "$ref": "#/components/schemas/ResourceReference" } } }