{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/EVMAddressActivityRequest.json", "title": "EVMAddressActivityRequest", "type": "object", "properties": { "eventType": { "type": "string", "enum": [ "address_activity" ] }, "url": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "chainId": { "type": "string" }, "metadata": { "oneOf": [ { "$ref": "#/components/schemas/AddressActivityMetadata" } ] }, "includeInternalTxs": { "type": "boolean", "description": "Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114." }, "includeLogs": { "type": "boolean", "description": "Whether to include logs in the webhook payload." } }, "required": [ "eventType", "url", "chainId", "metadata" ] }