OpenSea · Schema

FulfillmentData

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
transaction object
orders array
View JSON Schema on GitHub

JSON Schema

FulfillmentData.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/FulfillmentData",
  "title": "FulfillmentData",
  "type": "object",
  "properties": {
    "transaction": {
      "$ref": "#/components/schemas/TransactionData"
    },
    "orders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrderData"
      }
    }
  },
  "required": [
    "orders",
    "transaction"
  ]
}