OpenSea · Schema

BasicOrderParameters

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
value array
considerationToken string
considerationIdentifier integer
considerationAmount integer
offerer string
zone string
offerToken string
offerIdentifier integer
offerAmount integer
basicOrderType integer
startTime integer
endTime integer
zoneHash string
salt integer
offererConduitKey string
fulfillerConduitKey string
totalOriginalAdditionalRecipients integer
additionalRecipients array
signature string
typeAsString string
nativeValueCopy array
View JSON Schema on GitHub

JSON Schema

BasicOrderParameters.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/BasicOrderParameters",
  "title": "BasicOrderParameters",
  "type": "object",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Type"
      }
    },
    "considerationToken": {
      "type": "string"
    },
    "considerationIdentifier": {
      "type": "integer"
    },
    "considerationAmount": {
      "type": "integer"
    },
    "offerer": {
      "type": "string"
    },
    "zone": {
      "type": "string"
    },
    "offerToken": {
      "type": "string"
    },
    "offerIdentifier": {
      "type": "integer"
    },
    "offerAmount": {
      "type": "integer"
    },
    "basicOrderType": {
      "type": "integer"
    },
    "startTime": {
      "type": "integer"
    },
    "endTime": {
      "type": "integer"
    },
    "zoneHash": {
      "type": "string",
      "format": "byte"
    },
    "salt": {
      "type": "integer"
    },
    "offererConduitKey": {
      "type": "string",
      "format": "byte"
    },
    "fulfillerConduitKey": {
      "type": "string",
      "format": "byte"
    },
    "totalOriginalAdditionalRecipients": {
      "type": "integer"
    },
    "additionalRecipients": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AdditionalRecipient"
      }
    },
    "signature": {
      "type": "string",
      "format": "byte"
    },
    "typeAsString": {
      "type": "string"
    },
    "nativeValueCopy": {
      "type": "array",
      "items": {}
    }
  }
}