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