{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "UnitsAvailableDetails", "description": "Representation of many units of an Instrument are available to be traded for both long and short Orders.", "type": "object", "properties": { "long": { "type": "string", "description": "The units available for long Orders.", "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents." }, "short": { "type": "string", "description": "The units available for short Orders.", "format": "A decimal number encoded as a string. The amount of precision provided depends on what the number represents." } } }