Rarible · Schema

ReconciliationEntity

NFTNon-Fungible TokensMarketplaceAggregatorMultichainEthereumPolygonArbitrumFlowWeb3BlockchainCollectionsOrder BookTradingIndexer

Properties

Name Type Description
id string
version integer
lastUpdatedAt string
deleted boolean
View JSON Schema on GitHub

JSON Schema

ReconciliationEntity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ReconciliationEntity",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "version": {
      "type": "integer",
      "format": "int64"
    },
    "lastUpdatedAt": {
      "type": "string",
      "format": "date-time"
    },
    "deleted": {
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "id",
    "version",
    "lastUpdatedAt"
  ]
}