{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "EnvironmentListEntry": { "properties": { "environmentId": { "type": "string" }, "execServerUrl": { "type": [ "string", "null" ] } }, "required": [ "environmentId" ], "type": "object" } }, "properties": { "data": { "items": { "$ref": "#/definitions/EnvironmentListEntry" }, "type": "array" }, "nextCursor": { "type": [ "string", "null" ] } }, "required": [ "data" ], "title": "EnvironmentListResponse", "type": "object" }