{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/CreateEvmTransactionExportRequest.json", "title": "CreateEvmTransactionExportRequest", "type": "object", "properties": { "type": { "$ref": "#/components/schemas/EVMOperationType" }, "firstDate": { "type": "string", "examples": [ "2023-05-01" ] }, "lastDate": { "type": "string", "examples": [ "2023-05-02" ] }, "startDate": { "type": "string", "examples": [ "2023-05-01" ], "deprecated": true }, "endDate": { "type": "string", "examples": [ "2023-05-02" ], "deprecated": true }, "options": { "$ref": "#/components/schemas/EvmNetworkOptions" } }, "required": [ "type", "options" ] }