Workday · Schema

PersonName

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
firstName string
middleName string
lastName string
fullName string
prefix string
suffix string
View JSON Schema on GitHub

JSON Schema

workday-personname-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PersonName",
  "title": "PersonName",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "example_value"
    },
    "middleName": {
      "type": "string",
      "example": "example_value"
    },
    "lastName": {
      "type": "string",
      "example": "example_value"
    },
    "fullName": {
      "type": "string",
      "example": "example_value"
    },
    "prefix": {
      "type": "string",
      "example": "example_value"
    },
    "suffix": {
      "type": "string",
      "example": "example_value"
    }
  }
}