{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "MultiTokenMerkleProofResponse", "type": "object", "properties": { "proof": { "type": "array", "items": { "$ref": "#/components/schemas/TokenProof" } }, "merkleRoot": { "type": "string" }, "updatedAt": { "format": "date-time", "type": "string" }, "chainId": { "type": "number" }, "distributorAddress": { "type": "string" }, "campaignId": { "type": "string" } }, "required": [ "proof", "merkleRoot", "updatedAt", "chainId", "distributorAddress", "campaignId" ] }