{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserGroup", "title": "UserGroup", "type": "object", "properties": { "id": { "type": "integer", "format": "int64", "example": "abc123" }, "name": { "type": "string", "example": "Example Title" }, "description": { "type": "string", "example": "A sample description." }, "permissions": { "type": "array", "items": { "type": "string" }, "example": [] } } }