{
  "description": "List of Non-Fungible Token mint events for an asset identifier",
  "title": "NonFungibleTokenMintList",
  "type": "object",
  "required": [
    "results",
    "limit",
    "offset",
    "total"
  ],
  "additionalProperties": false,
  "properties": {
    "limit": {
      "type": "integer",
      "maximum": 200,
      "description": "The number of mint events to return"
    },
    "offset": {
      "type": "integer",
      "description": "The number to mint events to skip (starting at `0`)"
    },
    "total": {
      "type": "integer",
      "description": "The number of mint events available"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "../../entities/tokens/non-fungible-token-mint.schema.json"
      }
    }
  }
}
