{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InventoryItem", "title": "InventoryItem", "type": "object", "properties": { "playersItemId": { "type": "string" }, "inventoryItemId": { "type": "string" }, "quantity": { "type": "integer" }, "instanceData": { "type": "object" }, "writeLock": { "type": "string" }, "created": { "$ref": "#/components/schemas/Timestamp" }, "modified": { "$ref": "#/components/schemas/Timestamp" } } }