{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "PositionFinancing", "description": "OpenTradeFinancing is used to pay/collect daily financing charge for a Position within an Account", "type": "object", "properties": { "instrument": { "type": "string", "description": "The instrument of the Position that financing is being paid/collected for.", "format": "A string containing the base currency and quote currency delimited by a \"_\"." }, "financing": { "type": "string", "description": "The amount of financing paid/collected for the Position.", "format": "A decimal number encoded as a string. The amount of precision provided depends on the Account's home currency." }, "openTradeFinancings": { "type": "array", "description": "The financing paid/collecte for each open Trade within the Position.", "items": { "$ref": "#/definitions/OpenTradeFinancing" } } } }