{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://opensea.io/schemas/OfferItem", "title": "OfferItem", "type": "object", "properties": { "itemType": { "type": "integer", "format": "int32" }, "token": { "type": "string" }, "identifierOrCriteria": { "type": "string" }, "startAmount": { "type": "string" }, "endAmount": { "type": "string" } }, "required": [ "endAmount", "identifierOrCriteria", "itemType", "startAmount", "token" ] }