A collection of workflows, schedules, and users
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Collection", "title": "Collection", "type": "object", "description": "A collection of workflows, schedules, and users", "properties": { "id": { "type": "string", "description": "Unique collection identifier", "example": "abc123" }, "name": { "type": "string", "description": "Name of the collection", "example": "Example Title" }, "ownerId": { "type": "string", "description": "ID of the collection owner", "example": "500123" }, "dateCreated": { "type": "string", "format": "date-time", "description": "Date the collection was created", "example": "2026-01-15T10:30:00Z" } } }