{ "$schema": "http://json-schema.org/draft-07/schema#", "definitions": { "RemoteSkillSummary": { "properties": { "description": { "type": "string" }, "id": { "type": "string" }, "name": { "type": "string" } }, "required": [ "description", "id", "name" ], "type": "object" } }, "properties": { "data": { "items": { "$ref": "#/definitions/RemoteSkillSummary" }, "type": "array" } }, "required": [ "data" ], "title": "SkillsRemoteReadResponse", "type": "object" }