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