Workday Extend · Schema

SchemaField

AutomationCustom ApplicationsEnterpriseExtensionsHCMHuman Capital ManagementIntegrationOrchestrationPaaS

Properties

Name Type Description
name string Field name
dataType string Data type of the field
description string Description of the field
isFilterable boolean Whether this field can be used in filters
isSortable boolean Whether results can be sorted by this field
View JSON Schema on GitHub

JSON Schema

workday-extend-schemafield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaField",
  "title": "SchemaField",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Field name"
    },
    "dataType": {
      "type": "string",
      "description": "Data type of the field"
    },
    "description": {
      "type": "string",
      "description": "Description of the field"
    },
    "isFilterable": {
      "type": "boolean",
      "description": "Whether this field can be used in filters"
    },
    "isSortable": {
      "type": "boolean",
      "description": "Whether results can be sorted by this field"
    }
  }
}