Workday Extend · Schema

CustomObjectInstance

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
id string Unique identifier for the custom object instance
definition object
parentObject object
data object The custom object field values as key-value pairs where keys are field API names and values match the field data types
createdOn string Timestamp when the instance was created
lastModified string Timestamp when the instance was last modified
href string
View JSON Schema on GitHub

JSON Schema

workday-extend-customobjectinstance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomObjectInstance",
  "title": "CustomObjectInstance",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the custom object instance"
    },
    "definition": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "parentObject": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "data": {
      "type": "object",
      "additionalProperties": true,
      "description": "The custom object field values as key-value pairs where keys are field API names and values match the field data types"
    },
    "createdOn": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the instance was created"
    },
    "lastModified": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the instance was last modified"
    },
    "href": {
      "type": "string",
      "format": "uri"
    }
  }
}