{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AccountActivity", "type": "object", "properties": { "type": { "type": "string" }, "chainId": { "type": "integer" }, "vault": { "type": "string" }, "assets": { "type": "string", "description": "Raw underlying asset amount as a bigint string." }, "shares": { "type": "string", "description": "Raw vault share amount as a bigint string." }, "txHash": { "type": "string" }, "blockNumber": { "type": "string" }, "timestamp": { "type": "string", "format": "date-time" } } }