{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/thinkific/refs/heads/main/json-schema/thinkific-group.json", "title": "GroupResponse", "required": [ "id", "created_at", "name", "token" ], "type": "object", "properties": { "id": { "type": "number", "description": "The ID of the Group", "example": 1 }, "name": { "type": "string", "description": "The name of the Group", "example": "New Group 1" }, "token": { "type": "string", "description": "The 8-character unique identifier for the Group", "example": "c2395613" }, "created_at": { "type": "string", "description": "The date/time the Group was created", "format": "date-time", "example": "2019-01-01T01:01:00Z" } } }