{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OffChainPoolResponse", "type": "object", "properties": { "pool_type": { "type": "string", "enum": [ "offchain" ], "description": "Indicates this is off-chain pool data" }, "pools": { "type": "array", "items": { "$ref": "#/components/schemas/OffChainPoolData" } } }, "required": [ "pool_type", "pools" ] }