{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ItemCollection", "type": "object", "properties": { "id": { "$ref": "#/components/schemas/CollectionId" }, "name": { "type": "string" }, "bestBidOrder": { "$ref": "#/components/schemas/Order" }, "bestSellOrder": { "$ref": "#/components/schemas/Order" } }, "required": [ "id", "name" ] }