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