{
  "type": "object",
  "title": "NonFungibleTokenMintWithTxId",
  "description": "Non-Fungible Token mint event with transaction id",
  "required": ["event_index", "value", "tx_id"],
  "additionalProperties": false,
  "properties": {
    "recipient": {
      "type": "string"
    },
    "event_index": {
      "type": "integer"
    },
    "value": {
      "type": "object",
      "required": ["hex", "repr"],
      "description": "Non-Fungible Token value",
      "additionalProperties": false,
      "properties": {
        "hex": {
          "type": "string",
          "description": "Hex string representing the identifier of the Non-Fungible Token"
        },
        "repr": {
          "type": "string",
          "description": "Readable string of the Non-Fungible Token identifier"
        }
      }
    },
    "tx_id": {
      "type": "string"
    }
  }
}
