{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "L2DepositActivity", "type": "object", "required": [ "@type", "user", "status", "itemId" ], "properties": { "@type": { "type": "string", "enum": [ "L2_DEPOSIT" ] }, "user": { "$ref": "#/components/schemas/UnionAddress" }, "status": { "type": "string" }, "itemId": { "$ref": "#/components/schemas/ItemId" }, "collection": { "$ref": "#/components/schemas/CollectionId" }, "value": { "$ref": "#/components/schemas/BigInteger" } } }