Alteryx · Schema

PatchScheduleContract

Contract for partially updating a schedule

AnalyticsAutomationData EngineeringData PreparationData ScienceETLMachine LearningPredictive Analytics

Properties

Name Type Description
ownerId string
iteration object
name string
comment string
priority string
workerTag string
enabled boolean
credentialId string
timeZone string
questions array
View JSON Schema on GitHub

JSON Schema

alteryx-patchschedulecontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchScheduleContract",
  "title": "PatchScheduleContract",
  "type": "object",
  "description": "Contract for partially updating a schedule",
  "properties": {
    "ownerId": {
      "type": "string",
      "example": "500123"
    },
    "iteration": {
      "$ref": "#/components/schemas/ScheduleIteration"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "comment": {
      "type": "string",
      "example": "example_value"
    },
    "priority": {
      "type": "string",
      "enum": [
        "Low",
        "Medium",
        "High",
        "Critical"
      ],
      "example": "Low"
    },
    "workerTag": {
      "type": "string",
      "example": "example_value"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "credentialId": {
      "type": "string",
      "example": "500123"
    },
    "timeZone": {
      "type": "string",
      "example": "example_value"
    },
    "questions": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "example": []
    }
  }
}