{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/slite/main/json-schema/Group.json", "title": "Group", "properties": { "description": { "type": "string", "description": "Description of the group" }, "name": { "type": "string", "description": "Group name" }, "id": { "type": "string", "description": "Group ID" } }, "required": [ "description", "name", "id" ], "type": "object" }