Alteryx · Schema

Collection

A collection of workflows, schedules, and users

AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine LearningPredictive Analytics

Properties

Name Type Description
id string Unique collection identifier
name string Name of the collection
ownerId string ID of the collection owner
dateCreated string Date the collection was created
View JSON Schema on GitHub

JSON Schema

alteryx-collection-schema.json Raw ↑
{
  "$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"
    }
  }
}