{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Group", "title": "Group", "type": "object", "x-box-resource-id": "group", "x-box-variant": "standard", "description": "A standard representation of a group, as returned from any\ngroup API endpoints by default", "allOf": [ { "$ref": "#/components/schemas/Group--Mini" }, { "properties": { "created_at": { "type": "string", "format": "date-time", "description": "When the group object was created", "example": "2012-12-12T10:53:43-08:00" }, "modified_at": { "type": "string", "format": "date-time", "description": "When the group object was last modified", "example": "2012-12-12T10:53:43-08:00" } } } ] }