{ "$schema": "http://json-schema.org/draft-07/schema#", "description": "GET list of contracts", "title": "ContractListResponse", "type": "object", "required": [ "results", "limit", "offset" ], "properties": { "limit": { "type": "integer", "description": "The number of contracts to return" }, "offset": { "type": "integer", "description": "The number to contracts to skip (starting at `0`)", "default": 0 }, "results": { "type": "array", "items": { "$ref": "../../entities/contracts/smart-contract.schema.json" } } }, "additionalProperties": false }