Workday · Schema

Goal

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
name string
description string
status string The status of the goal (e.g., Not Started, In Progress, Completed).
dueDate string
completionDate string
category object
weight number
View JSON Schema on GitHub

JSON Schema

workday-goal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Goal",
  "title": "Goal",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "status": {
      "type": "string",
      "description": "The status of the goal (e.g., Not Started, In Progress, Completed).",
      "example": "example_value"
    },
    "dueDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "completionDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "category": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "weight": {
      "type": "number",
      "format": "double",
      "example": 42.5
    }
  }
}