{"basePath":"/elements/api-v2","paths":{"/bulk/download":{"post":{"summary":"Create a new bulk download job (asynchronous)","operationId":"createBulkDownload","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/BulkQuery"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"schema":{"$ref":"#/definitions/bulkDownloadRequest"},"in":"body","name":"body","description":"The object body","required":true}],"tags":["bulk"]}},"/bulk/jobs":{"get":{"operationId":"getBulkJobs","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query. For example to get all upload jobs the expression would be where=job_direction='UPLOAD'. The following fields are valid search fields 'object_name', 'job_status', 'job_direction', 'record_count'","in":"query","name":"where","required":false,"type":"string"},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"},{"description":"The page size for pagination, which defaults to 200 if not supplied","format":"int64","in":"query","name":"pageSize","required":false,"type":"integer"}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/BulkJobList"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Fetch all the bulk jobs for an instance","tags":["bulk"]}},"/bulk/query":{"post":{"operationId":"createBulkQuery","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The Url to send the notification to when the Job is completed","in":"header","name":"Elements-Async-Callback-Url","required":false,"type":"string"},{"description":"The CEQL query. When this parameter is omitted, all objects of the given type are returned via the bulk job. Endpoint limiters may still apply.","in":"query","name":"q","required":false,"type":"string"},{"description":"The last time this query was run. This is optional. You can also have this parameter in the query and leave this blank - optional eg. '2014-10-06T13:22:17-08:00'","in":"query","name":"lastRunDate","required":false,"type":"string"},{"description":"The created/updated date of the object to filter on - optional eg. '2014-10-06T13:22:17-08:00'","in":"query","name":"from","required":false,"type":"string"},{"description":"The created/updated date of the object to filter on - optional eg. '2014-10-06T13:22:17-08:00'","in":"query","name":"to","required":false,"type":"string"},{"description":"Optional JSON MetaData that contains callback-payload and fileName, ex: {\"callback-payload\" : <Json> , \"fileName\" : \"{Date format}_Name of the file\"}. If the fileName is MyFile then pass metadata as {\"fileName\" : \"{yyyy-MM-dd HH:mm:ss}_MyFile\"}. The valid date formats are \"yyyy-MM-dd'T'HH:mm:ssXXX\", \"yyyy-MM-dd'T'HH:mm:ss'Z'\", \"yyyy-MM-dd'T'HH:mm:ss.SXXX\", \"yyyy-MM-dd'T'HH:mm:ss.SSSXXX\", \"yyyy-MM-dd'T'HH:mm:ss.SSSZ\", \"yyyy-MM-dd'T'HH:mm:ss.SSS'Z'\", \"yyyy-MM-dd HH:mm:ss\", \"yyyy.MM.dd G 'at' HH:mm:ss z\", \"h:mm a\", \"yyyyy.MMMMM.dd GGG hh:mm aaa\" and \"yyMMddHHmmssZ\". callback-payload - is passed back in bulk job notification ","in":"formData","name":"metaData","required":false,"type":"string"}],"consumes":["multipart/form-data"],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/BulkQuery"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Create an asynchronous bulk query job.","tags":["bulk"]}},"/bulk/{id}/cancel":{"put":{"operationId":"replaceBulkCancel","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The ID of the bulk job to cancel.","in":"path","name":"id","required":true,"type":"string"}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/BulkStatus"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Cancel an asynchronous bulk query job.","tags":["bulk"]}},"/bulk/{id}/errors":{"get":{"operationId":"getBulkErrors","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The ID of the bulk job to retrieve its errors.","in":"path","name":"id","required":true,"type":"string"},{"description":"The page size for pagination, which defaults to 200 if not supplied","format":"int64","in":"query","name":"pageSize","required":false,"type":"integer"},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"items":{"type":"string"},"type":"array"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Retrieve the errors of a bulk job.","tags":["bulk"]}},"/bulk/{id}/status":{"get":{"operationId":"getBulkStatus","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The ID of the bulk job to retrieve its status.","in":"path","name":"id","required":true,"type":"string"}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/BulkStatus"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Retrieve the status of a bulk job.","tags":["bulk"]}},"/bulk/{id}/{objectName}":{"get":{"operationId":"getBulkByObjectName","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The ID of the bulk job","in":"path","name":"id","required":true,"type":"string"},{"description":"The name of the object","in":"path","name":"objectName","required":true,"type":"string"}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"type":"file"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Retrieve the results of an asynchronous bulk query.","tags":["bulk"],"produces":["text/csv","application/json","application/jsonl"]}},"/bulk/{objectName}":{"post":{"operationId":"createBulkByObjectName","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The Url to send the notification to when the Job is completed","in":"header","name":"Elements-Async-Callback-Url","required":false,"type":"string"},{"description":"The name of the object for which data needs to be uploaded.","in":"path","name":"objectName","required":true,"type":"string"},{"description":"Optional JSON MetaData that contains callback-payload, path or format, ex: {\"path\" :&lt;path for the sub resource&gt;, \"format\": &lt;json/csv&gt;, \"callback-payload\":&lt;json&gt;}. path - is passed to the endpoint for bulk loading the data into a nested object. Optional JSON Metadata that contains identifierFieldName, action, listId or campaignId. The identifierField name is used for upserts and the optional fields like listId or campaignId. Example: {\"listId\":\"1014\",\"action\":\"upsert\"}. If the Upload format is JSON pass metadata as {\"format\":\"json\"}. callback-payload - is passed back in bulk job notification ","in":"formData","name":"metaData","required":false,"type":"string"},{"description":"The file of objects to bulk load. If the JSON file upload, each JSON record should be in a single line","in":"formData","name":"file","type":"file"}],"consumes":["multipart/form-data"],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/BulkUploadResponse"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Upload a file of objects to be bulk uploaded to the provider.","tags":["bulk"]}},"/employees":{"post":{"summary":"Create an employee","operationId":"createEmployee","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/employeesPostRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"schema":{"$ref":"#/definitions/employeesPostReq"},"in":"body","name":"body","description":"The Employee JSON Object","required":true}],"tags":["employees"]},"get":{"summary":"Get all employees","operationId":"getEmployees","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"type":"array","items":{"$ref":"#/definitions/listEmployeeGetResObject"}}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"query","name":"orderBy","description":"Specifies the order of the result set. A valid order by query would be: FirstName desc. For example : FirstName desc,DisplayName asc","type":"string","required":false},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : FirstName,LastName. A valid fields query for Nested fields will be roles.RoleGUIDLOV.RoleName,FirstName,LastName","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : SalutationLOV,roles.RoleGUIDLOV. To expand all child objects use 'all'.","type":"string","required":false},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"integer","required":false},{"in":"query","name":"where","description":"The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query.Simple Comparisons ('=','!=','>','<','>=','<=','AND') are supported. For example where=PersonId>=300000047632120 and PersonId<300000047632125 and FirstName='Kevin'","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["employees"]}},"/employees/{id}":{"patch":{"summary":"Update an employee","operationId":"updateEmployeeById","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/employeesPatchRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Employee Id","type":"string","required":true},{"schema":{"$ref":"#/definitions/employeesPatchReq"},"in":"body","name":"body","description":"The Employee JSON Object","required":true}],"tags":["employees"]},"get":{"summary":"Get an employee","operationId":"getEmployeeById","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/employeesGetRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Employee Id","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : FirstName,LastName. A valid fields query for Nested fields will be roles.RoleGUIDLOV.RoleName,FirstName,LastName","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : SalutationLOV,roles.RoleGUIDLOV. To expand all child objects use 'all'.","type":"string","required":false}],"tags":["employees"]}},"/employees/{id}/roles":{"post":{"summary":"Create an employee role","operationId":"createEmployeeRole","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/employeesRolesPostResponse"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Employee Id","type":"string","required":true},{"schema":{"$ref":"#/definitions/employeesRolesPostReq"},"in":"body","name":"body","description":"The Employee Id","required":true}],"tags":["employees"]},"get":{"summary":"Get all employee roles","operationId":"getEmployeesRoles","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"type":"array","items":{"$ref":"#/definitions/listEmployeesRolesGetResObject"}}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Employee Id","type":"string","required":true},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"integer","required":false},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : RoleName,RoleCommonName. A valid fields query for Nested fields will be RoleGUIDLOV.RoleName,RoleCommonName","type":"string","required":false},{"in":"query","name":"orderBy","description":"Specifies the order of the result set. A valid order by query would be: RoleName desc. For example : RoleName desc,RoleCommonName asc","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : RoleGUIDLOV. To expand all child objects use 'all'.","type":"string","required":false},{"in":"query","name":"where","description":"The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query.Simple Comparisons ('=','!=','>','<','>=','<=','AND') are supported. For example where=PersonId>=300000047632120 and PersonId<300000047632125 and FirstName='Kevin'","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["employees"]}},"/employees/{id}/roles/{roleId}":{"get":{"summary":"Get an employee role","operationId":"getEmployeesRoleByRoleId","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/employeesRolesGetRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Employee Id","type":"string","required":true},{"in":"path","name":"roleId","description":"The Role Id","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : RoleName,RoleCommonName. A valid fields query for Nested fields will be RoleGUIDLOV.RoleName,RoleCommonName","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : RoleGUIDLOV. To expand all child objects use 'all'.","type":"string","required":false}],"tags":["employees"]},"delete":{"summary":"Delete an employee role","operationId":"deleteEmployeesRoleByRoleId","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Employee Id","type":"string","required":true},{"in":"path","name":"roleId","description":"The Role Id","type":"string","required":true}],"tags":["employees"]}},"/objects":{"get":{"operationId":"getObjects","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"Elements Version to be used for getting metadata, possible options are Hydrogen, Helium. Default value is Hydrogen","in":"header","name":"Elements-Version","required":false,"type":"string","enum":["Hydrogen","Helium"]}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"items":{"type":"string"},"type":"array"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Get a list of all the available objects.","tags":["objects"]}},"/objects/{objectName}/docs":{"get":{"operationId":"getObjectsObjectNameDocs","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The name of the object","in":"path","name":"objectName","required":true,"type":"string"},{"description":"Include discovery metadata in definitions","in":"query","name":"discovery","required":false,"type":"boolean"},{"description":"Optionally resolve swagger references for an inline object definition","in":"query","name":"resolveReferences","required":false,"type":"boolean"},{"description":"Include only OpenAPI / Swagger properties in definitions","in":"query","name":"basic","required":false,"type":"boolean"},{"description":"The element swagger version to get the corresponding element swagger, Passing in \"-1\" gives latest element swagger","in":"query","name":"version","required":false,"default":"-1","type":"string"}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/swaggerDocs"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Get swagger docs for an object.","tags":["objects"]}},"/objects/{objectName}/metadata":{"get":{"operationId":"getObjectsObjectNameMetadata","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"},{"description":"The name of the object","in":"path","name":"objectName","required":true,"type":"string"},{"description":"Elements Version to be used for getting metadata, possible options are Hydrogen, Helium. Default value is Hydrogen","in":"header","name":"Elements-Version","required":false,"type":"string","enum":["Hydrogen","Helium"]}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/objectsMetadata"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Get a list of all the fields for an object.","tags":["objects"]}},"/ping":{"get":{"operationId":"getPing","parameters":[{"description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","in":"header","name":"Authorization","required":true,"type":"string"}],"responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/Pong"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"404":{"description":"Not found - The requested resource is not found"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"}},"summary":"Ping the element to confirm that the hub element has a heartbeat.  If the element does not have a heartbeat, an error message will be returned.","tags":["ping"]}},"/positions":{"get":{"summary":"Get all positions","operationId":"getPositions","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"type":"array","items":{"$ref":"#/definitions/listPositionsGetResObject"}}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"integer","required":false},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : PositionId,Name. A valid fields query for Nested fields will be validGrades.GradeId,PositionId,Name","type":"string","required":false},{"in":"query","name":"orderBy","description":"Specifies the order of the result set. A valid order by query would be: PositionId desc. For example : PositionId desc,Name asc","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : PositionCustomerFlex.LVVO_atRisk. To expand all child objects use 'all'.","type":"string","required":false},{"in":"query","name":"where","description":"The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query.Simple Comparisons ('=','!=','>';,'<','>=','<=','AND') are supported. For example where=JobId>=3 and JobId<5 and HiringStatus='APPROVED'","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["positions"]}},"/positions/{id}":{"get":{"summary":"Get a position","operationId":"getPositionById","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/positionsGetRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Position Id","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : PositionId,Name. A valid fields query for Nested fields will be validGrades.GradeId,PositionId,Name","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : PositionCustomerFlex.LVVO_atRisk. To expand all child objects use 'all'.","type":"string","required":false}],"tags":["positions"]}},"/requisitions":{"get":{"summary":"Get all requisitions","operationId":"getRequisitions","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"type":"array","items":{"$ref":"#/definitions/listJobsGetResObject"}}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"query","name":"where","description":"The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query.Simple Comparisons ('=','!=','>','<','>=','<=','AND') are supported. For example where=JobId>=3 and JobId<5 and FirstName='Kevin'","type":"string","required":false},{"in":"query","name":"orderBy","description":"Specifies the order of the result set. A valid order by query would be: JobId desc. For example : JobId desc,ActiveStatus asc","type":"string","required":false},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : JobId,ActiveStatus. A valid fields query for Nested fields will be validGrades.GradeId,ActiveStatus,JobId","type":"string","required":false},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"integer","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : ManagerLevelLookup. To expand all child objects use 'all'.","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["requisitions"]}},"/requisitions/{id}":{"get":{"summary":"Get a requisition","operationId":"getRequisitionById","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/requisitionsGetRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Requisition Id","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : JobId,ActiveStatus. A valid fields query for Nested fields will be validGrades.GradeId,ActiveStatus,JobId","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : ManagerLevelLookup. To expand all child objects use 'all'.","type":"string","required":false}],"tags":["requisitions"]}},"/time-cards":{"get":{"summary":"Get all time cards","operationId":"getTimeCards","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"type":"array","items":{"$ref":"#/definitions/listTimeCardsGetResObject"}}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"integer","required":false},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : timeRecordId,groupType. A valid fields query for Nested fields will be timeAttributes.attributeId,timeRecordId,groupType","type":"string","required":false},{"in":"query","name":"orderBy","description":"Specifies the order of the result set. A valid order by query would be: timeRecordId desc. For example : timeRecordId desc,groupType asc","type":"string","required":false},{"in":"query","name":"where","description":"The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query.Simple Comparisons ('=','!=','>','<','>=','<=','AND') are supported. For example where=timeRecordId>=3 and timeRecordId<5 and recordType='MEASURE'","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : timeStatuses. To expand all child objects use 'all'.","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["time-cards"]}},"/time-cards/{id}":{"get":{"summary":"Get a time card","operationId":"getTimeCardById","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/timeCardsGetResp"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Time Card Id","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : timeRecordId,groupType. A valid fields query for Nested fields will be timeAttributes.attributeId,timeRecordId,groupType","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : timeStatuses. To expand all child objects use 'all'.","type":"string","required":false}],"tags":["time-cards"]}},"/time-events":{"post":{"summary":"Create a time event","operationId":"createTimeEvent","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/timeEventsPostRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"schema":{"$ref":"#/definitions/timeEventsPostReq"},"in":"body","name":"body","description":"The following table describes the body parameters in the request for this task.","required":true}],"tags":["time-events"]},"get":{"summary":"Get all time events","operationId":"getTimeEvents","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"type":"array","items":{"$ref":"#/definitions/listTimeEventsGetResObject"}}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : timeEventRequestId,sourceId. A valid fields query for Nested fields will be timeEvents.timeEventId,timeEventRequestId,sourceId","type":"string","required":false},{"in":"query","name":"orderBy","description":"Specifies the order of the result set. A valid order by query would be: timeEventRequestId desc. For example : timeEventRequestId desc,sourceId asc","type":"string","required":false},{"in":"query","name":"where","description":"The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query.Simple Comparisons (‘=’,’!=’,’>’,’<’,’>=’,’<=’,’AND’) are supported. For example where=timeEventRequestId>=3 and timeEventRequestId<5 and sourceId=’ORA_HWM_WEBCLOCK’","type":"string","required":false},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"integer","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : timeEvents.timeEventAttributes. To expand all child objects use 'all’.","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["time-events"]}},"/time-events/{id}":{"get":{"summary":"Get a time event","operationId":"getTimeEventById","responses":{"200":{"description":"OK - Everything worked as expected","schema":{"$ref":"#/definitions/timeEventsRes"}},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"id","description":"The Time Event Id","type":"integer","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : timeEventRequestId,sourceId. A valid fields query for Nested fields will be timeEvents.timeEventId,timeEventRequestId,sourceId","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : timeEvents.timeEventAttributes. To expand all child objects use 'all’.","type":"string","required":false}],"tags":["time-events"]}},"/{objectName}":{"post":{"summary":"Create an {objectName}","operationId":"createByObjectName","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"schema":{"$ref":"#/definitions/objectNamePostReq"},"in":"body","name":"body","description":"The object body","required":true}],"tags":["objectName"]},"get":{"summary":"Search for  {objectName}","operationId":"getByObjectName","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : Field-1,Field-2.","type":"string","required":false},{"in":"query","name":"orderBy","description":"Specifies the order of the result set.","type":"string","required":false},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : Child-1,Child-2. To expand all child objects use 'all'.","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["objectName"]}},"/{objectName}/{objectId}":{"patch":{"summary":"Update an {objectName}","operationId":"updateObjectNameByObjectId","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The objectId ID","type":"string","required":true},{"schema":{"$ref":"#/definitions/objectNamePatchReq"},"in":"body","name":"body","description":"The object body","required":true}],"tags":["objectName"]},"get":{"summary":"Retrieve an {objectName}","operationId":"getObjectNameByObjectId","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The id ID","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : Field-1,Field-2.","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : Child-1,Child-2. To expand all child objects use 'all'.","type":"string","required":false}],"tags":["objectName"]},"delete":{"summary":"Delete an {objectName}","operationId":"deleteObjectNameByObjectId","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The id ID","type":"string","required":true}],"tags":["objectName"]}},"/{objectName}/{objectId}/{childObjectName}":{"post":{"summary":"Create an {childObjectName}","operationId":"createObjectNameByChildObjectName","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The objectId ID","type":"string","required":true},{"in":"path","name":"childObjectName","description":"The childObjectName ID","type":"string","required":true},{"schema":{"$ref":"#/definitions/childObjectNamePostReq"},"in":"body","name":"body","description":"The object body","required":true}],"tags":["objectName"]},"get":{"summary":"Search for an {childObjectName}","operationId":"getObjectNameByChildObjectName","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The objectId ID","type":"string","required":true},{"in":"path","name":"childObjectName","description":"The childObjectName ID","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : Field-1,Field-2.","type":"string","required":false},{"in":"query","name":"pageSize","format":"int64","description":"The number of resources to return in a given page","type":"integer","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : Child-1,Child-2. To expand all child objects use 'all'.","type":"string","required":false},{"description":"The next page cursor, taken from the response header: `elements-next-page-token`","in":"query","name":"nextPage","required":false,"type":"string"}],"tags":["objectName"]}},"/{objectName}/{objectId}/{childObjectName}/{childObjectId}":{"patch":{"summary":"Update an {childObjectName}","operationId":"updateObjectNameByChildObjectId","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The objectId ID","type":"string","required":true},{"in":"path","name":"childObjectName","description":"The childObjectName ID","type":"string","required":true},{"in":"path","name":"childObjectId","description":"The childObjectId ID","type":"string","required":true},{"schema":{"$ref":"#/definitions/childObjectNamePatchReq"},"in":"body","name":"body","description":"The object body","required":true}],"tags":["objectName"]},"get":{"summary":"Retrieve an {childObjectName}","operationId":"getObjectNameByChildObjectId","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The objectId ID","type":"string","required":true},{"in":"path","name":"childObjectName","description":"The childObjectName ID","type":"string","required":true},{"in":"path","name":"childObjectId","description":"The childObjectId ID","type":"string","required":true},{"in":"query","name":"fields","description":"Specify the fields to return in the response payload. A valid fields query would be : Field-1,Field-2.","type":"string","required":false},{"in":"query","name":"expand","description":"Expand child objects.A valid expand query would be : Child-1,Child-2. To expand all child objects use 'all'.","type":"string","required":false}],"tags":["objectName"]},"delete":{"summary":"Delete an {childObjectName}","operationId":"deleteObjectNameByChildObjectId","responses":{"200":{"description":"OK - Everything worked as expected"},"400":{"description":"Bad Request - Often due to a missing request parameter"},"401":{"description":"Unauthorized - An invalid element token, user secret and/or org secret provided"},"500":{"description":"Server error - Something went wrong on the Cloud Elements server"},"403":{"description":"Forbidden - Access to the resource by the provider is forbidden"},"502":{"description":"Provider server error - Something went wrong on the Provider or Endpoint's server"},"404":{"description":"Not found - The requested resource is not found"},"415":{"description":"Unsupported media type - The server cannot handle the requested Content-Type"},"405":{"description":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected"},"406":{"description":"Not acceptable - The response content type does not match the 'Accept' header value"},"409":{"description":"Conflict - If a resource being created already exists"}},"parameters":[{"in":"header","name":"Authorization","description":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string","required":true},{"in":"path","name":"objectName","description":"The objectName ID","type":"string","required":true},{"in":"path","name":"objectId","description":"The objectId ID","type":"string","required":true},{"in":"path","name":"childObjectName","description":"The childObjectName ID","type":"string","required":true},{"in":"path","name":"childObjectId","description":"The childObjectId ID","type":"string","required":true}],"tags":["objectName"]}}},"host":"api.cloud-elements.com","schemes":["https"],"definitions":{"listPositionsGetResLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listEmployeeGetResVisas":{"properties":{"CreationDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.100Z"},"LastUpdateDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.100Z"},"VisaPermitCountry":{"type":"string","x-samplevalue":"string"},"VisaPermitExpiration":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"VisaPermitId":{"format":"int32","type":"integer","x-samplevalue":0},"VisaPermitNumber":{"type":"string","x-samplevalue":"string"},"VisaPermitType":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResVisasLinks"},"type":"array"}},"title":"visas","type":"object"},"listEmployeeGetResAssignmentsEmprepsLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swaggerdefinitions":{"x-has-customfields":false,"type":"object","title":"definitions","properties":{"definition-name":{"$ref":"#/definitions/swaggerdefinition-name"}}},"timeEventRequests-timeEvents-item":{"properties":{"deviceId":{"description":"Identifier for the time collection device used to create the time event.","maxLength":40,"type":"string"},"eventDateTime":{"description":"Date and time when the time event was recorded on the time collection device. The time stamp in the request must use the ISO 8601 standard with the timezone offset information. The attribute can handle either a start or end time or a start time and duration.","maxLength":80,"type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"reporterId":{"description":"Identifier for the worker recording the time event on the time collection device.","maxLength":80,"type":"string"},"reporterIdType":{"description":"The type of reporter identifier, such as Person or Badge, that the time reporter uses when swiping on the time collection device. Valid values are defined in the list ReporterIDTypeList1.","maxLength":30,"type":"string"},"supplierDeviceEvent":{"description":"The time events recognized by the supplier that are mapped to the corresponding Workforce Management application event. For example, the supplier device event Clock In is mapped to the application event In. Valid values are defined in the lookup TimeLookupSharedAM_OraHwmTcdSupplierEventswithSource1 and the lookup codes are defined by the customer.","maxLength":40,"type":"string"},"timeEventAttributes":{"description":"The timeEventAttributes resource is a child of the time events resource, and hence the child of child of the time events requests resource. It is a qualifier associated with the time event that reflects how time is paid, costed, billed, or recorded as an information entry. For example, the payroll time type attribute indicates if the time for payroll consumers must be paid.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeEventRequests-timeEvents-timeEventAttributes-item"},"title":"Time Event Attributes","type":"array"},"timeEventId":{"description":"Unique identifier for the IN or OUT time event that the time reporter records on a time collection device.","format":"int64","type":"integer"},"timeEventRequestId":{"description":"Unique identifier for the time event request that the time collection device supplier sends. This request can contain one or more time events.","format":"int64","type":"integer"}},"type":"object","x-links":[{"description":"The list of values for the supplier device events lookup code.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: supplierDeviceEvent; Target Attribute: LookupCode</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/timeEventRequests/{timeEventRequestId}/child/timeEvents/{timeEventId}/lov/TimeLookupSharedAM_OraHwmTcdSupplierEventswithSource1?fields=LookupCode","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["supplierDeviceEvent"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"}},"type":"object"},"title":"supplierDeviceEvent LOV"},{"description":"The list of values for the type of reporter identifier, such as PERSON and BADGE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: reporterIdType; Target Attribute: ReporterIdType</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/timeEventRequests/{timeEventRequestId}/child/timeEvents/{timeEventId}/lov/ReporterIdTypeList1?fields=ReporterIdType","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["reporterIdType"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"ReporterIdType":{"description":"Type of identifier for the worker recording the time event on the time collection device.","type":"string"}},"type":"object"},"title":"reporterIdType LOV"}]},"positionsGetResValidGradesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swaggerdefinition-name":{"x-has-customfields":false,"type":"object","title":"definition-name","properties":{"properties":{"$ref":"#/definitions/swaggerproperties"}}},"emps-assignments-assignmentExtraInformation-item":{"properties":{"AssignmentId":{"description":"Extensible flexfield for assignment.","format":"int64","title":"Assignment ID","type":"integer"},"AssignmentType":{"description":"Extensible flexfield for assignment.","maxLength":30,"title":"Assignment Type","type":"string"},"CategoryCode":{"description":"Extensible flexfield for assignment.","maxLength":80,"type":"string"},"EffectiveEndDate":{"description":"Extensible flexfield for assignment.","format":"date","type":"string"},"EffectiveLatestChange":{"description":"Extensible flexfield for assignment.","maxLength":30,"title":"Effective Latest Change","type":"string"},"EffectiveSequence":{"description":"Extensible flexfield for assignment.","format":"int32","title":"Effective Sequence","type":"integer"},"EffectiveStartDate":{"description":"Extensible flexfield for assignment.","format":"date","type":"string"},"ObjectVersionNumber":{"description":"Used to implement optimistic locking. This number is incremented every time a row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row from the time it was queried.","format":"int32","type":"integer"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object"},"listEmployeesRolesGetResObject":{"properties":{"CreationDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:22:53.459Z"},"EndDate":{"type":"string","x-samplevalue":"string"},"LastUpdateDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:22:53.459Z"},"RoleCommonName":{"type":"string","x-samplevalue":"string"},"RoleGUID":{"type":"string","x-samplevalue":"string"},"RoleName":{"type":"string","x-samplevalue":"string"},"StartDate":{"type":"string","x-samplevalue":"string"},"id":{"type":"string","x-samplevalue":"zbcd1234fghj"},"links":{"items":{"$ref":"#/definitions/listEmployeesRolesGetResLinks"},"type":"array"}},"title":"listEmployeesRolesGetRes","type":"object"},"listJobsGetResValidGrades":{"properties":{"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"GradeId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listJobsGetResValidGradesLinks"},"type":"array"}},"title":"validGrades","type":"object"},"listEmployeeGetResLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listJobsGetResLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listEmployeeGetResAssignmentsPeopleGroupKeyFlexfieldLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listPositionsGetResPositionCustomerFlex":{"properties":{"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"_FLEX_NumOfSegments":{"format":"int32","type":"integer","x-samplevalue":0},"_FLEX_ValidationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"__FLEX_Context":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listPositionsGetResPositionCustomerFlexLinks"},"type":"array"}},"title":"PositionCustomerFlex","type":"object"},"emps-assignments-assignmentDFF-item":{"properties":{"AssignmentId":{"description":"Descriptive flexfield for assignment.","format":"int64","title":"Assignment ID","type":"integer"},"AssignmentType":{"description":"Descriptive flexfield for assignment.","maxLength":30,"title":"Assignment Type","type":"string"},"EffectiveEndDate":{"description":"Descriptive flexfield for assignment.","format":"date","type":"string"},"EffectiveLatestChange":{"description":"Descriptive flexfield for assignment.","maxLength":30,"title":"Effective Latest Change","type":"string"},"EffectiveSequence":{"description":"Descriptive flexfield for assignment.","format":"int32","title":"Effective Sequence","type":"integer"},"EffectiveStartDate":{"description":"Descriptive flexfield for assignment.","format":"date","type":"string"},"_FLEX_NumOfSegments":{"description":"Descriptive flexfield for assignment.","format":"int32","type":"integer"},"__FLEX_Context":{"description":"Descriptive flexfield for assignment. Valid values are defined in the list LVVO___FLEX_Context.","maxLength":30,"type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for the context of descriptive flexfield.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: __FLEX_Context; Target Attribute: ContextCode</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/child/assignmentDFF/{assignmentDFFUniqID}/lov/LVVO___FLEX_Context?fields=ContextCode,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["__FLEX_Context"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"ContextCode":{"description":"Descriptive flexfield for assignment.","type":"string"},"Name":{"description":"Descriptive flexfield for assignment.","type":"string"}},"type":"object"},"title":"__FLEX_Context LOV"}]},"employeesGetRes":{"properties":{"AddressLine1":{"description":"First line of the primary mailing address.","maxLength":240,"title":"Address Line 1","type":"string"},"AddressLine2":{"description":"Second line of the primary mailing address.","maxLength":240,"title":"Address Line 2","type":"string"},"AddressLine3":{"description":"Third line of the primary mailing address.","maxLength":240,"title":"Address Line 3","type":"string"},"CitizenshipId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"CitizenshipLegislationCode":{"description":"Legislation code derived from the legal entity. Valid values are defined in the list CitizenshipLegislationCodeLOV.","maxLength":30,"title":"Citizenship","type":"string"},"CitizenshipStatus":{"description":"Status of the person's citizenship. Valid values are defined in the list CitizenshipStatusLOV.","maxLength":30,"title":"Citizenship Status","type":"string"},"CitizenshipToDate":{"description":"End date of citizenship.","format":"date","title":"To Date","type":"string"},"City":{"description":"Town or city in which the address is located.","maxLength":30,"title":"Town or City","type":"string"},"CorrespondenceLanguage":{"description":"Preferred language for communication. Valid values are defined in the list CorrespondenceLanguageLOV.","maxLength":30,"title":"Correspondence Language","type":"string"},"Country":{"description":"Country in which the address is located.","maxLength":60,"title":"Country","type":"string"},"CreationDate":{"description":"Date and time of creation of the employee record.","format":"date-time","type":"string"},"DateOfBirth":{"description":"Date of birth of the person.","format":"date","title":"Date of Birth","type":"string"},"DisplayName":{"description":"Person's display name.","maxLength":240,"title":"Name","type":"string"},"DriversLicenseExpirationDate":{"description":"Expiration date of the driver's license.","format":"date","title":"To Date","type":"string"},"DriversLicenseId":{"description":"System-generated primary key. Surrogate key.","format":"int64","type":"integer"},"DriversLicenseIssuingCountry":{"description":"Country that issued the driver's license.","maxLength":30,"title":"Issuing Country","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee is effective.","format":"date","title":"Effective Start Date","type":"string"},"Ethnicity":{"description":"Person's ethnicity for the legislation code. Valid values are defined in the list EthnicityLOV.","maxLength":30,"title":"Ethnicity","type":"string"},"FirstName":{"description":"Person's first name.","maxLength":150,"title":"First Name","type":"string"},"Gender":{"description":"Person's gender. Valid values are defined in the list GenderLOV.","maxLength":30,"title":"Gender","type":"string"},"HireDate":{"description":"Hire date of the employee.","format":"date","type":"string"},"HomeFaxAreaCode":{"description":"Area code of the phone number for the home fax machine.","maxLength":30,"title":"Area Code","type":"string"},"HomeFaxCountryCode":{"description":"Country code of the phone number for the home fax machine.","maxLength":30,"title":"Country Code","type":"string"},"HomeFaxExtension":{"description":"Extension of the phone number for the home fax machine.","maxLength":60,"title":"Extension","type":"string"},"HomeFaxLegislationCode":{"description":"Legislation code of the home fax number.","maxLength":4,"title":"Country Code","type":"string"},"HomeFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"HomePhoneAreaCode":{"description":"Area code of the home phone number.","maxLength":30,"title":"Area Code","type":"string"},"HomePhoneCountryCode":{"description":"Country code of the home phone number.","maxLength":30,"title":"Country Code","type":"string"},"HomePhoneExtension":{"description":"Extension of the home phone number.","maxLength":60,"title":"Extension","type":"string"},"HomePhoneLegislationCode":{"description":"Legislation code of the home phone number.","maxLength":4,"title":"Country Code","type":"string"},"HomePhoneNumber":{"description":"Home phone number.","maxLength":60,"title":"Number","type":"string"},"Honors":{"description":"Higher qualification appended to a person's name. For example, PhD.","maxLength":80,"title":"Honors","type":"string"},"LastName":{"description":"Person's last name.","maxLength":150,"title":"Last Name","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee record.","format":"date-time","type":"string"},"LegalEntityId":{"description":"Unique identifier for the legal entity. Valid values are defined in the list LegalEmployerLOV.","format":"int64","type":"integer"},"LicenseNumber":{"description":"Person's driving license number.","maxLength":150,"title":"License Number","type":"string"},"MaritalStatus":{"description":"Person's marital status. Valid values are defined in the list MaritalStatusLOV.","maxLength":30,"title":"Marital Status","type":"string"},"MiddleName":{"description":"Person's middle name.","maxLength":80,"title":"Middle Names","type":"string"},"MilitaryVetStatus":{"description":"Indicates whether the person is on military service. Valid values are defined in the listt MilitaryVetStatusLOV.","maxLength":30,"type":"string"},"NameSuffix":{"description":"Part of the name appended to a person's last name such as Jr., III, etc.","maxLength":80,"title":"Suffix","type":"string"},"NationalId":{"description":"Primary key generated by the application.","maxLength":30,"title":"National ID","type":"string"},"NationalIdCountry":{"description":"Country of nationality.","maxLength":30,"title":"Place of Issue","type":"string"},"NationalIdExpirationDate":{"description":"Expiration date of the national identifier.","format":"date","title":"Expiration Date","type":"string"},"NationalIdType":{"description":"Type of national identifier. Valid values are defined in the list NationalIdTypeLOV.","maxLength":30,"title":"National ID Type","type":"string"},"PassportExpirationDate":{"description":"Expiration date of the passport.","format":"date","title":"Expiration Date","type":"string"},"PassportId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"PassportIssueDate":{"description":"Date of issue of passport.","format":"date","title":"Issue Date","type":"string"},"PassportIssuingCountry":{"description":"Country that issued the passport.","maxLength":30,"title":"Issuing Country","type":"string"},"PassportNumber":{"description":"Person's passport number.","maxLength":30,"title":"Number","type":"string"},"PersonId":{"description":"Internal identifier for the person.","format":"int64","title":"Person ID","type":"integer"},"PersonNumber":{"description":"Number assigned to a person to identify the person uniquely. Does not depend on the person type (employee, contingent worker, etc). Search on this attribute is not case sensitive.","maxLength":30,"title":"Person Number","type":"string"},"PostalCode":{"description":"Postal code of the address.","maxLength":30,"title":"Postal Code","type":"string"},"PreferredName":{"description":"Person's preferred first name.","maxLength":80,"title":"Known As","type":"string"},"PreviousLastName":{"description":"Previous last name of the person, if any.","maxLength":150,"title":"Previous Last Name","type":"string"},"ProjectedTerminationDate":{"description":"Projected termination date for the worker.","format":"date","type":"string"},"Region":{"description":"Primary region in which the address is located.","maxLength":120,"title":"Region 1","type":"string"},"Region2":{"description":"Secondary region within the primary region.","maxLength":120,"title":"Region 2","type":"string"},"Religion":{"description":"Person's religion. Valid values are defined in the list ReligionLOV.","maxLength":30,"title":"Religion","type":"string"},"ReligionId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"Salutation":{"description":"Person salutation such as Mr., Ms., and so on. Valid values are defined in the list SalutationLOV.","maxLength":30,"title":"Title","type":"string"},"TerminationDate":{"description":"Termination date of the employee.","format":"date","type":"string"},"UserName":{"description":"User name for the record. This value is optional and is automatically generated if not specified. Also works with UsernameMatching attribute. Search on this attribute is not case sensitive.","maxLength":100,"type":"string"},"WorkEmail":{"description":"Person's work email address. Search on this attribute is not case sensitive.","maxLength":240,"title":"Email","type":"string"},"WorkFaxAreaCode":{"description":"Area code of the phone number for the work fax machine.","maxLength":30,"title":"Area Code","type":"string"},"WorkFaxCountryCode":{"description":"Country code of the phone number for the work fax machine.","maxLength":30,"title":"Country Code","type":"string"},"WorkFaxExtension":{"description":"Extension of the phone number for the work fax machine.","maxLength":60,"title":"Extension","type":"string"},"WorkFaxLegislationCode":{"description":"Legislation code of the work fax number.","maxLength":4,"title":"Country Code","type":"string"},"WorkFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"WorkMobilePhoneAreaCode":{"description":"Area code of the work mobile phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkMobilePhoneCountryCode":{"description":"Country code of the work mobile phone number.","maxLength":30,"title":"Country Code","type":"string"},"WorkMobilePhoneExtension":{"description":"Extension of the work mobile phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkMobilePhoneLegislationCode":{"description":"Legislation code of the work mobile phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkMobilePhoneNumber":{"description":"Work mobile phone number.","maxLength":60,"title":"Number","type":"string"},"WorkPhoneAreaCode":{"description":"Area code of the work phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkPhoneCountryCode":{"description":"Country code of the work phone number. For example, 39 for Italy.","maxLength":30,"title":"Country Code","type":"string"},"WorkPhoneExtension":{"description":"Extension of the work phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkPhoneLegislationCode":{"description":"Legislation code of the work phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkPhoneNumber":{"description":"Work phone number.","maxLength":60,"title":"Number","type":"string"},"WorkerType":{"description":"Primary type of a worker such as employee (E), contingent worker (C), pending worker (P), or non-worker (N). This is a read-only attribute as indicated in the describe metadata.","maxLength":30,"type":"string"},"assignments":{"description":"The assignments resource is a child of the emps resource. It includes all employee assignments as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-item"},"title":"Assignments","type":"array"},"directReports":{"description":"The directReports resource is a child of the emps resource. It includes all employee direct reports as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-directReports-item"},"title":"Direct Reports","type":"array"},"employeeUniqId":{"description":"Employee Uniq Id","maxLength":500,"title":"Employee Unique Id","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"personDFF":{"description":"The personDFF resource is a child of the emps resource. It includes all employee descriptive flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personDFF-item"},"title":"Person Descriptive Flexfields","type":"array"},"personExtraInformation":{"description":"The personExtraInformation resource is a child of the emps resource. It includes all the extensible flexfields for additional person information as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personExtraInformation-item"},"title":"Person Extra Information Extensible FlexFields","type":"array"},"photo":{"description":"The photo resource is a child of the emps resource. It includes all employee primary photos as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-photo-item"},"title":"Photos","type":"array"},"roles":{"description":"The roles resource is a child of the emps resource. It includes all employee roles as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-roles-item"},"title":"Roles","type":"array"},"visas":{"description":"The visas resource is a child of the emps resource. It includes all employee visas as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-visas-item"},"title":"Visas","type":"array"}},"type":"object","x-links":[{"description":"The list of values for person salutation.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Salutation; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/SalutationLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Salutation"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Salutation LOV"},{"description":"The list of values for the preferred language of communication.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CorrespondenceLanguage; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CorrespondenceLanguageLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CorrespondenceLanguage"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CorrespondenceLanguage LOV"},{"description":"The list of values for person ethnicity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Ethnicity; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/EthnicityLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Ethnicity"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Ethnicity LOV"},{"description":"The list of values for legal entities.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: LegalEntityId; Target Attribute: OrganizationId</li><li>Display Attribute: OrganizationId</li><li>Display Attribute: LegalEntityId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/LegalEmployerLOV?fields=OrganizationId,LegalEntityId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["LegalEntityId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LegalEntityId":{"description":"Unique identifier for the legal entity.","type":"integer"},"Name":{"description":"Name of the legal entity.","type":"string"},"OrganizationId":{"description":"Unique identifier for the organization.","type":"integer"}},"type":"object"},"title":"LegalEntityId LOV"},{"description":"The list of values for gender such as MALE or FEMALE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Gender; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/GenderLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Gender"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Gender LOV"},{"description":"The list of values for marital status, such as MARRIED or SINGLE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MaritalStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MaritalStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MaritalStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MaritalStatus LOV"},{"description":"The list of values for national identifiers.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: NationalIdType; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/NationalIdTypeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["NationalIdType"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"NationalIdType LOV"},{"description":"The list of values for citizenship status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipStatus LOV"},{"description":"The list of values for the legislation code derived from the legal entity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipLegislationCode; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipLegislationCodeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipLegislationCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipLegislationCode LOV"},{"description":"The list of values for religion.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Religion; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/ReligionLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Religion"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Religion LOV"},{"description":"The list of values for military service status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MilitaryVetStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MilitaryVetStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MilitaryVetStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MilitaryVetStatus LOV"}]},"swagger-contacts-path":{"x-has-customfields":false,"type":"object","title":"/contacts","properties":{"post":{"$ref":"#/definitions/swaggerpost"}}},"childObjectNamePostReq":{"properties":{"objectField":{"type":"string","x-samplevalue":"string"}},"title":"childObjectNamePostReq","type":"object"},"positionsGetRes":{"properties":{"BudgetAmount":{"format":"int32","type":"integer","x-samplevalue":0},"BudgetAmountCurrency":{"type":"string","x-samplevalue":"string"},"BudgetedPositionFlag":{"type":"boolean","x-samplevalue":true},"BusinessUnitId":{"format":"int32","type":"integer","x-samplevalue":0},"CostCenter":{"type":"string","x-samplevalue":"string"},"CostCenterName":{"type":"string","x-samplevalue":"string"},"DelegatePositionBusinessUnitId":{"format":"int32","type":"integer","x-samplevalue":0},"DelegatePositionBusinessUnitName":{"type":"string","x-samplevalue":"string"},"DelegatePositionCode":{"type":"string","x-samplevalue":"string"},"DelegatePositionId":{"format":"int32","type":"integer","x-samplevalue":0},"DepartmentId":{"format":"int32","type":"integer","x-samplevalue":0},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EntryGradeId":{"format":"int32","type":"integer","x-samplevalue":0},"EntryStepId":{"format":"int32","type":"integer","x-samplevalue":0},"FTE":{"format":"int32","type":"integer","x-samplevalue":0},"FullPartTime":{"type":"string","x-samplevalue":"string"},"FundedByExistingPositionFlag":{"type":"boolean","x-samplevalue":true},"GradeLadderId":{"format":"int32","type":"integer","x-samplevalue":0},"HeadCount":{"format":"int32","type":"integer","x-samplevalue":0},"HiringStatus":{"type":"string","x-samplevalue":"string"},"JobId":{"format":"int32","type":"integer","x-samplevalue":0},"LocationId":{"format":"int32","type":"integer","x-samplevalue":0},"Name":{"type":"string","x-samplevalue":"string"},"OverlapAllowedFlag":{"type":"boolean","x-samplevalue":true},"PositionCode":{"type":"string","x-samplevalue":"string"},"PositionCustomerFlex":{"items":{"$ref":"#/definitions/positionsGetResPositionCustomerFlex"},"type":"array"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"PositionType":{"type":"string","x-samplevalue":"string"},"ProbationPeriod":{"format":"int32","type":"integer","x-samplevalue":0},"RegularTemporary":{"type":"string","x-samplevalue":"string"},"SeasonalEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"SeasonalFlag":{"type":"boolean","x-samplevalue":true},"SeasonalStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"SecurityClearance":{"type":"string","x-samplevalue":"string"},"extraInformation":{"items":{"$ref":"#/definitions/positionsGetResExtraInformation"},"type":"array"},"legislativeExtraInformation":{"items":{"$ref":"#/definitions/positionsGetResLegislativeExtraInformation"},"type":"array"},"links":{"items":{"$ref":"#/definitions/positionsGetResLinks"},"type":"array"},"validGrades":{"items":{"$ref":"#/definitions/positionsGetResValidGrades"},"type":"array"}},"title":"positionsGetRes","x-primary-key":["PositionId"],"type":"object"},"timeRecords-timeMessages-item":{"properties":{"allowedException":{"description":"Indicator that determines whether to allow the exception associated with the time record.","maxLength":1,"type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"messageCode":{"description":"Code of the message associated with the time record, such as HWM_TDR_MISSING_IN_ERR for a missing in time entry error.","maxLength":256,"type":"string"},"messageId":{"description":"Unique identifier for the message associated with the time record.","format":"int64","type":"integer"},"messageText":{"description":"Text of the message associated with the time record.","maxLength":240,"type":"string"},"ruleId":{"description":"Unique identifier of the rule from which messages were generated.","format":"int64","type":"integer"},"ruleSetId":{"description":"Unique identifier of the rule set containing the rules from which messages were generated.","format":"int64","type":"integer"},"ruleSetType":{"description":"Type of the rule set containing the rules from which messages were generated, such as TCR for time calculation rule.","maxLength":32,"type":"string"},"severity":{"description":"Severity of the message associated with the time record.","maxLength":30,"type":"string"},"tag":{"description":"Label attached to the message related to the time record for identification.","maxLength":120,"type":"string"},"timeBuildingBlockId":{"description":"Unique identifier for the time record with specified messages.","format":"int64","type":"integer"},"timeBuildingBlockVersion":{"description":"Version number of the time record with specified messages.","format":"int32","type":"integer"},"timeMessageTokens":{"description":"The timeMessageTokens resource is a child of the time messages resource, and hence the child of child of the time records resource. it is a unique identifier for the token of the message associated with the time record.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeRecords-timeMessages-timeMessageTokens-item"},"title":"Time Message Tokens","type":"array"}},"type":"object"},"swagger400":{"x-has-customfields":false,"type":"object","title":"400","properties":{"description":{"x-samplevalue":"Bad Request - Often due to a missing request parameter","type":"string"}}},"listJobsGetResJobCustomerFlex":{"properties":{"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"JobId":{"format":"int32","type":"integer","x-samplevalue":0},"__FLEX_Context":{"type":"string","x-samplevalue":"string"},"__FLEX_Context_DisplayValue":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listJobsGetResJobCustomerFlexLinks"},"type":"array"}},"title":"JobCustomerFlex","type":"object"},"swagger401":{"x-has-customfields":false,"type":"object","title":"401","properties":{"description":{"x-samplevalue":"Unauthorized - An invalid element token, user secret and/or org secret provided","type":"string"}}},"listTimeEventsGetResTimeEventsLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swagger403":{"x-has-customfields":false,"type":"object","title":"403","properties":{"description":{"x-samplevalue":"Forbidden - Access to the resource by the provider is forbidden","type":"string"}}},"swagger404":{"x-has-customfields":false,"type":"object","title":"404","properties":{"description":{"x-samplevalue":"Not found - The requested resource is not found","type":"string"}}},"swagger405":{"x-has-customfields":false,"type":"object","title":"405","properties":{"description":{"x-samplevalue":"Method not allowed - Incorrect HTTP verb used, e.g., GET used when POST expected","type":"string"}}},"listTimeCardsGetResTimeMessagesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swaggerDocs":{"x-has-customfields":false,"title":"swaggerDocs","properties":{"basePath":{"x-samplevalue":"/elements/api-v2/hubs/crm","type":"string"},"paths":{"$ref":"#/definitions/swaggerpaths"},"host":{"x-samplevalue":"localhost:5050","type":"string"},"schemes":{"x-samplevalue":["http"],"type":"array","items":{"type":"string"}},"definitions":{"$ref":"#/definitions/swaggerdefinitions"},"swagger":{"x-samplevalue":"2.0","type":"string"},"info":{"$ref":"#/definitions/swaggerinfo"},"tags":{"type":"array","items":{"$ref":"#/definitions/swaggertags"}}},"type":"object"},"listEmployeeGetResRolesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swaggercontact":{"x-has-customfields":false,"type":"object","title":"contact","properties":{"email":{"x-samplevalue":"support@cloud-elements.com","type":"string"}}},"listTimeCardsGetResTimeMessagesTimeMessageTokens":{"properties":{"links":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeMessagesTimeMessageTokensLinks"},"type":"array"},"messageId":{"format":"int32","type":"integer","x-samplevalue":0},"messageTokenId":{"format":"int32","type":"integer","x-samplevalue":0},"tokenName":{"type":"string","x-samplevalue":"string"},"tokenValue":{"type":"string","x-samplevalue":"string"}},"title":"timeMessageTokens","type":"object"},"swagger406":{"x-has-customfields":false,"type":"object","title":"406","properties":{"description":{"x-samplevalue":"Not acceptable - The response content type does not match the 'Accept' header value","type":"string"}}},"listTimeCardsGetResLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swaggerdefinition-property":{"x-has-customfields":false,"type":"object","title":"#/definitions/definition-property","properties":{"type":{"x-samplevalue":"string","type":"string"}}},"Object":{"description":"Fields for the object. There will be fields associated with an Object, which are not all described here.","properties":{"objectField":{"type":"string"}},"type":"object"},"swagger409":{"x-has-customfields":false,"type":"object","title":"409","properties":{"description":{"x-samplevalue":"Conflict - If a resource being created already exists","type":"string"}}},"employeesRolesGetRes":{"properties":{"CreationDate":{"description":"Date and time of creation of the employee role record.","format":"date-time","type":"string"},"EndDate":{"description":"End date of the role.","format":"date","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee role record.","format":"date-time","type":"string"},"RoleCommonName":{"description":"Short name of the role.","maxLength":4000,"type":"string"},"RoleGUID":{"description":"Globally unique identifer for the role record in Oracle Cloud. Valid values are defined in the list RoleGUIDLOV.","maxLength":64,"type":"string"},"RoleName":{"description":"Name of the role.","maxLength":4000,"type":"string"},"StartDate":{"description":"Start date of the role.","format":"date","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for role.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: RoleGUID; Target Attribute: RoleGuid</li><li>Display Attribute: RoleName</li><li>Display Attribute: RoleCommonName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/roles/{RoleGUID}/lov/RoleGUIDLOV?fields=RoleGuid,RoleName,RoleCommonName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["RoleGUID"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"RoleCommonName":{"description":"Short name for the role.","type":"string"},"RoleGuid":{"description":"Globally unique identifer for the role record in Oracle Fusion.","type":"string"},"RoleName":{"description":"Name for the role.","type":"string"}},"type":"object"},"title":"RoleGUID LOV"}]},"Pong":{"properties":{"dateTime":{"format":"date-time","type":"string"},"endpoint":{"type":"string"},"valid":{"type":"boolean"}},"type":"object"},"employeesPatchReq":{"properties":{"AddressLine1":{"description":"First line of the primary mailing address.","maxLength":240,"title":"Address Line 1","type":"string"},"AddressLine2":{"description":"Second line of the primary mailing address.","maxLength":240,"title":"Address Line 2","type":"string"},"AddressLine3":{"description":"Third line of the primary mailing address.","maxLength":240,"title":"Address Line 3","type":"string"},"CitizenshipId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"CitizenshipLegislationCode":{"description":"Legislation code derived from the legal entity. Valid values are defined in the list CitizenshipLegislationCodeLOV.","maxLength":30,"title":"Citizenship","type":"string"},"CitizenshipStatus":{"description":"Status of the person's citizenship. Valid values are defined in the list CitizenshipStatusLOV.","maxLength":30,"title":"Citizenship Status","type":"string"},"CitizenshipToDate":{"description":"End date of citizenship.","format":"date","title":"To Date","type":"string"},"City":{"description":"Town or city in which the address is located.","maxLength":30,"title":"Town or City","type":"string"},"CorrespondenceLanguage":{"description":"Preferred language for communication. Valid values are defined in the list CorrespondenceLanguageLOV.","maxLength":30,"title":"Correspondence Language","type":"string"},"Country":{"description":"Country in which the address is located.","maxLength":60,"title":"Country","type":"string"},"CreationDate":{"description":"Date and time of creation of the employee record.","format":"date-time","type":"string"},"DateOfBirth":{"description":"Date of birth of the person.","format":"date","title":"Date of Birth","type":"string"},"DisplayName":{"description":"Person's display name.","maxLength":240,"title":"Name","type":"string"},"DriversLicenseExpirationDate":{"description":"Expiration date of the driver's license.","format":"date","title":"To Date","type":"string"},"DriversLicenseId":{"description":"System-generated primary key. Surrogate key.","format":"int64","type":"integer"},"DriversLicenseIssuingCountry":{"description":"Country that issued the driver's license.","maxLength":30,"title":"Issuing Country","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee is effective.","format":"date","title":"Effective Start Date","type":"string"},"Ethnicity":{"description":"Person's ethnicity for the legislation code. Valid values are defined in the list EthnicityLOV.","maxLength":30,"title":"Ethnicity","type":"string"},"FirstName":{"description":"Person's first name.","maxLength":150,"title":"First Name","type":"string"},"Gender":{"description":"Person's gender. Valid values are defined in the list GenderLOV.","maxLength":30,"title":"Gender","type":"string"},"HireDate":{"description":"Hire date of the employee.","format":"date","type":"string"},"HomeFaxAreaCode":{"description":"Area code of the phone number for the home fax machine.","maxLength":30,"title":"Area Code","type":"string"},"HomeFaxCountryCode":{"description":"Country code of the phone number for the home fax machine.","maxLength":30,"title":"Country Code","type":"string"},"HomeFaxExtension":{"description":"Extension of the phone number for the home fax machine.","maxLength":60,"title":"Extension","type":"string"},"HomeFaxLegislationCode":{"description":"Legislation code of the home fax number.","maxLength":4,"title":"Country Code","type":"string"},"HomeFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"HomePhoneAreaCode":{"description":"Area code of the home phone number.","maxLength":30,"title":"Area Code","type":"string"},"HomePhoneCountryCode":{"description":"Country code of the home phone number.","maxLength":30,"title":"Country Code","type":"string"},"HomePhoneExtension":{"description":"Extension of the home phone number.","maxLength":60,"title":"Extension","type":"string"},"HomePhoneLegislationCode":{"description":"Legislation code of the home phone number.","maxLength":4,"title":"Country Code","type":"string"},"HomePhoneNumber":{"description":"Home phone number.","maxLength":60,"title":"Number","type":"string"},"Honors":{"description":"Higher qualification appended to a person's name. For example, PhD.","maxLength":80,"title":"Honors","type":"string"},"LastName":{"description":"Person's last name.","maxLength":150,"title":"Last Name","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee record.","format":"date-time","type":"string"},"LegalEntityId":{"description":"Unique identifier for the legal entity. Valid values are defined in the list LegalEmployerLOV.","format":"int64","type":"integer"},"LicenseNumber":{"description":"Person's driving license number.","maxLength":150,"title":"License Number","type":"string"},"MaritalStatus":{"description":"Person's marital status. Valid values are defined in the list MaritalStatusLOV.","maxLength":30,"title":"Marital Status","type":"string"},"MiddleName":{"description":"Person's middle name.","maxLength":80,"title":"Middle Names","type":"string"},"MilitaryVetStatus":{"description":"Indicates whether the person is on military service. Valid values are defined in the listt MilitaryVetStatusLOV.","maxLength":30,"type":"string"},"NameSuffix":{"description":"Part of the name appended to a person's last name such as Jr., III, etc.","maxLength":80,"title":"Suffix","type":"string"},"NationalId":{"description":"Primary key generated by the application.","maxLength":30,"title":"National ID","type":"string"},"NationalIdCountry":{"description":"Country of nationality.","maxLength":30,"title":"Place of Issue","type":"string"},"NationalIdExpirationDate":{"description":"Expiration date of the national identifier.","format":"date","title":"Expiration Date","type":"string"},"NationalIdType":{"description":"Type of national identifier. Valid values are defined in the list NationalIdTypeLOV.","maxLength":30,"title":"National ID Type","type":"string"},"PassportExpirationDate":{"description":"Expiration date of the passport.","format":"date","title":"Expiration Date","type":"string"},"PassportId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"PassportIssueDate":{"description":"Date of issue of passport.","format":"date","title":"Issue Date","type":"string"},"PassportIssuingCountry":{"description":"Country that issued the passport.","maxLength":30,"title":"Issuing Country","type":"string"},"PassportNumber":{"description":"Person's passport number.","maxLength":30,"title":"Number","type":"string"},"PersonId":{"description":"Internal identifier for the person.","format":"int64","title":"Person ID","type":"integer"},"PersonNumber":{"description":"Number assigned to a person to identify the person uniquely. Does not depend on the person type (employee, contingent worker, etc). Search on this attribute is not case sensitive.","maxLength":30,"title":"Person Number","type":"string"},"PostalCode":{"description":"Postal code of the address.","maxLength":30,"title":"Postal Code","type":"string"},"PreferredName":{"description":"Person's preferred first name.","maxLength":80,"title":"Known As","type":"string"},"PreviousLastName":{"description":"Previous last name of the person, if any.","maxLength":150,"title":"Previous Last Name","type":"string"},"ProjectedTerminationDate":{"description":"Projected termination date for the worker.","format":"date","type":"string"},"Region":{"description":"Primary region in which the address is located.","maxLength":120,"title":"Region 1","type":"string"},"Region2":{"description":"Secondary region within the primary region.","maxLength":120,"title":"Region 2","type":"string"},"Religion":{"description":"Person's religion. Valid values are defined in the list ReligionLOV.","maxLength":30,"title":"Religion","type":"string"},"ReligionId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"Salutation":{"description":"Person salutation such as Mr., Ms., and so on. Valid values are defined in the list SalutationLOV.","maxLength":30,"title":"Title","type":"string"},"TerminationDate":{"description":"Termination date of the employee.","format":"date","type":"string"},"UserName":{"description":"User name for the record. This value is optional and is automatically generated if not specified. Also works with UsernameMatching attribute. Search on this attribute is not case sensitive.","maxLength":100,"type":"string"},"WorkEmail":{"description":"Person's work email address. Search on this attribute is not case sensitive.","maxLength":240,"title":"Email","type":"string"},"WorkFaxAreaCode":{"description":"Area code of the phone number for the work fax machine.","maxLength":30,"title":"Area Code","type":"string"},"WorkFaxCountryCode":{"description":"Country code of the phone number for the work fax machine.","maxLength":30,"title":"Country Code","type":"string"},"WorkFaxExtension":{"description":"Extension of the phone number for the work fax machine.","maxLength":60,"title":"Extension","type":"string"},"WorkFaxLegislationCode":{"description":"Legislation code of the work fax number.","maxLength":4,"title":"Country Code","type":"string"},"WorkFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"WorkMobilePhoneAreaCode":{"description":"Area code of the work mobile phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkMobilePhoneCountryCode":{"description":"Country code of the work mobile phone number.","maxLength":30,"title":"Country Code","type":"string"},"WorkMobilePhoneExtension":{"description":"Extension of the work mobile phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkMobilePhoneLegislationCode":{"description":"Legislation code of the work mobile phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkMobilePhoneNumber":{"description":"Work mobile phone number.","maxLength":60,"title":"Number","type":"string"},"WorkPhoneAreaCode":{"description":"Area code of the work phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkPhoneCountryCode":{"description":"Country code of the work phone number. For example, 39 for Italy.","maxLength":30,"title":"Country Code","type":"string"},"WorkPhoneExtension":{"description":"Extension of the work phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkPhoneLegislationCode":{"description":"Legislation code of the work phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkPhoneNumber":{"description":"Work phone number.","maxLength":60,"title":"Number","type":"string"},"WorkerType":{"description":"Primary type of a worker such as employee (E), contingent worker (C), pending worker (P), or non-worker (N). This is a read-only attribute as indicated in the describe metadata.","maxLength":30,"type":"string"},"assignments":{"description":"The assignments resource is a child of the emps resource. It includes all employee assignments as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-item"},"title":"Assignments","type":"array"},"directReports":{"description":"The directReports resource is a child of the emps resource. It includes all employee direct reports as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-directReports-item"},"title":"Direct Reports","type":"array"},"employeeUniqId":{"description":"Employee Uniq Id","maxLength":500,"title":"Employee Unique Id","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"personDFF":{"description":"The personDFF resource is a child of the emps resource. It includes all employee descriptive flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personDFF-item"},"title":"Person Descriptive Flexfields","type":"array"},"personExtraInformation":{"description":"The personExtraInformation resource is a child of the emps resource. It includes all the extensible flexfields for additional person information as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personExtraInformation-item"},"title":"Person Extra Information Extensible FlexFields","type":"array"},"photo":{"description":"The photo resource is a child of the emps resource. It includes all employee primary photos as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-photo-item"},"title":"Photos","type":"array"},"roles":{"description":"The roles resource is a child of the emps resource. It includes all employee roles as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-roles-item"},"title":"Roles","type":"array"},"visas":{"description":"The visas resource is a child of the emps resource. It includes all employee visas as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-visas-item"},"title":"Visas","type":"array"}},"type":"object","x-links":[{"description":"The list of values for person salutation.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Salutation; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/SalutationLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Salutation"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Salutation LOV"},{"description":"The list of values for the preferred language of communication.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CorrespondenceLanguage; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CorrespondenceLanguageLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CorrespondenceLanguage"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CorrespondenceLanguage LOV"},{"description":"The list of values for person ethnicity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Ethnicity; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/EthnicityLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Ethnicity"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Ethnicity LOV"},{"description":"The list of values for legal entities.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: LegalEntityId; Target Attribute: OrganizationId</li><li>Display Attribute: OrganizationId</li><li>Display Attribute: LegalEntityId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/LegalEmployerLOV?fields=OrganizationId,LegalEntityId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["LegalEntityId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LegalEntityId":{"description":"Unique identifier for the legal entity.","type":"integer"},"Name":{"description":"Name of the legal entity.","type":"string"},"OrganizationId":{"description":"Unique identifier for the organization.","type":"integer"}},"type":"object"},"title":"LegalEntityId LOV"},{"description":"The list of values for gender such as MALE or FEMALE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Gender; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/GenderLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Gender"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Gender LOV"},{"description":"The list of values for marital status, such as MARRIED or SINGLE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MaritalStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MaritalStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MaritalStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MaritalStatus LOV"},{"description":"The list of values for national identifiers.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: NationalIdType; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/NationalIdTypeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["NationalIdType"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"NationalIdType LOV"},{"description":"The list of values for citizenship status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipStatus LOV"},{"description":"The list of values for the legislation code derived from the legal entity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipLegislationCode; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipLegislationCodeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipLegislationCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipLegislationCode LOV"},{"description":"The list of values for religion.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Religion; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/ReligionLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Religion"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Religion LOV"},{"description":"The list of values for military service status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MilitaryVetStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MilitaryVetStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MilitaryVetStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MilitaryVetStatus LOV"}]},"employeesPatchRes":{"properties":{"AddressLine1":{"description":"First line of the primary mailing address.","maxLength":240,"title":"Address Line 1","type":"string"},"AddressLine2":{"description":"Second line of the primary mailing address.","maxLength":240,"title":"Address Line 2","type":"string"},"AddressLine3":{"description":"Third line of the primary mailing address.","maxLength":240,"title":"Address Line 3","type":"string"},"CitizenshipId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"CitizenshipLegislationCode":{"description":"Legislation code derived from the legal entity. Valid values are defined in the list CitizenshipLegislationCodeLOV.","maxLength":30,"title":"Citizenship","type":"string"},"CitizenshipStatus":{"description":"Status of the person's citizenship. Valid values are defined in the list CitizenshipStatusLOV.","maxLength":30,"title":"Citizenship Status","type":"string"},"CitizenshipToDate":{"description":"End date of citizenship.","format":"date","title":"To Date","type":"string"},"City":{"description":"Town or city in which the address is located.","maxLength":30,"title":"Town or City","type":"string"},"CorrespondenceLanguage":{"description":"Preferred language for communication. Valid values are defined in the list CorrespondenceLanguageLOV.","maxLength":30,"title":"Correspondence Language","type":"string"},"Country":{"description":"Country in which the address is located.","maxLength":60,"title":"Country","type":"string"},"CreationDate":{"description":"Date and time of creation of the employee record.","format":"date-time","type":"string"},"DateOfBirth":{"description":"Date of birth of the person.","format":"date","title":"Date of Birth","type":"string"},"DisplayName":{"description":"Person's display name.","maxLength":240,"title":"Name","type":"string"},"DriversLicenseExpirationDate":{"description":"Expiration date of the driver's license.","format":"date","title":"To Date","type":"string"},"DriversLicenseId":{"description":"System-generated primary key. Surrogate key.","format":"int64","type":"integer"},"DriversLicenseIssuingCountry":{"description":"Country that issued the driver's license.","maxLength":30,"title":"Issuing Country","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee is effective.","format":"date","title":"Effective Start Date","type":"string"},"Ethnicity":{"description":"Person's ethnicity for the legislation code. Valid values are defined in the list EthnicityLOV.","maxLength":30,"title":"Ethnicity","type":"string"},"FirstName":{"description":"Person's first name.","maxLength":150,"title":"First Name","type":"string"},"Gender":{"description":"Person's gender. Valid values are defined in the list GenderLOV.","maxLength":30,"title":"Gender","type":"string"},"HireDate":{"description":"Hire date of the employee.","format":"date","type":"string"},"HomeFaxAreaCode":{"description":"Area code of the phone number for the home fax machine.","maxLength":30,"title":"Area Code","type":"string"},"HomeFaxCountryCode":{"description":"Country code of the phone number for the home fax machine.","maxLength":30,"title":"Country Code","type":"string"},"HomeFaxExtension":{"description":"Extension of the phone number for the home fax machine.","maxLength":60,"title":"Extension","type":"string"},"HomeFaxLegislationCode":{"description":"Legislation code of the home fax number.","maxLength":4,"title":"Country Code","type":"string"},"HomeFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"HomePhoneAreaCode":{"description":"Area code of the home phone number.","maxLength":30,"title":"Area Code","type":"string"},"HomePhoneCountryCode":{"description":"Country code of the home phone number.","maxLength":30,"title":"Country Code","type":"string"},"HomePhoneExtension":{"description":"Extension of the home phone number.","maxLength":60,"title":"Extension","type":"string"},"HomePhoneLegislationCode":{"description":"Legislation code of the home phone number.","maxLength":4,"title":"Country Code","type":"string"},"HomePhoneNumber":{"description":"Home phone number.","maxLength":60,"title":"Number","type":"string"},"Honors":{"description":"Higher qualification appended to a person's name. For example, PhD.","maxLength":80,"title":"Honors","type":"string"},"LastName":{"description":"Person's last name.","maxLength":150,"title":"Last Name","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee record.","format":"date-time","type":"string"},"LegalEntityId":{"description":"Unique identifier for the legal entity. Valid values are defined in the list LegalEmployerLOV.","format":"int64","type":"integer"},"LicenseNumber":{"description":"Person's driving license number.","maxLength":150,"title":"License Number","type":"string"},"MaritalStatus":{"description":"Person's marital status. Valid values are defined in the list MaritalStatusLOV.","maxLength":30,"title":"Marital Status","type":"string"},"MiddleName":{"description":"Person's middle name.","maxLength":80,"title":"Middle Names","type":"string"},"MilitaryVetStatus":{"description":"Indicates whether the person is on military service. Valid values are defined in the listt MilitaryVetStatusLOV.","maxLength":30,"type":"string"},"NameSuffix":{"description":"Part of the name appended to a person's last name such as Jr., III, etc.","maxLength":80,"title":"Suffix","type":"string"},"NationalId":{"description":"Primary key generated by the application.","maxLength":30,"title":"National ID","type":"string"},"NationalIdCountry":{"description":"Country of nationality.","maxLength":30,"title":"Place of Issue","type":"string"},"NationalIdExpirationDate":{"description":"Expiration date of the national identifier.","format":"date","title":"Expiration Date","type":"string"},"NationalIdType":{"description":"Type of national identifier. Valid values are defined in the list NationalIdTypeLOV.","maxLength":30,"title":"National ID Type","type":"string"},"PassportExpirationDate":{"description":"Expiration date of the passport.","format":"date","title":"Expiration Date","type":"string"},"PassportId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"PassportIssueDate":{"description":"Date of issue of passport.","format":"date","title":"Issue Date","type":"string"},"PassportIssuingCountry":{"description":"Country that issued the passport.","maxLength":30,"title":"Issuing Country","type":"string"},"PassportNumber":{"description":"Person's passport number.","maxLength":30,"title":"Number","type":"string"},"PersonId":{"description":"Internal identifier for the person.","format":"int64","title":"Person ID","type":"integer"},"PersonNumber":{"description":"Number assigned to a person to identify the person uniquely. Does not depend on the person type (employee, contingent worker, etc). Search on this attribute is not case sensitive.","maxLength":30,"title":"Person Number","type":"string"},"PostalCode":{"description":"Postal code of the address.","maxLength":30,"title":"Postal Code","type":"string"},"PreferredName":{"description":"Person's preferred first name.","maxLength":80,"title":"Known As","type":"string"},"PreviousLastName":{"description":"Previous last name of the person, if any.","maxLength":150,"title":"Previous Last Name","type":"string"},"ProjectedTerminationDate":{"description":"Projected termination date for the worker.","format":"date","type":"string"},"Region":{"description":"Primary region in which the address is located.","maxLength":120,"title":"Region 1","type":"string"},"Region2":{"description":"Secondary region within the primary region.","maxLength":120,"title":"Region 2","type":"string"},"Religion":{"description":"Person's religion. Valid values are defined in the list ReligionLOV.","maxLength":30,"title":"Religion","type":"string"},"ReligionId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"Salutation":{"description":"Person salutation such as Mr., Ms., and so on. Valid values are defined in the list SalutationLOV.","maxLength":30,"title":"Title","type":"string"},"TerminationDate":{"description":"Termination date of the employee.","format":"date","type":"string"},"UserName":{"description":"User name for the record. This value is optional and is automatically generated if not specified. Also works with UsernameMatching attribute. Search on this attribute is not case sensitive.","maxLength":100,"type":"string"},"WorkEmail":{"description":"Person's work email address. Search on this attribute is not case sensitive.","maxLength":240,"title":"Email","type":"string"},"WorkFaxAreaCode":{"description":"Area code of the phone number for the work fax machine.","maxLength":30,"title":"Area Code","type":"string"},"WorkFaxCountryCode":{"description":"Country code of the phone number for the work fax machine.","maxLength":30,"title":"Country Code","type":"string"},"WorkFaxExtension":{"description":"Extension of the phone number for the work fax machine.","maxLength":60,"title":"Extension","type":"string"},"WorkFaxLegislationCode":{"description":"Legislation code of the work fax number.","maxLength":4,"title":"Country Code","type":"string"},"WorkFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"WorkMobilePhoneAreaCode":{"description":"Area code of the work mobile phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkMobilePhoneCountryCode":{"description":"Country code of the work mobile phone number.","maxLength":30,"title":"Country Code","type":"string"},"WorkMobilePhoneExtension":{"description":"Extension of the work mobile phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkMobilePhoneLegislationCode":{"description":"Legislation code of the work mobile phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkMobilePhoneNumber":{"description":"Work mobile phone number.","maxLength":60,"title":"Number","type":"string"},"WorkPhoneAreaCode":{"description":"Area code of the work phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkPhoneCountryCode":{"description":"Country code of the work phone number. For example, 39 for Italy.","maxLength":30,"title":"Country Code","type":"string"},"WorkPhoneExtension":{"description":"Extension of the work phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkPhoneLegislationCode":{"description":"Legislation code of the work phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkPhoneNumber":{"description":"Work phone number.","maxLength":60,"title":"Number","type":"string"},"WorkerType":{"description":"Primary type of a worker such as employee (E), contingent worker (C), pending worker (P), or non-worker (N). This is a read-only attribute as indicated in the describe metadata.","maxLength":30,"type":"string"},"assignments":{"description":"The assignments resource is a child of the emps resource. It includes all employee assignments as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-item"},"title":"Assignments","type":"array"},"directReports":{"description":"The directReports resource is a child of the emps resource. It includes all employee direct reports as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-directReports-item"},"title":"Direct Reports","type":"array"},"employeeUniqId":{"description":"Employee Uniq Id","maxLength":500,"title":"Employee Unique Id","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"personDFF":{"description":"The personDFF resource is a child of the emps resource. It includes all employee descriptive flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personDFF-item"},"title":"Person Descriptive Flexfields","type":"array"},"personExtraInformation":{"description":"The personExtraInformation resource is a child of the emps resource. It includes all the extensible flexfields for additional person information as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personExtraInformation-item"},"title":"Person Extra Information Extensible FlexFields","type":"array"},"photo":{"description":"The photo resource is a child of the emps resource. It includes all employee primary photos as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-photo-item"},"title":"Photos","type":"array"},"roles":{"description":"The roles resource is a child of the emps resource. It includes all employee roles as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-roles-item"},"title":"Roles","type":"array"},"visas":{"description":"The visas resource is a child of the emps resource. It includes all employee visas as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-visas-item"},"title":"Visas","type":"array"}},"type":"object","x-links":[{"description":"The list of values for person salutation.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Salutation; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/SalutationLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Salutation"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Salutation LOV"},{"description":"The list of values for the preferred language of communication.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CorrespondenceLanguage; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CorrespondenceLanguageLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CorrespondenceLanguage"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CorrespondenceLanguage LOV"},{"description":"The list of values for person ethnicity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Ethnicity; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/EthnicityLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Ethnicity"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Ethnicity LOV"},{"description":"The list of values for legal entities.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: LegalEntityId; Target Attribute: OrganizationId</li><li>Display Attribute: OrganizationId</li><li>Display Attribute: LegalEntityId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/LegalEmployerLOV?fields=OrganizationId,LegalEntityId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["LegalEntityId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LegalEntityId":{"description":"Unique identifier for the legal entity.","type":"integer"},"Name":{"description":"Name of the legal entity.","type":"string"},"OrganizationId":{"description":"Unique identifier for the organization.","type":"integer"}},"type":"object"},"title":"LegalEntityId LOV"},{"description":"The list of values for gender such as MALE or FEMALE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Gender; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/GenderLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Gender"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Gender LOV"},{"description":"The list of values for marital status, such as MARRIED or SINGLE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MaritalStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MaritalStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MaritalStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MaritalStatus LOV"},{"description":"The list of values for national identifiers.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: NationalIdType; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/NationalIdTypeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["NationalIdType"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"NationalIdType LOV"},{"description":"The list of values for citizenship status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipStatus LOV"},{"description":"The list of values for the legislation code derived from the legal entity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipLegislationCode; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipLegislationCodeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipLegislationCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipLegislationCode LOV"},{"description":"The list of values for religion.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Religion; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/ReligionLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Religion"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Religion LOV"},{"description":"The list of values for military service status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MilitaryVetStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MilitaryVetStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MilitaryVetStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MilitaryVetStatus LOV"}]},"BulkQuery":{"properties":{"id":{"type":"string"},"status":{"type":"string"},"instance_id":{"type":"number"}},"type":"object"},"positionsGetResLegislativeExtraInformation":{"properties":{"CategoryCode":{"type":"string","x-samplevalue":"string"},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/positionsGetResLegislativeExtraInformationLinks"},"type":"array"}},"title":"legislativeExtraInformation","type":"object"},"listEmployeeGetResAssignmentsLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"jobs-validGrades-item":{"properties":{"EffectiveEndDate":{"description":"Date at the end of the date range within which the grade is effective.","format":"date","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the grade is effective.","format":"date","type":"string"},"GradeId":{"description":"Identifier for the grade.","format":"int64","type":"integer"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object"},"listEmployeeGetResAssignmentsAssignmentDFF":{"properties":{"AssignmentId":{"format":"int32","type":"integer","x-samplevalue":0},"AssignmentType":{"type":"string","x-samplevalue":"string"},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"EffectiveLatestChange":{"type":"string","x-samplevalue":"string"},"EffectiveSequence":{"format":"int32","type":"integer","x-samplevalue":0},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"_FLEX_NumOfSegments":{"format":"int32","type":"integer","x-samplevalue":0},"__FLEX_Context":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsAssignmentDFFLinks"},"type":"array"}},"title":"assignmentDFF","type":"object"},"timeEventRequests-timeEvents-timeEventAttributes-item":{"properties":{"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"name":{"description":"Name of the attribute associated with the time event, such as Payroll Time Type.","maxLength":240,"type":"string"},"timeEventAttributeId":{"description":"A qualifier associated with the time event that reflects how the time is paid, costed, billed, or recorded as an information entry. For example, the payroll time type attribute indicates whether time for payroll consumers should be paid.","format":"int64","type":"integer"},"timeEventId":{"description":"Unique identifier for the IN or OUT time event that the time reporter records on a time collection device.","format":"int64","type":"integer"},"value":{"description":"Value of the attribute associated with the time event. For example, Regular is a value for the Payroll Time Type time attribute.","maxLength":150,"type":"string"}},"type":"object"},"positionsGetResExtraInformationLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listTimeCardsGetResTimeAttributesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listTimeCardsGetResTimeStatuses":{"properties":{"displayValue":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeStatusesLinks"},"type":"array"},"statusCode":{"type":"string","x-samplevalue":"string"},"statusId":{"format":"int32","type":"integer","x-samplevalue":0},"statusName":{"type":"string","x-samplevalue":"string"},"statusValue":{"type":"string","x-samplevalue":"string"},"timeBuildingBlockId":{"format":"int32","type":"integer","x-samplevalue":0},"timeBuildingBlockVersion":{"format":"int32","type":"integer","x-samplevalue":0}},"title":"timeStatuses","type":"object"},"listEmployeeGetResObject":{"properties":{"AddressLine1":{"type":"string","x-samplevalue":"string"},"AddressLine2":{"type":"string","x-samplevalue":"string"},"AddressLine3":{"type":"string","x-samplevalue":"string"},"CitizenshipId":{"format":"int32","type":"integer","x-samplevalue":0},"CitizenshipLegislationCode":{"type":"string","x-samplevalue":"string"},"CitizenshipStatus":{"type":"string","x-samplevalue":"string"},"CitizenshipToDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"City":{"type":"string","x-samplevalue":"string"},"CorrespondenceLanguage":{"type":"string","x-samplevalue":"string"},"Country":{"type":"string","x-samplevalue":"string"},"CreationDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.099Z"},"DateOfBirth":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"DisplayName":{"type":"string","x-samplevalue":"string"},"DriversLicenseExpirationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"DriversLicenseId":{"format":"int32","type":"integer","x-samplevalue":0},"DriversLicenseIssuingCountry":{"type":"string","x-samplevalue":"string"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"Ethnicity":{"type":"string","x-samplevalue":"string"},"FirstName":{"type":"string","x-samplevalue":"string"},"Gender":{"type":"string","x-samplevalue":"string"},"HireDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"HomeFaxAreaCode":{"type":"string","x-samplevalue":"string"},"HomeFaxCountryCode":{"type":"string","x-samplevalue":"string"},"HomeFaxExtension":{"type":"string","x-samplevalue":"string"},"HomeFaxLegislationCode":{"type":"string","x-samplevalue":"string"},"HomeFaxNumber":{"type":"string","x-samplevalue":"string"},"HomePhoneAreaCode":{"type":"string","x-samplevalue":"string"},"HomePhoneCountryCode":{"type":"string","x-samplevalue":"string"},"HomePhoneExtension":{"type":"string","x-samplevalue":"string"},"HomePhoneLegislationCode":{"type":"string","x-samplevalue":"string"},"HomePhoneNumber":{"type":"string","x-samplevalue":"string"},"Honors":{"type":"string","x-samplevalue":"string"},"LastName":{"type":"string","x-samplevalue":"string"},"LastUpdateDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.099Z"},"LegalEntityId":{"format":"int32","type":"integer","x-samplevalue":0},"LicenseNumber":{"type":"string","x-samplevalue":"string"},"MaritalStatus":{"type":"string","x-samplevalue":"string"},"MiddleName":{"type":"string","x-samplevalue":"string"},"MilitaryVetStatus":{"type":"string","x-samplevalue":"string"},"NameSuffix":{"type":"string","x-samplevalue":"string"},"NationalId":{"type":"string","x-samplevalue":"string"},"NationalIdCountry":{"type":"string","x-samplevalue":"string"},"NationalIdExpirationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"NationalIdType":{"type":"string","x-samplevalue":"string"},"PassportExpirationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"PassportId":{"format":"int32","type":"integer","x-samplevalue":0},"PassportIssueDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"PassportIssuingCountry":{"type":"string","x-samplevalue":"string"},"PassportNumber":{"type":"string","x-samplevalue":"string"},"PersonId":{"format":"int32","type":"integer","x-samplevalue":0},"PersonNumber":{"type":"string","x-samplevalue":"string"},"PostalCode":{"type":"string","x-samplevalue":"string"},"PreferredName":{"type":"string","x-samplevalue":"string"},"PreviousLastName":{"type":"string","x-samplevalue":"string"},"ProjectedTerminationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"Region":{"type":"string","x-samplevalue":"string"},"Region2":{"type":"string","x-samplevalue":"string"},"Religion":{"type":"string","x-samplevalue":"string"},"ReligionId":{"format":"int32","type":"integer","x-samplevalue":0},"Salutation":{"type":"string","x-samplevalue":"string"},"TerminationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"UserName":{"type":"string","x-samplevalue":"string"},"WorkEmail":{"type":"string","x-samplevalue":"string"},"WorkFaxAreaCode":{"type":"string","x-samplevalue":"string"},"WorkFaxCountryCode":{"type":"string","x-samplevalue":"string"},"WorkFaxExtension":{"type":"string","x-samplevalue":"string"},"WorkFaxLegislationCode":{"type":"string","x-samplevalue":"string"},"WorkFaxNumber":{"type":"string","x-samplevalue":"string"},"WorkMobilePhoneAreaCode":{"type":"string","x-samplevalue":"string"},"WorkMobilePhoneCountryCode":{"type":"string","x-samplevalue":"string"},"WorkMobilePhoneExtension":{"type":"string","x-samplevalue":"string"},"WorkMobilePhoneLegislationCode":{"type":"string","x-samplevalue":"string"},"WorkMobilePhoneNumber":{"type":"string","x-samplevalue":"string"},"WorkPhoneAreaCode":{"type":"string","x-samplevalue":"string"},"WorkPhoneCountryCode":{"type":"string","x-samplevalue":"string"},"WorkPhoneExtension":{"type":"string","x-samplevalue":"string"},"WorkPhoneLegislationCode":{"type":"string","x-samplevalue":"string"},"WorkPhoneNumber":{"type":"string","x-samplevalue":"string"},"WorkerType":{"type":"string","x-samplevalue":"string"},"assignments":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignments"},"type":"array"},"directReports":{"items":{"$ref":"#/definitions/listEmployeeGetResDirectReports"},"type":"array"},"id":{"type":"string","x-samplevalue":"abcd12345efghi"},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResLinks"},"type":"array"},"personDFF":{"items":{"$ref":"#/definitions/listEmployeeGetResPersonDFF"},"type":"array"},"personExtraInformation":{"items":{"$ref":"#/definitions/listEmployeeGetResPersonExtraInformation"},"type":"array"},"photo":{"items":{"$ref":"#/definitions/listEmployeeGetResPhoto"},"type":"array"},"roles":{"items":{"$ref":"#/definitions/listEmployeeGetResRoles"},"type":"array"},"visas":{"items":{"$ref":"#/definitions/listEmployeeGetResVisas"},"type":"array"}},"title":"listEmployeeGetRes","type":"object"},"objectNamePatchReq":{"properties":{"objectField":{"type":"string","x-samplevalue":"string"}},"title":"objectNamePatchReq","type":"object"},"listPositionsGetResPositionCustomerFlexLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"timeCardsGetResp":{"properties":{"assignmentNumber":{"description":"Assignment number of the person associated with the time record.","maxLength":50,"type":"string"},"comment":{"description":"Comment associated with the time record.","maxLength":1000,"type":"string"},"earnedDate":{"description":"Time entry date determined by the earned day rule configuration.","format":"date","type":"string"},"groupType":{"description":"Layer where time records are retrieved from, such as processed time or absence entry details.","maxLength":255,"type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"measure":{"description":"Quantity of the time record, either hours or units.","type":"number"},"overtimeDate":{"description":"Time entry date determined by the overtime day rule and start time configuration.","format":"date","type":"string"},"personId":{"description":"Unique identifier for the person associated with the time record.","format":"int64","type":"integer"},"personNumber":{"description":"Number of the person associated with the time record.","maxLength":30,"type":"string"},"recordType":{"description":"Type of the time record, either measure or range.","maxLength":30,"type":"string"},"timeAttributes":{"description":"The timeAttributes resource is a child of the time records resource. It is a qualifier associated with the time record that reflects how time is paid, costed, billed, or recorded as an information entry. For example, the payroll time type attribute indicates if the time for payroll consumers must be paid.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeRecords-timeAttributes-item"},"title":"Time Attributes","type":"array"},"timeMessages":{"description":"The timeMessages resource is a child of the time records resource. It is a unique identifier for the message associated with the time record. A message gives some information on the time record resulting from rules or validations.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeRecords-timeMessages-item"},"title":"Time Messages","type":"array"},"timeRecordGroupId":{"description":"Unique identifier for the time record group.","format":"int64","type":"integer"},"timeRecordGroupVersion":{"description":"Version number of the time record group stored in the Workforce Management time repository.","format":"int32","type":"integer"},"timeRecordId":{"description":"Unique identifier for the time record.","type":"number"},"timeRecordVersion":{"description":"Version number of the time record stored in the Workforce Management time repository.","format":"int32","type":"integer"},"timeStatuses":{"description":"The timeStatuses resource  is a child of the time records resource. It is a unique identifier for the status of the time record sent using the time records REST API.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeRecords-timeStatuses-item"},"title":"Time Statuses","type":"array"},"unitOfMeasure":{"description":"Unit of measure for the time record such as hours or units.","maxLength":80,"type":"string"}},"type":"object","x-primary-key":["timeRecordId"]},"swagger500":{"x-has-customfields":false,"type":"object","title":"500","properties":{"description":{"x-samplevalue":"Server error - Something went wrong on the Cloud Elements server","type":"string"}}},"swaggerpaths":{"x-has-customfields":false,"type":"object","title":"paths","properties":{"/contacts":{"$ref":"#/definitions/swagger-contacts-path"}}},"listPositionsGetResObject":{"properties":{"BudgetAmount":{"format":"int32","type":"integer","x-samplevalue":0},"BudgetAmountCurrency":{"type":"string","x-samplevalue":"string"},"BudgetedPositionFlag":{"type":"boolean","x-samplevalue":true},"BusinessUnitId":{"format":"int32","type":"integer","x-samplevalue":0},"CostCenter":{"type":"string","x-samplevalue":"string"},"CostCenterName":{"type":"string","x-samplevalue":"string"},"DelegatePositionBusinessUnitId":{"format":"int32","type":"integer","x-samplevalue":0},"DelegatePositionBusinessUnitName":{"type":"string","x-samplevalue":"string"},"DelegatePositionCode":{"type":"string","x-samplevalue":"string"},"DelegatePositionId":{"format":"int32","type":"integer","x-samplevalue":0},"DepartmentId":{"format":"int32","type":"integer","x-samplevalue":0},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EntryGradeId":{"format":"int32","type":"integer","x-samplevalue":0},"EntryStepId":{"format":"int32","type":"integer","x-samplevalue":0},"FTE":{"format":"int32","type":"integer","x-samplevalue":0},"FullPartTime":{"type":"string","x-samplevalue":"string"},"FundedByExistingPositionFlag":{"type":"boolean","x-samplevalue":true},"GradeLadderId":{"format":"int32","type":"integer","x-samplevalue":0},"HeadCount":{"format":"int32","type":"integer","x-samplevalue":0},"HiringStatus":{"type":"string","x-samplevalue":"string"},"JobId":{"format":"int32","type":"integer","x-samplevalue":0},"LocationId":{"format":"int32","type":"integer","x-samplevalue":0},"Name":{"type":"string","x-samplevalue":"string"},"OverlapAllowedFlag":{"type":"boolean","x-samplevalue":true},"PositionCode":{"type":"string","x-samplevalue":"string"},"PositionCustomerFlex":{"items":{"$ref":"#/definitions/listPositionsGetResPositionCustomerFlex"},"type":"array"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"PositionType":{"type":"string","x-samplevalue":"string"},"ProbationPeriod":{"format":"int32","type":"integer","x-samplevalue":0},"RegularTemporary":{"type":"string","x-samplevalue":"string"},"SeasonalEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"SeasonalFlag":{"type":"boolean","x-samplevalue":true},"SeasonalStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"SecurityClearance":{"type":"string","x-samplevalue":"string"},"extraInformation":{"items":{"$ref":"#/definitions/listPositionsGetResExtraInformation"},"type":"array"},"legislativeExtraInformation":{"items":{"$ref":"#/definitions/listPositionsGetResLegislativeExtraInformation"},"type":"array"},"links":{"items":{"$ref":"#/definitions/listPositionsGetResLinks"},"type":"array"},"validGrades":{"items":{"$ref":"#/definitions/listPositionsGetResValidGrades"},"type":"array"}},"title":"listPositionsGetRes","type":"object"},"swagger502":{"x-has-customfields":false,"type":"object","title":"502","properties":{"description":{"x-samplevalue":"Provider server error - Something went wrong on the Provider or Endpoint's server","type":"string"}}},"BulkStatus":{"description":"Status of the bulk upload.","type":"object","properties":{"batchId":{"description":"Contact/Leads loaded","type":"number"},"message":{"type":"string"},"numOfLeadsProcessed":{"description":"Contact/Leads loaded","type":"number"},"numOfRowsFailed":{"description":"Failed count","type":"number"},"numOfRowsWithWarning":{"description":"Contact/Leads that had warnings","type":"number"},"status":{"description":"Status of the bulk job","type":"string"}}},"listPositionsGetResExtraInformationLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listJobsGetResObject":{"properties":{"ActiveStatus":{"type":"string","x-samplevalue":"string"},"ApprovalAuthority":{"format":"int32","type":"integer","x-samplevalue":0},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"FullPartTime":{"type":"string","x-samplevalue":"string"},"GradeLadderId":{"format":"int32","type":"integer","x-samplevalue":0},"JobCode":{"type":"string","x-samplevalue":"string"},"JobCustomerFlex":{"items":{"$ref":"#/definitions/listJobsGetResJobCustomerFlex"},"type":"array"},"JobFamilyId":{"format":"int32","type":"integer","x-samplevalue":0},"JobFunctionCode":{"type":"string","x-samplevalue":"string"},"JobId":{"format":"int32","type":"integer","x-samplevalue":0},"ManagerLevel":{"type":"string","x-samplevalue":"string"},"MedicalCheckupRequired":{"type":"string","x-samplevalue":"string"},"Name":{"type":"string","x-samplevalue":"string"},"RegularTemporary":{"type":"string","x-samplevalue":"string"},"SetId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listJobsGetResLinks"},"type":"array"},"validGrades":{"items":{"$ref":"#/definitions/listJobsGetResValidGrades"},"type":"array"}},"title":"listJobsGetRes","type":"object","x-primary-key":["JobId"]},"BulkJobList":{"title":"BulkJobList","properties":{"record_count":{"x-samplevalue":41,"format":"int32","type":"integer"},"job_query":{"x-samplevalue":"SELECT attributes.organizationid, attributes.systemuserid, organizationid FROM users WHERE organizationid = '3b80f68d-b945-4208-9442-f55bd0e1c5b2'","type":"string"},"job_reset_attempt":{"x-samplevalue":0,"format":"int32","type":"integer"},"completion_time":{"x-samplevalue":1542829827804,"format":"int64","type":"integer"},"status":{"x-samplevalue":"COMPLETED","type":"string"},"notification_url":{"type":"string"},"job_direction":{"x-samplevalue":"DOWNLOAD","type":"string"},"error_count":{"x-samplevalue":0,"format":"int32","type":"integer"},"job_state":{"type":"string"},"createdDate":{"x-samplevalue":1542829826619,"format":"int64","type":"integer"},"id":{"x-samplevalue":1722,"format":"int32","type":"integer"},"instanceId":{"x-samplevalue":123453,"format":"int32","type":"integer"},"object_name":{"x-samplevalue":"systemuser","type":"string"},"fileFormat":{"x-samplevalue":"csv","type":"string"}},"type":"object"},"objectsMetadataFields":{"properties":{"mask":{"type":"string"},"type":{"type":"string"},"vendorDisplayName":{"type":"string"},"vendorPath":{"type":"string"},"vendorReadOnly":{"type":"boolean"},"vendorRequired":{"type":"boolean"}},"type":"object"},"employeesRolesPostReq":{"properties":{"CreationDate":{"description":"Date and time of creation of the employee role record.","format":"date-time","type":"string"},"EndDate":{"description":"End date of the role.","format":"date","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee role record.","format":"date-time","type":"string"},"RoleCommonName":{"description":"Short name of the role.","maxLength":4000,"type":"string"},"RoleGUID":{"description":"Globally unique identifer for the role record in Oracle Cloud. Valid values are defined in the list RoleGUIDLOV.","maxLength":64,"type":"string"},"RoleName":{"description":"Name of the role.","maxLength":4000,"type":"string"},"StartDate":{"description":"Start date of the role.","format":"date","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for role.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: RoleGUID; Target Attribute: RoleGuid</li><li>Display Attribute: RoleName</li><li>Display Attribute: RoleCommonName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/roles/{RoleGUID}/lov/RoleGUIDLOV?fields=RoleGuid,RoleName,RoleCommonName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["RoleGUID"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"RoleCommonName":{"description":"Short name for the role.","type":"string"},"RoleGuid":{"description":"Globally unique identifer for the role record in Oracle Fusion.","type":"string"},"RoleName":{"description":"Name for the role.","type":"string"}},"type":"object"},"title":"RoleGUID LOV"}]},"objectNamePostReq":{"properties":{"objectField":{"type":"string","x-samplevalue":"string"}},"title":"objectNamePostReq","type":"object"},"listEmployeeGetResAssignmentsAssignmentExtraInformationLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listEmployeeGetResAssignments":{"properties":{"ActionCode":{"type":"string","x-samplevalue":"string"},"ActionReasonCode":{"type":"string","x-samplevalue":"string"},"ActualTerminationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"AssignmentCategory":{"type":"string","x-samplevalue":"string"},"AssignmentId":{"format":"int32","type":"integer","x-samplevalue":0},"AssignmentName":{"type":"string","x-samplevalue":"string"},"AssignmentNumber":{"type":"string","x-samplevalue":"string"},"AssignmentProjectedEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"AssignmentStatus":{"type":"string","x-samplevalue":"string"},"AssignmentStatusTypeId":{"format":"int32","type":"integer","x-samplevalue":0},"BusinessUnitId":{"format":"int32","type":"integer","x-samplevalue":0},"CreationDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.099Z"},"DefaultExpenseAccount":{"type":"string","x-samplevalue":"string"},"DepartmentId":{"format":"int32","type":"integer","x-samplevalue":0},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"EndTime":{"type":"string","x-samplevalue":"string"},"Frequency":{"type":"string","x-samplevalue":"string"},"FullPartTime":{"type":"string","x-samplevalue":"string"},"GradeId":{"format":"int32","type":"integer","x-samplevalue":0},"GradeLadderId":{"format":"int32","type":"integer","x-samplevalue":0},"JobId":{"format":"int32","type":"integer","x-samplevalue":0},"LastUpdateDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.099Z"},"LegalEntityId":{"format":"int32","type":"integer","x-samplevalue":0},"LocationId":{"format":"int32","type":"integer","x-samplevalue":0},"ManagerAssignmentId":{"format":"int32","type":"integer","x-samplevalue":0},"ManagerId":{"format":"int32","type":"integer","x-samplevalue":0},"ManagerType":{"type":"string","x-samplevalue":"string"},"OriginalHireDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"PeopleGroup":{"type":"string","x-samplevalue":"string"},"PeriodOfServiceId":{"format":"int32","type":"integer","x-samplevalue":0},"PersonTypeId":{"format":"int32","type":"integer","x-samplevalue":0},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"PrimaryAssignmentFlag":{"type":"boolean","x-samplevalue":true},"PrimaryWorkRelationFlag":{"type":"boolean","x-samplevalue":true},"PrimaryWorkTermsFlag":{"type":"boolean","x-samplevalue":true},"ProbationPeriodEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"ProbationPeriodLength":{"format":"int32","type":"integer","x-samplevalue":0},"ProbationPeriodUnitOfMeasure":{"type":"string","x-samplevalue":"string"},"ProjectedStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"ProposedPersonTypeId":{"type":"string","x-samplevalue":"string"},"RegularTemporary":{"type":"string","x-samplevalue":"string"},"SalaryAmount":{"format":"int32","type":"integer","x-samplevalue":0},"SalaryBasisId":{"format":"int32","type":"integer","x-samplevalue":0},"SalaryCode":{"type":"string","x-samplevalue":"string"},"StartTime":{"type":"string","x-samplevalue":"string"},"TermsEffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"WorkTaxAddressId":{"format":"int32","type":"integer","x-samplevalue":0},"WorkerCategory":{"type":"string","x-samplevalue":"string"},"WorkingAsManager":{"type":"string","x-samplevalue":"string"},"WorkingAtHome":{"type":"string","x-samplevalue":"string"},"WorkingHours":{"format":"int32","type":"integer","x-samplevalue":0},"assignmentDFF":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsAssignmentDFF"},"type":"array"},"assignmentExtraInformation":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsAssignmentExtraInformation"},"type":"array"},"empreps":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsEmpreps"},"type":"array"},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsLinks"},"type":"array"},"peopleGroupKeyFlexfield":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsPeopleGroupKeyFlexfield"},"type":"array"}},"title":"assignments","type":"object"},"listEmployeeGetResPersonExtraInformationLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listEmployeeGetResPhoto":{"properties":{"Image":{"type":"string","x-samplevalue":"string"},"ImageId":{"format":"int32","type":"integer","x-samplevalue":0},"ImageName":{"type":"string","x-samplevalue":"string"},"ObjectVersionNumber":{"format":"int32","type":"integer","x-samplevalue":0},"PersonId":{"format":"int32","type":"integer","x-samplevalue":0},"PrimaryFlag":{"type":"boolean","x-samplevalue":true},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResPhotoLinks"},"type":"array"}},"title":"photo","type":"object"},"emps-assignments-item":{"properties":{"ActionCode":{"description":"Action performed on a particular record, such as Hire, Add Pending Worker, Manager Change, and so on. Valid values are defined in the list ActionCodeLOV.","maxLength":30,"title":"Action Code","type":"string"},"ActionReasonCode":{"description":"User-defined code for the action reason. Specifies the reason for the action performed on the record. Valid values are defined in the list ActionReasonCodeLOV.","maxLength":30,"title":"Reason Code","type":"string"},"ActualTerminationDate":{"description":"Actual date of termination of employment. This is required during termination, when the TerminateWorkRelationshipFlag is set to Y.","format":"date","type":"string"},"AssignmentCategory":{"description":"User-defined category such as Full-Time Permanent or Part-Time Permanent. Valid values are defined in the list AssignmentCategoryLOV.","maxLength":30,"title":"Assignment Category","type":"string"},"AssignmentId":{"description":"Unique identifier for the assignment. This is a primary key generated by the application.","format":"int64","title":"Assignment ID","type":"integer"},"AssignmentName":{"description":"Name of the assignment.","maxLength":80,"title":"Assignment Name","type":"string"},"AssignmentNumber":{"description":"Unique identifier for the assignment or terms. Valid for workers and nonworkers.","maxLength":30,"title":"Assignment Number","type":"string"},"AssignmentProjectedEndDate":{"description":"Date on which the assignment is expected to end.","format":"date","title":"Projected End Date","type":"string"},"AssignmentStatus":{"description":"HR status of the assignment, such as Active or Inactive. Valid values are defined in the list AssignmentStatusLOV.","maxLength":30,"title":"Assignment Status","type":"string"},"AssignmentStatusTypeId":{"description":"Unique identifier for the user-defined assignment status. Valid values are defined in the list AssignmentStatusTypeIdLOV.","format":"int64","type":"integer"},"BusinessUnitId":{"description":"Unique identifier for the business unit. Valid values are defined in the list BusinessUnitIdLOV.","format":"int64","type":"integer"},"CreationDate":{"description":"Date and time of creation of the employee assignment record.","format":"date-time","type":"string"},"DefaultExpenseAccount":{"description":"Default expense account represented as a concatenated value of all the related segments.","type":"string"},"DepartmentId":{"description":"Unique identifier for the department. Valid values are defined in the list DepartmentIdLOV.","format":"int64","type":"integer"},"EffectiveEndDate":{"description":"Date at the end of the date range within which the employee assignment is effective.","format":"date","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee assignment is effective.","format":"date","type":"string"},"EndTime":{"description":"Work day normal end time.","maxLength":5,"title":"End Time","type":"string"},"Frequency":{"description":"Frequency of normal working hours such as week, month, year. Valid values are defined in the list FrequencyLOV.","maxLength":30,"title":"Frequency","type":"string"},"FullPartTime":{"description":"Indicates whether the position the employee is hired for is full-time or part-time. Valid values are defined in the list FullPartTimeLOV.","maxLength":30,"title":"Full Time or Part Time","type":"string"},"GradeId":{"description":"Unique identifier for the grade. Valid values are defined in the list GradeIdLOV.","format":"int64","type":"integer"},"GradeLadderId":{"description":"Unique identifier for the grade ladder.","format":"int64","type":"integer"},"JobId":{"description":"Unique identifier for the job. Valid values are defined in the list JobIdLOV.","format":"int64","type":"integer"},"LastUpdateDate":{"description":"Date and time of update of the employee assignment record.","format":"date-time","type":"string"},"LegalEntityId":{"description":"Unique identifier for the legal entity.","format":"int64","type":"integer"},"LocationId":{"description":"Unique identifier for the location. Valid values are defined in the list LocationIdLOV.","format":"int64","type":"integer"},"ManagerAssignmentId":{"description":"Identifier for the manager's assignment.","format":"int64","title":"Manager Assignment ID","type":"integer"},"ManagerId":{"description":"Unique identifier for a manager. Valid values are defined in the list ManagerIdLOV.","format":"int64","title":"Manager ID","type":"integer"},"ManagerType":{"description":"Role of the manager with regards to the overall organization structure. For example, functional, project leader, and so on.","maxLength":30,"title":"Type","type":"string"},"OriginalHireDate":{"description":"Original date of hire for employment.","format":"date","type":"string"},"PeopleGroup":{"description":"People group represented as a concatenated value of all the related key flexfield segments.","type":"string"},"PeriodOfServiceId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"PersonTypeId":{"description":"Unique identifier for the person type. Valid values are defined in the list PersonTypeIdLOV.","format":"int64","type":"integer"},"PositionId":{"description":"Unique identifier for a position. Valid values are defined in the list PositionIdLOV.","format":"int64","type":"integer"},"PrimaryAssignmentFlag":{"description":"Indicates whether the current assignment is the primary assignment. Valid values are Yes and No.","title":"Primary","type":"boolean"},"PrimaryWorkRelationFlag":{"description":"Indicates whether the current work relationship is primary. Valid values are Yes and No.","title":"Primary","type":"boolean"},"PrimaryWorkTermsFlag":{"description":"Indicates whether the current employment terms are primary. Valid values are Yes and No.","title":"Primary employment terms","type":"boolean"},"ProbationPeriodEndDate":{"description":"End date of probation period.","format":"date","title":"Probation End Date","type":"string"},"ProbationPeriodLength":{"description":"Duration of probation period.","title":"Probation Period","type":"number"},"ProbationPeriodUnitOfMeasure":{"description":"Units for the probation period duration. Valid values are defined in the list QUALIFYING_UNITS.","maxLength":30,"title":"Probation Unit","type":"string"},"ProjectedStartDate":{"description":"Proposed start date for the pending worker.","format":"date","title":"Projected Start Date","type":"string"},"ProposedPersonTypeId":{"description":"Unique identifier for the worker class. This value is valid only if the PersonTypeId is Pending Worker. It can be any of the employee or contingent worker types. Valid values are defined in the list ProposedPersonTypeIdLOV.","maxLength":30,"title":"Proposed Person Type","type":"string"},"RegularTemporary":{"description":"Indicates whether the position the employee is hired for is regular or temporary. Valid values are defined in the list RegularTemporaryLOV.","maxLength":30,"title":"Regular or Temporary","type":"string"},"SalaryAmount":{"description":"Salary amount entered based on the salary frequency.","title":"Salary Amount","type":"number"},"SalaryBasisId":{"description":"Identifier for the set of details linked to a worker's base pay. It identifies the payroll characteristics used to pay base earnings, the duration for which base pay is quoted, the factor used to annualize base pay, any components used to attribute base pay adjustments to different reasons, and any associated grade rate for salary validation. Valid values are defined in the list  SalaryBasisIdLOV.","format":"int64","type":"integer"},"SalaryCode":{"description":"Identifies whether the assignment is paid by the hour or by a salary. Either maintained at the assignment level or employment or placement terms but not both. Valid values are defined in the list SalaryCodeLOV.","maxLength":30,"title":"Hourly Paid or Salaried","type":"string"},"StartTime":{"description":"Work day normal start time.","maxLength":5,"title":"Start Time","type":"string"},"TermsEffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee term is effective.","format":"date","type":"string"},"WorkTaxAddressId":{"description":"Unique identifier for the address that is used for taxation purposes. This can be different from a mailing address. Valid values are defined in the list WorkTaxAddressIdLOV.","format":"int64","type":"integer"},"WorkerCategory":{"description":"Category of the worker such as Blue Collar, Civil Servant, and so on. Valid values are defined in the list WorkerCategoryLOV.","maxLength":30,"title":"Worker Category","type":"string"},"WorkingAsManager":{"description":"Indicates whether the person is a manager. Valid values are Yes and No.","maxLength":30,"title":"Working as a Manager","type":"string"},"WorkingAtHome":{"description":"Indicates whether the person is working at home. Valid values are Yes and No.","maxLength":30,"title":"Working at Home","type":"string"},"WorkingHours":{"description":"Normal working hours.","title":"Working Hours","type":"number"},"assignmentDFF":{"description":"The assignmentDFF resource is a child of the assignments resource, and hence a child of child of the emps resource. It includes all employee assignment key flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-assignmentDFF-item"},"title":"Assignment Descriptive Flexfields","type":"array"},"assignmentExtraInformation":{"description":"The assignmentExtraInformation resource is a child of the emps resource. It includes all the extensible flexfields for additional assignment information as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-assignmentExtraInformation-item"},"title":"Assignment Extra Information Extensible FlexFields","type":"array"},"empreps":{"description":"The empreps resource is a child of the assignments resource, and hence a child of child of the emps resource. It includes all employee representatives as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-empreps-item"},"title":"Employee Representatives","type":"array"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"peopleGroupKeyFlexfield":{"description":"The peopleGroupKeyFlexfield resource is a child of the assignments resource, and hence a child of child of the emps resource. It includes all employee assignment key flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-peopleGroupKeyFlexfield-item"},"title":"People Group Key Flexfields","type":"array"}},"type":"object","x-links":[{"description":"The list of values for the worker class, such as CONSULTANT, TRAINEE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: PersonTypeId; Target Attribute: PersonTypeId</li><li>Display Attribute: PersonTypeId</li><li>Display Attribute: SystemPersonType</li><li>Display Attribute: UserPersonType</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/PersonTypeIdLOV?fields=PersonTypeId,SystemPersonType,UserPersonType","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["PersonTypeId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"PersonTypeId":{"description":"Unique Identifier for a persontypes.","type":"integer"},"SystemPersonType":{"description":"Worker class. This is defined either at the assignment level or in the employment terms, and defaults from the person-organization relationship. For example, Contingent worker, Employee.","type":"string"},"UserPersonType":{"description":"Worker class. This is defined either at the assignment level or in the employment terms, and defaults from the person-organization relationship. For example, Assignee, Consultant, Expatriate, Agency/Temp, Intern, Apprentice, Contractor, Trainee.","type":"string"}},"type":"object"},"title":"PersonTypeId LOV"},{"description":"The list of values for the proposed person type, such as CONSULTANT, CONTRACTOR, EMPLOYEE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: ProposedPersonTypeId; Target Attribute: PersonTypeId</li><li>Display Attribute: PersonTypeId</li><li>Display Attribute: SystemPersonType</li><li>Display Attribute: UserPersonType</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/ProposedPersonTypeIdLOV?fields=PersonTypeId,SystemPersonType,UserPersonType","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["ProposedPersonTypeId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"PersonTypeId":{"description":"Unique identifier for a person type.","type":"integer"},"SystemPersonType":{"description":"Worker class. This is defined either at the assignment level or in the employment terms, and defaults from the person-organization relationship. For example, Contingent Worker, Employee.","type":"string"},"UserPersonType":{"description":"Worker class. This is defined either at the assignment level or in the employment terms, and defaults from the person-organization relationship. For example, Assignee, Consultant, Expatriate, Agency/Temp, Intern, Apprentice, Contractor, Trainee.","type":"string"}},"type":"object"},"title":"ProposedPersonTypeId LOV"},{"description":"The list of values for business units.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: BusinessUnitId; Target Attribute: BusinessUnitId</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/BusinessUnitIdLOV?fields=BusinessUnitId","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["BusinessUnitId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"BusinessUnitId":{"description":"Determinant for 'Set Enabled' tables and those using BU as a partitioning key.","type":"integer"}},"type":"object"},"title":"BusinessUnitId LOV"},{"description":"The list of values for locations.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: LocationId; Target Attribute: LocationId</li><li>Display Attribute: LocationId</li><li>Display Attribute: LocationName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/LocationIdLOV?fields=LocationId,LocationName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["LocationId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LocationId":{"description":"Unique identifier for a location.","type":"integer"},"LocationName":{"description":"Name of a location.","type":"string"}},"type":"object"},"title":"LocationId LOV"},{"description":"The list of values for jobs.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: JobId; Target Attribute: JobId</li><li>Display Attribute: JobId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/JobIdLOV?fields=JobId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["JobId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"JobId":{"description":"Unique identifier for a job.","type":"integer"},"Name":{"description":"Name of a job.","type":"string"}},"type":"object"},"title":"JobId LOV"},{"description":"The list of values for grades.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: GradeId; Target Attribute: GradeId</li><li>Display Attribute: GradeId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/GradeIdLOV?fields=GradeId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["GradeId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"GradeId":{"description":"Unique identifier for a grade.","type":"integer"},"Name":{"description":"Name of a grade.","type":"string"}},"type":"object"},"title":"GradeId LOV"},{"description":"The list of values for departments.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: DepartmentId; Target Attribute: OrganizationId</li><li>Display Attribute: OrganizationId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/DepartmentIdLOV?fields=OrganizationId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["DepartmentId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"Name":{"description":"Name of a department.","type":"string"},"OrganizationId":{"description":"Unique identifier for a department.","type":"integer"}},"type":"object"},"title":"DepartmentId LOV"},{"description":"The list of values for worker category.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: WorkerCategory; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/WorkerCategoryLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["WorkerCategory"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"WorkerCategory LOV"},{"description":"The list of values for assignment category.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: AssignmentCategory; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/AssignmentCategoryLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["AssignmentCategory"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"AssignmentCategory LOV"},{"description":"The list of values for salary code.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: SalaryCode; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/SalaryCodeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["SalaryCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"SalaryCode LOV"},{"description":"The list of values for frequency of working hours, such as HOURLY or WEEKLY.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Frequency; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/FrequencyLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Frequency"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Frequency LOV"},{"description":"The list of values for salary basis.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: SalaryBasisId; Target Attribute: SalaryBasisId</li><li>Display Attribute: SalaryBasisId</li><li>Display Attribute: SalaryBasisCode</li><li>Display Attribute: SalaryBasisName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/SalaryBasisIdLOV?fields=SalaryBasisId,SalaryBasisCode,SalaryBasisName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["SalaryBasisId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"SalaryBasisCode":{"description":"Code for the salary basis.","type":"string"},"SalaryBasisId":{"description":"Identifier for the set of details linked to a worker's base pay. It identifies the payroll characteristics used to pay base earnings, the duration for which base pay is quoted, the factor used to annualize base pay, any components used to attribute base pay adjustments to different reasons, and any associated grade rate for salary validation.","type":"integer"},"SalaryBasisName":{"description":"Name of the salary basis.","type":"string"}},"type":"object"},"title":"SalaryBasisId LOV"},{"description":"The list of values for the action performed on a specific record.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: ActionCode; Target Attribute: ActionCode</li><li>Display Attribute: ActionCode</li><li>Display Attribute: ActionId</li><li>Display Attribute: ActionName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/ActionCodeLOV?fields=ActionCode,ActionId,ActionName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["ActionCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"ActionCode":{"description":"Unique code for the action performed on a particular record. For example, HIRE, ADD PENDING WORKER, MANAGER CHANGE, and so on.","type":"string"},"ActionId":{"description":"Unique identifier for the action performed on a particular record.","type":"integer"},"ActionName":{"description":"Name of the action performed on a particular record.","type":"string"}},"type":"object"},"title":"ActionCode LOV"},{"description":"The list of values for the action reason.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: ActionReasonCode; Target Attribute: ActionReasonCode</li><li>Display Attribute: ActionReasonCode</li><li>Display Attribute: ActionReasonId</li><li>Display Attribute: ActionReason</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/ActionReasonCodeLOV?fields=ActionReasonCode,ActionReasonId,ActionReason","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["ActionReasonCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"ActionReason":{"description":"Description for the action reason.","type":"string"},"ActionReasonCode":{"description":"User-defined code for the action reason.","type":"string"},"ActionReasonId":{"description":"Unique identifier for the action reason.","type":"integer"}},"type":"object"},"title":"ActionReasonCode LOV"},{"description":"The list of values for the HR status of the assignment.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: AssignmentStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/AssignmentStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["AssignmentStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"AssignmentStatus LOV"},{"description":"The list of values for the address that is used for taxation purposes.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: WorkTaxAddressId; Target Attribute: AddressId</li><li>Display Attribute: AddressId</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/WorkTaxAddressIdLOV?fields=AddressId,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["WorkTaxAddressId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"AddressId":{"description":"Unique identifier for the address that is used for taxation purposes. This can be different from a mailing address.","type":"integer"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"WorkTaxAddressId LOV"},{"description":"The list of values for positions.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: PositionId; Target Attribute: PositionId</li><li>Display Attribute: PositionId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/PositionIdLOV?fields=PositionId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["PositionId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"Name":{"description":"Name of a position.","type":"string"},"PositionId":{"description":"Unique identifier for a position.","type":"integer"}},"type":"object"},"title":"PositionId LOV"},{"description":"The list of values for managers.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: ManagerId; Target Attribute: PersonId</li><li>Display Attribute: PersonId</li><li>Display Attribute: DisplayName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/ManagerIdLOV?fields=PersonId,DisplayName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["ManagerId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"DisplayName":{"description":"Name of a manager.","type":"string"},"PersonId":{"description":"Unique identifier for a manager.","type":"integer"}},"type":"object"},"title":"ManagerId LOV"},{"description":"The list of values for the user-defined status of the assignment.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: AssignmentStatusTypeId; Target Attribute: AssignmentStatusTypeId</li><li>Display Attribute: AssignmentStatusTypeId</li><li>Display Attribute: AssignmentStatusCode</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/AssignmentStatusTypeIdLOV?fields=AssignmentStatusTypeId,AssignmentStatusCode","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["AssignmentStatusTypeId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{},"type":"object"},"title":"AssignmentStatusTypeId LOV"},{"description":"The list of values indicating whether the assignment is full time or part time.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: FullPartTime; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/FullPartTimeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["FullPartTime"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"FullPartTime LOV"},{"description":"The list of values indicating whether the assignment is regular or temporary.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: RegularTemporary; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/assignments/{assignmentsUniqID}/lov/RegularTemporaryLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["RegularTemporary"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"RegularTemporary LOV"}]},"emps-photo-item":{"properties":{"Image":{"description":"Unique location of the image. Encrypted version of the file.","format":"binary","title":"Image","type":"string"},"ImageId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"ImageName":{"description":"Name of the image.","maxLength":240,"title":"Photo Name","type":"string"},"ObjectVersionNumber":{"description":"Used to implement optimistic locking. This number is incremented every time a row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.","format":"int32","type":"integer"},"PersonId":{"description":"Person associated with the image. Foreign key to PER_ALL_PEOPLE_F.","format":"int64","type":"integer"},"PrimaryFlag":{"description":"Indicates whether the image is primary.","type":"boolean"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object"},"requisitionsGetRes":{"properties":{"ActiveStatus":{"description":"Indicates whether a job is active or not. Valid values are defined in the list ActiveStatusLOV.","maxLength":30,"title":"Status","type":"string"},"ApprovalAuthority":{"description":"Number that identifies levels across jobs which are used for approvals if the job list builder is used.","title":"Level","type":"number"},"EffectiveEndDate":{"description":"Date at the end of the date range within which the job is effective.","format":"date","title":"Effective End Date","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the job is effective.","format":"date","title":"Effective Start Date","type":"string"},"FullPartTime":{"description":"Indicates whether a job is full-time or part-time. Valid values are defined in the list FullPartTimeLOV.","maxLength":30,"title":"Full Time or Part Time","type":"string"},"GradeLadderId":{"description":"Identifier for the grade ladder.","format":"int64","title":"Grade Ladder","type":"integer"},"JobCode":{"description":"Short form for a job. Used for identification purposes.","maxLength":30,"title":"Code","type":"string"},"JobCustomerFlex":{"description":"The JobCustomerFlex resource is a child of the jobs resource. It includes all job flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/jobs-JobCustomerFlex-item"},"title":"Job Customer Flexfields","type":"array"},"JobFamilyId":{"description":"Unique key for a group of jobs having different but related functions, qualifications, and titles.","format":"int64","title":"Job Family","type":"integer"},"JobFunctionCode":{"description":"Code that best categorizes the job by function, such as administrative, legal, or management. Valid values are defined in the list JobFunctionLookup.","maxLength":30,"title":"Function","type":"string"},"JobId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"ManagerLevel":{"description":"Level of management associated with the employee. Valid values are defined in the list ManagerLevelLookup.","maxLength":30,"title":"Management Level","type":"string"},"MedicalCheckupRequired":{"description":"Indicates whether a job requires a one-time medical checkup when the worker is hired. Valid values are defined in the list MedicalCheckupRequiredLOV.","maxLength":30,"title":"Medical Checkup Required","type":"string"},"Name":{"description":"Name of the job.","maxLength":240,"title":"Name","type":"string"},"RegularTemporary":{"description":"Indicates whether a job is regular or temporary. Valid values are defined in the list RegularTemporaryLOV.","maxLength":30,"title":"Regular or Temporary","type":"string"},"SetId":{"description":"Set of reference data shared across business units and other entities. Also known as Reference Data Sets, they are used to filter reference data in transactional UIs.","format":"int64","title":"Job Set","type":"integer"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"validGrades":{"description":"The validGrades resource is a child of the jobs resource. It includes all valid grades for the job, as of the specified date.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/jobs-validGrades-item"},"title":"Valid Grades","type":"array"}},"type":"object","x-links":[{"description":"The list of values for the status of a job, such as ACTIVE or INACTIVE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: ActiveStatus; Target Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/jobs/{jobsUniqID}/lov/ActiveStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["ActiveStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"ActiveStatus LOV"},{"description":"The list of values for full-time status of a job, such as FULL-TIME or PART-TIME.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: FullPartTime; Target Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/jobs/{jobsUniqID}/lov/FullPartTimeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["FullPartTime"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"FullPartTime LOV"},{"description":"The list of values for job category by function, such as administrative, legal, or management.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: JobFunctionCode; Target Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/jobs/{jobsUniqID}/lov/JobFunctionLookup?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["JobFunctionCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"JobFunctionCode LOV"},{"description":"The list of values for the level of management associated with the employee.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: ManagerLevel; Target Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/jobs/{jobsUniqID}/lov/ManagerLevelLookup?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["ManagerLevel"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"ManagerLevel LOV"},{"description":"The list of values for medical checkup requirement.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MedicalCheckupRequired; Target Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/jobs/{jobsUniqID}/lov/MedicalCheckupRequiredLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MedicalCheckupRequired"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MedicalCheckupRequired LOV"},{"description":"The list of values for type of job, such as REGULAR or TEMPORARY.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: RegularTemporary; Target Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/jobs/{jobsUniqID}/lov/RegularTemporaryLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["RegularTemporary"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"RegularTemporary LOV"}],"x-primary-key":["JobId"]},"timeEventsPostReq":{"properties":{"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"requestNumber":{"description":"Unique identifier for the time event request sent by the time collection device supplier.","maxLength":80,"type":"string"},"requestTimestamp":{"description":"Date and time when the time event request was created.","maxLength":80,"type":"string"},"sourceId":{"description":"Unique identifier for the source creating the data. For example, vendor name or facility identifier.","maxLength":40,"type":"string"},"timeEventRequestId":{"description":"Unique identifier for the time event request that the time collection device supplier sends. This request can contain one or more time events.","format":"int64","type":"integer"},"timeEvents":{"description":"The timeEvents resource is a child of the time event requests resource. It is a single IN or OUT time transaction that the time reporter records on a time collection device.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeEventRequests-timeEvents-item"},"title":"Time Events","type":"array"}},"type":"object"},"swaggertags":{"x-has-customfields":false,"title":"tags","properties":{"name":{"x-samplevalue":"contacts","type":"string"}},"type":"object"},"listTimeEventsGetResObject":{"properties":{"links":{"items":{"$ref":"#/definitions/listTimeEventsGetResLinks"},"type":"array"},"requestNumber":{"type":"string","x-samplevalue":"string"},"requestTimestamp":{"type":"string","x-samplevalue":"string"},"sourceId":{"type":"string","x-samplevalue":"string"},"timeEventRequestId":{"format":"int32","type":"integer","x-samplevalue":0},"timeEvents":{"items":{"$ref":"#/definitions/listTimeEventsGetResTimeEvents"},"type":"array"}},"title":"listTimeEventsGetRes","type":"object","x-primary-key":["timeEventRequestId"]},"timeEventsPostRes":{"properties":{"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"requestNumber":{"description":"Unique identifier for the time event request sent by the time collection device supplier.","maxLength":80,"type":"string"},"requestTimestamp":{"description":"Date and time when the time event request was created.","maxLength":80,"type":"string"},"sourceId":{"description":"Unique identifier for the source creating the data. For example, vendor name or facility identifier.","maxLength":40,"type":"string"},"timeEventRequestId":{"description":"Unique identifier for the time event request that the time collection device supplier sends. This request can contain one or more time events.","format":"int64","type":"integer"},"timeEvents":{"description":"The timeEvents resource is a child of the time event requests resource. It is a single IN or OUT time transaction that the time reporter records on a time collection device.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeEventRequests-timeEvents-item"},"title":"Time Events","type":"array"}},"type":"object","x-primary-key":["timeEventRequestId"]},"timeRecords-timeStatuses-item":{"properties":{"displayValue":{"description":"Value displayed for the status of the time record, such as Approved.","maxLength":80,"type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"statusCode":{"description":"Code of the status of the time record, such as A_APP_STATUS_PYR which is the code for the APPROVED status.","maxLength":32,"type":"string"},"statusId":{"description":"Unique identifier for the status of the time record.","format":"int64","type":"integer"},"statusName":{"description":"Name of the status of the time record, such as Payroll Approval Entries Status.","maxLength":255,"type":"string"},"statusValue":{"description":"Value of the status of the time record, such as APPROVED.","maxLength":30,"type":"string"},"timeBuildingBlockId":{"description":"Unique identifier for the time record with specified status.","format":"int64","type":"integer"},"timeBuildingBlockVersion":{"description":"Version number of the time record with specified status.","format":"int32","type":"integer"}},"type":"object"},"emps-personDFF-item":{"properties":{"PersonId":{"description":"Internal identifier for the person.","format":"int64","title":"Person ID","type":"integer"},"_FLEX_NumOfSegments":{"description":"Descriptive flexfield for person.","format":"int32","type":"integer"},"_FLEX_ValidationDate":{"description":"Descriptive flexfield for person.","format":"date","type":"string"},"__FLEX_Context":{"description":"Descriptive flexfield for person. Valid values are defined in the list LVVO___FLEX_Context.","maxLength":30,"type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for the context of descriptive flexfield.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: __FLEX_Context; Target Attribute: ContextCode</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/personDFF/{PersonId}/lov/LVVO___FLEX_Context?fields=ContextCode,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["__FLEX_Context"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"ContextCode":{"description":"Descriptive flexfield for person.","type":"string"},"Name":{"description":"Descriptive flexfield for person.","type":"string"}},"type":"object"},"title":"__FLEX_Context LOV"}]},"bulkDownloadRequest":{"properties":{"apiLimit":{"format":"int32","type":"integer","x-samplevalue":100},"continueFromJobId":{"format":"int32","type":"integer","x-samplevalue":1},"docsHubDetails":{"$ref":"#/definitions/bulkDownloadRequestDocsHubDetails"},"filterDateField":{"type":"string","x-samplevalue":"lastModifiedDate"},"filterNulls":{"type":"boolean","x-samplevalue":true},"format":{"enum":["application/json","txt/csv","application/jsonl"],"type":"string","x-samplevalue":"application/json"},"from":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ssZ","x-samplevalue":"2014-10-06T13:22:17-08:00"},"limit":{"format":"int32","type":"integer","x-samplevalue":107},"notificationUrl":{"type":"string","x-samplevalue":"https://myreceiver.com/whatever"},"objectName":{"type":"string","x-samplevalue":"accounts"},"pageSize":{"format":"int32","type":"integer","x-samplevalue":200},"query":{"$ref":"#/definitions/bulkDownloadRequestQuery"},"selectFields":{"type":"string","x-samplevalue":"a,b,c"},"to":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ssZ","x-samplevalue":"2014-10-10T13:22:17-08:00"},"where":{"type":"string","x-samplevalue":"name='Alex' and gender='male'"}},"required":["objectName","format"],"title":"bulkDownloadRequest","type":"object"},"BulkUploadResponse":{"description":"BulkLoad response of bulk download.","properties":{"id":{"description":"Id of the bulk job","type":"string"},"instanceId":{"description":"Instance Id of the bulk job","format":"int64","type":"integer"},"status":{"description":"Status of the bulk job","type":"string"}},"type":"object"},"emps-personExtraInformation-item":{"properties":{"CategoryCode":{"description":"Extensible flexfield for person.","maxLength":80,"type":"string"},"ObjectVersionNumber":{"description":"Used to implement optimistic locking. This number is incremented every time a row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row from the time it was queried.","format":"int32","type":"integer"},"PersonId":{"description":"Extensible flexfield for person.","format":"int64","title":"Person ID","type":"integer"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object"},"listEmployeeGetResAssignmentsAssignmentDFFLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"childObjectNamePatchReq":{"properties":{"objectField":{"type":"string","x-samplevalue":"string"}},"title":"childObjectNamePatchReq","type":"object"},"swaggerparameters":{"x-has-customfields":false,"title":"parameters","properties":{"schema":{"$ref":"#/definitions/swaggerparametersschema"},"in":{"x-samplevalue":"header","type":"string"},"name":{"x-samplevalue":"Authorization","type":"string"},"description":{"x-samplevalue":"The authorization tokens. The format for the header value is 'Element &lt;token&gt;, User &lt;user secret&gt;'","type":"string"},"type":{"x-samplevalue":"string","type":"string"},"required":{"x-samplevalue":true,"type":"boolean"}},"type":"object"},"jobs-JobCustomerFlex-item":{"properties":{"EffectiveEndDate":{"description":"Flexfield for job.","format":"date","title":"Effective End Date","type":"string"},"EffectiveStartDate":{"description":"Flexfield for job.","format":"date","title":"Effective Start Date","type":"string"},"JobId":{"description":"Flexfield for job.","format":"int64","type":"integer"},"__FLEX_Context":{"description":"Flexfield for job. Valid values are defined in the list LVVO___FLEX_Context.","maxLength":30,"title":"Context Value","type":"string"},"__FLEX_Context_DisplayValue":{"description":"","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for the context of descriptive flexfield.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: __FLEX_Context; Target Attribute: ContextCode</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/jobs/{jobsUniqID}/child/JobCustomerFlex/{JobCustomerFlexUniqID}/lov/LVVO___FLEX_Context?fields=ContextCode,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["__FLEX_Context"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"ContextCode":{"description":"Descriptive flexfield for job.","type":"string"},"Name":{"description":"Descriptive flexfield for job.","type":"string"}},"type":"object"},"title":"__FLEX_Context LOV"}]},"timeEventsRes":{"properties":{"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"requestNumber":{"description":"Unique identifier for the time event request sent by the time collection device supplier.","maxLength":80,"type":"string"},"requestTimestamp":{"description":"Date and time when the time event request was created.","maxLength":80,"type":"string"},"sourceId":{"description":"Unique identifier for the source creating the data. For example, vendor name or facility identifier.","maxLength":40,"type":"string"},"timeEventRequestId":{"description":"Unique identifier for the time event request that the time collection device supplier sends. This request can contain one or more time events.","format":"int64","type":"integer"},"timeEvents":{"description":"The timeEvents resource is a child of the time event requests resource. It is a single IN or OUT time transaction that the time reporter records on a time collection device.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/timeEventRequests-timeEvents-item"},"title":"Time Events","type":"array"}},"type":"object","x-primary-key":["timeEventRequestId"]},"listTimeCardsGetResTimeMessages":{"properties":{"allowedException":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeMessagesLinks"},"type":"array"},"messageCode":{"type":"string","x-samplevalue":"string"},"messageId":{"format":"int32","type":"integer","x-samplevalue":0},"messageText":{"type":"string","x-samplevalue":"string"},"ruleId":{"format":"int32","type":"integer","x-samplevalue":0},"ruleSetId":{"format":"int32","type":"integer","x-samplevalue":0},"ruleSetType":{"type":"string","x-samplevalue":"string"},"severity":{"type":"string","x-samplevalue":"string"},"tag":{"type":"string","x-samplevalue":"string"},"timeBuildingBlockId":{"format":"int32","type":"integer","x-samplevalue":0},"timeBuildingBlockVersion":{"format":"int32","type":"integer","x-samplevalue":0},"timeMessageTokens":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeMessagesTimeMessageTokens"},"type":"array"}},"title":"timeMessages","type":"object"},"listEmployeeGetResPersonDFFLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listTimeEventsGetResTimeEventsTimeEventAttributesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listPositionsGetResExtraInformation":{"properties":{"CategoryCode":{"type":"string","x-samplevalue":"string"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listPositionsGetResExtraInformationLinks"},"type":"array"}},"title":"extraInformation","type":"object"},"listTimeEventsGetResTimeEventsTimeEventAttributes":{"properties":{"links":{"items":{"$ref":"#/definitions/listTimeEventsGetResTimeEventsTimeEventAttributesLinks"},"type":"array"},"name":{"type":"string","x-samplevalue":"string"},"timeEventAttributeId":{"format":"int32","type":"integer","x-samplevalue":0},"timeEventId":{"format":"int32","type":"integer","x-samplevalue":0},"value":{"type":"string","x-samplevalue":"string"}},"title":"timeEventAttributes","type":"object"},"emps-directReports-item":{"properties":{"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee direct report is effective.","format":"date","type":"string"},"FullName":{"description":"Full name of the manager.","maxLength":2000,"type":"string"},"ManagerId":{"description":"Internal identifier for the manager.","format":"int64","type":"integer"},"PersonId":{"description":"Internal identifier for the person.","format":"int64","type":"integer"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object"},"emps-visas-item":{"properties":{"CreationDate":{"description":"Date and time of creation of the employee visa record.","format":"date-time","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee visa record.","format":"date-time","type":"string"},"VisaPermitCountry":{"description":"Country for which visa or permit is valid. Valid values are defined in the list IssuingCountryLOV.","maxLength":30,"title":"Issuing Country","type":"string"},"VisaPermitExpiration":{"description":"Expiration date of visa or permit.","format":"date","title":"Expiration Date","type":"string"},"VisaPermitId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"VisaPermitNumber":{"description":"Visa or permit number.","maxLength":30,"title":"Number","type":"string"},"VisaPermitType":{"description":"Visa or permit type. Valid values are defined in the list VisaPermitTypeLOV.","maxLength":30,"title":"Type","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for visa or permit type.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: VisaPermitType; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/visas/{VisaPermitId}/lov/VisaPermitTypeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["VisaPermitType"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"VisaPermitType LOV"},{"description":"The list of values for countries that issue visa.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: VisaPermitCountry; Target Attribute: TerritoryCode</li><li>Display Attribute: TerritoryCode</li><li>Display Attribute: TerritoryShortName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/visas/{VisaPermitId}/lov/IssuingCountryLOV?fields=TerritoryCode,TerritoryShortName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["VisaPermitCountry"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"TerritoryCode":{"description":"Country for which visa or permit is valid.","type":"string"},"TerritoryShortName":{"description":"Short name of the country for which visa or permit is valid.","type":"string"}},"type":"object"},"title":"VisaPermitCountry LOV"}]},"listEmployeeGetResDirectReports":{"properties":{"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"FullName":{"type":"string","x-samplevalue":"string"},"ManagerId":{"format":"int32","type":"integer","x-samplevalue":0},"PersonId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResDirectReportsLinks"},"type":"array"}},"title":"directReports","type":"object"},"positionsGetResLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swagger200":{"x-has-customfields":false,"type":"object","title":"200","properties":{"schema":{"$ref":"#/definitions/swaggerschema"},"description":{"x-samplevalue":"OK - Everything worked as expected","type":"string"}}},"listEmployeeGetResPhotoLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listJobsGetResJobCustomerFlexLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listEmployeeGetResRoles":{"properties":{"CreationDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.099Z"},"EndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"LastUpdateDate":{"format":"date-time","type":"string","x-mask":"yyyy-MM-dd'T'HH:mm:ss.SSSZ","x-samplevalue":"2019-06-03T04:21:08.100Z"},"RoleCommonName":{"type":"string","x-samplevalue":"string"},"RoleGUID":{"type":"string","x-samplevalue":"string"},"RoleName":{"type":"string","x-samplevalue":"string"},"StartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResRolesLinks"},"type":"array"}},"title":"roles","type":"object"},"emps-assignments-peopleGroupKeyFlexfield-item":{"properties":{"EnabledFlag":{"description":"Key flexfield for person.","type":"boolean"},"EndDateActive":{"description":"Key flexfield for person.","format":"date","type":"string"},"FND_ACFF_ConcatenatedStorage":{"description":"Key flexfield for person.","type":"string"},"FND_ACFF_Delimiter":{"description":"Key flexfield for person.","type":"string"},"StartDateActive":{"description":"Key flexfield for person.","format":"date","type":"string"},"_FLEX_StructureInstanceCode":{"description":"Key flexfield for person.","maxLength":30,"type":"string"},"_FLEX_StructureInstanceId":{"description":"Key flexfield for person.","format":"int64","type":"integer"},"_ID_FLEX_NUM":{"description":"Key flexfield for person.","format":"int64","type":"integer"},"_PEOPLE_GROUP_ID":{"description":"Key flexfield for person.","format":"int64","type":"integer"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object"},"bulkDownloadRequestQuery":{"properties":{"anyKey":{"type":"string","x-samplevalue":"anyValue"}},"title":"query","type":"object"},"listPositionsGetResValidGrades":{"properties":{"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"GradeId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listPositionsGetResValidGradesLinks"},"type":"array"}},"title":"validGrades","type":"object"},"listPositionsGetResLegislativeExtraInformation":{"properties":{"CategoryCode":{"type":"string","x-samplevalue":"string"},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listPositionsGetResLegislativeExtraInformationLinks"},"type":"array"}},"title":"legislativeExtraInformation","type":"object"},"listEmployeeGetResAssignmentsEmpreps":{"properties":{"AsgResponsibilityId":{"format":"int32","type":"integer","x-samplevalue":0},"AssignmentId":{"format":"int32","type":"integer","x-samplevalue":0},"PersonId":{"format":"int32","type":"integer","x-samplevalue":0},"ResponsibilityName":{"type":"string","x-samplevalue":"string"},"ResponsibilityTypeCode":{"type":"string","x-samplevalue":"string"},"ResponsibilityTypeName":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsEmprepsLinks"},"type":"array"}},"title":"empreps","type":"object"},"listEmployeeGetResDirectReportsLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"objectsMetadata":{"properties":{"fields":{"items":{"$ref":"#/definitions/objectsMetadataFields"},"type":"array"}},"type":"object"},"swaggerschema":{"x-has-customfields":false,"type":"object","title":"schema","properties":{"$ref":{"x-samplevalue":"#/definitions/Contact-POST-Response","type":"string"}}},"listTimeCardsGetResTimeStatusesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"timeRecords-timeAttributes-item":{"properties":{"attributeId":{"description":"Unique identifier for the time record attribute.","type":"number"},"attributeName":{"description":"Name of the attribute of the time record, such as Payroll Time Type.","maxLength":240,"type":"string"},"attributeType":{"description":"Type of the attribute of the time record, such as Varchar.","maxLength":240,"type":"string"},"attributeValue":{"description":"Value of the attribute of the time record, such as Regular or Overtime.","maxLength":240,"type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"timeBuildingBlockId":{"description":"Unique identifier for the time record with specified attributes.","type":"number"},"timeBuildingBlockVersion":{"description":"Version number of the time record with specified attributes.","format":"int32","type":"integer"}},"type":"object"},"listPositionsGetResLegislativeExtraInformationLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"positionsGetResPositionCustomerFlexLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"swagger415":{"x-has-customfields":false,"type":"object","title":"415","properties":{"description":{"x-samplevalue":"Unsupported media type - The server cannot handle the requested Content-Type","type":"string"}}},"listEmployeeGetResVisasLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"emps-assignments-empreps-item":{"properties":{"AsgResponsibilityId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"AssignmentId":{"description":"Internal identifier for the assignment.","format":"int64","title":"Assignment ID","type":"integer"},"PersonId":{"description":"Internal identifier for the person.","format":"int64","type":"integer"},"ResponsibilityName":{"description":"Name of an area of responsibility.","maxLength":240,"type":"string"},"ResponsibilityTypeCode":{"description":"Identifier of the responsibility type for which this record holds the criteria. The value is validated against HCM_LOOKUPS with the lookup type PER_RESPONSIBILITY_TYPES.","type":"string"},"ResponsibilityTypeName":{"description":"Name of the responsibility type for which this record holds the criteria. For example, Benefits Representative.","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object"},"link":{"properties":{"href":{"description":"The URI to the related resource.","title":"hyperlink reference","type":"string"},"rel":{"description":"The name of the relation to the resource instance.  Example: self.","title":"relation","type":"string"}},"type":"object"},"listTimeCardsGetResTimeMessagesTimeMessageTokensLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"timeRecords-timeMessages-timeMessageTokens-item":{"properties":{"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"messageId":{"description":"Unique identifier for the message of the defined token.","format":"int64","type":"integer"},"messageTokenId":{"description":"Unique identifier for the message token.","format":"int64","type":"integer"},"tokenName":{"description":"Name of the token for the message associated with the time record.","maxLength":256,"type":"string"},"tokenValue":{"description":"Value of the token for the message associated with the time record.","maxLength":256,"type":"string"}},"type":"object"},"listTimeEventsGetResTimeEvents":{"properties":{"deviceId":{"type":"string","x-samplevalue":"string"},"eventDateTime":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listTimeEventsGetResTimeEventsLinks"},"type":"array"},"reporterId":{"type":"string","x-samplevalue":"string"},"reporterIdType":{"type":"string","x-samplevalue":"string"},"supplierDeviceEvent":{"type":"string","x-samplevalue":"string"},"timeEventAttributes":{"items":{"$ref":"#/definitions/listTimeEventsGetResTimeEventsTimeEventAttributes"},"type":"array"},"timeEventId":{"format":"int32","type":"integer","x-samplevalue":0},"timeEventRequestId":{"format":"int32","type":"integer","x-samplevalue":0}},"title":"timeEvents","type":"object"},"swaggerparametersschema":{"x-has-customfields":false,"type":"object","title":"schema","properties":{"$ref":{"x-samplevalue":"#/definitions/Contact","type":"string"}}},"listTimeEventsGetResLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"positionsGetResPositionCustomerFlex":{"properties":{"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"_FLEX_NumOfSegments":{"format":"int32","type":"integer","x-samplevalue":0},"_FLEX_ValidationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"__FLEX_Context":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/positionsGetResPositionCustomerFlexLinks"},"type":"array"}},"title":"PositionCustomerFlex","type":"object"},"swaggerresponses":{"x-has-customfields":false,"type":"object","title":"responses","properties":{"200":{"$ref":"#/definitions/swagger200"},"400":{"$ref":"#/definitions/swagger400"},"401":{"$ref":"#/definitions/swagger401"},"403":{"$ref":"#/definitions/swagger403"},"404":{"$ref":"#/definitions/swagger404"},"405":{"$ref":"#/definitions/swagger405"},"406":{"$ref":"#/definitions/swagger406"},"409":{"$ref":"#/definitions/swagger409"},"415":{"$ref":"#/definitions/swagger415"},"500":{"$ref":"#/definitions/swagger500"},"502":{"$ref":"#/definitions/swagger502"}}},"swaggerproperties":{"x-has-customfields":false,"type":"object","title":"properties","properties":{"definition-property":{"$ref":"#/definitions/swaggerdefinition-property"}}},"listPositionsGetResValidGradesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listEmployeeGetResPersonExtraInformation":{"properties":{"CategoryCode":{"type":"string","x-samplevalue":"string"},"ObjectVersionNumber":{"format":"int32","type":"integer","x-samplevalue":0},"PersonId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResPersonExtraInformationLinks"},"type":"array"}},"title":"personExtraInformation","type":"object"},"positionsGetResValidGrades":{"properties":{"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-05-31"},"GradeId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/positionsGetResValidGradesLinks"},"type":"array"}},"title":"validGrades","type":"object"},"listJobsGetResValidGradesLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listTimeCardsGetResObject":{"properties":{"assignmentNumber":{"type":"string","x-samplevalue":"string"},"comment":{"type":"string","x-samplevalue":"string"},"earnedDate":{"type":"string","x-samplevalue":"string"},"groupType":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listTimeCardsGetResLinks"},"type":"array"},"measure":{"format":"int32","type":"integer","x-samplevalue":0},"overtimeDate":{"type":"string","x-samplevalue":"string"},"personId":{"format":"int32","type":"integer","x-samplevalue":0},"personNumber":{"type":"string","x-samplevalue":"string"},"recordType":{"type":"string","x-samplevalue":"string"},"timeAttributes":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeAttributes"},"type":"array"},"timeMessages":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeMessages"},"type":"array"},"timeRecordGroupId":{"format":"int32","type":"integer","x-samplevalue":0},"timeRecordGroupVersion":{"format":"int32","type":"integer","x-samplevalue":0},"timeRecordId":{"format":"int32","type":"integer","x-samplevalue":0},"timeRecordVersion":{"format":"int32","type":"integer","x-samplevalue":0},"timeStatuses":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeStatuses"},"type":"array"},"unitOfMeasure":{"type":"string","x-samplevalue":"string"}},"title":"listTimeCardsGetRes","type":"object","x-primary-key":["timeRecordId"]},"listEmployeeGetResAssignmentsAssignmentExtraInformation":{"properties":{"AssignmentId":{"format":"int32","type":"integer","x-samplevalue":0},"AssignmentType":{"type":"string","x-samplevalue":"string"},"CategoryCode":{"type":"string","x-samplevalue":"string"},"EffectiveEndDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"EffectiveLatestChange":{"type":"string","x-samplevalue":"string"},"EffectiveSequence":{"format":"int32","type":"integer","x-samplevalue":0},"EffectiveStartDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"ObjectVersionNumber":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsAssignmentExtraInformationLinks"},"type":"array"}},"title":"assignmentExtraInformation","type":"object"},"swaggerinfo":{"x-has-customfields":false,"type":"object","title":"info","properties":{"contact":{"$ref":"#/definitions/swaggercontact"},"title":{"x-samplevalue":"hubspotcrm","type":"string"},"version":{"x-samplevalue":"api-v2","type":"string"}}},"positionsGetResLegislativeExtraInformationLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"listEmployeesRolesGetResLinks":{"properties":{"href":{"type":"string","x-samplevalue":"string"},"rel":{"type":"string","x-samplevalue":"string"}},"title":"links","type":"object"},"bulkDownloadRequestDocsHubDetails":{"properties":{"instanceId":{"type":"string","x-samplevalue":"1234"},"path":{"type":"string","x-samplevalue":"/myfolder/in/googledrive/myfilename.extention"}},"title":"docsHubDetails","type":"object"},"listEmployeeGetResPersonDFF":{"properties":{"PersonId":{"format":"int32","type":"integer","x-samplevalue":0},"_FLEX_NumOfSegments":{"format":"int32","type":"integer","x-samplevalue":0},"_FLEX_ValidationDate":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"__FLEX_Context":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResPersonDFFLinks"},"type":"array"}},"title":"personDFF","type":"object"},"positionsGetResExtraInformation":{"properties":{"CategoryCode":{"type":"string","x-samplevalue":"string"},"PositionId":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/positionsGetResExtraInformationLinks"},"type":"array"}},"title":"extraInformation","type":"object"},"listEmployeeGetResAssignmentsPeopleGroupKeyFlexfield":{"properties":{"EnabledFlag":{"type":"boolean","x-samplevalue":true},"EndDateActive":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"FND_ACFF_ConcatenatedStorage":{"type":"string","x-samplevalue":"string"},"FND_ACFF_Delimiter":{"type":"string","x-samplevalue":"string"},"StartDateActive":{"format":"date","type":"string","x-mask":"yyyy-MM-dd","x-samplevalue":"2019-06-03"},"_FLEX_StructureInstanceCode":{"type":"string","x-samplevalue":"string"},"_FLEX_StructureInstanceId":{"format":"int32","type":"integer","x-samplevalue":0},"_ID_FLEX_NUM":{"format":"int32","type":"integer","x-samplevalue":0},"_PEOPLE_GROUP_ID":{"format":"int32","type":"integer","x-samplevalue":0},"links":{"items":{"$ref":"#/definitions/listEmployeeGetResAssignmentsPeopleGroupKeyFlexfieldLinks"},"type":"array"}},"title":"peopleGroupKeyFlexfield","type":"object"},"listTimeCardsGetResTimeAttributes":{"properties":{"attributeId":{"format":"int32","type":"integer","x-samplevalue":0},"attributeName":{"type":"string","x-samplevalue":"string"},"attributeType":{"type":"string","x-samplevalue":"string"},"attributeValue":{"type":"string","x-samplevalue":"string"},"links":{"items":{"$ref":"#/definitions/listTimeCardsGetResTimeAttributesLinks"},"type":"array"},"timeBuildingBlockId":{"format":"int32","type":"integer","x-samplevalue":0},"timeBuildingBlockVersion":{"format":"int32","type":"integer","x-samplevalue":0}},"title":"timeAttributes","type":"object"},"emps-roles-item":{"properties":{"CreationDate":{"description":"Date and time of creation of the employee role record.","format":"date-time","type":"string"},"EndDate":{"description":"End date of the role.","format":"date","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee role record.","format":"date-time","type":"string"},"RoleCommonName":{"description":"Short name of the role.","maxLength":4000,"type":"string"},"RoleGUID":{"description":"Globally unique identifer for the role record in Oracle Cloud. Valid values are defined in the list RoleGUIDLOV.","maxLength":64,"type":"string"},"RoleName":{"description":"Name of the role.","maxLength":4000,"type":"string"},"StartDate":{"description":"Start date of the role.","format":"date","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for role.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: RoleGUID; Target Attribute: RoleGuid</li><li>Display Attribute: RoleName</li><li>Display Attribute: RoleCommonName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/roles/{RoleGUID}/lov/RoleGUIDLOV?fields=RoleGuid,RoleName,RoleCommonName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["RoleGUID"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"RoleCommonName":{"description":"Short name for the role.","type":"string"},"RoleGuid":{"description":"Globally unique identifer for the role record in Oracle Fusion.","type":"string"},"RoleName":{"description":"Name for the role.","type":"string"}},"type":"object"},"title":"RoleGUID LOV"}]},"employeesPostRes":{"properties":{"AddressLine1":{"description":"First line of the primary mailing address.","maxLength":240,"title":"Address Line 1","type":"string"},"AddressLine2":{"description":"Second line of the primary mailing address.","maxLength":240,"title":"Address Line 2","type":"string"},"AddressLine3":{"description":"Third line of the primary mailing address.","maxLength":240,"title":"Address Line 3","type":"string"},"CitizenshipId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"CitizenshipLegislationCode":{"description":"Legislation code derived from the legal entity. Valid values are defined in the list CitizenshipLegislationCodeLOV.","maxLength":30,"title":"Citizenship","type":"string"},"CitizenshipStatus":{"description":"Status of the person's citizenship. Valid values are defined in the list CitizenshipStatusLOV.","maxLength":30,"title":"Citizenship Status","type":"string"},"CitizenshipToDate":{"description":"End date of citizenship.","format":"date","title":"To Date","type":"string"},"City":{"description":"Town or city in which the address is located.","maxLength":30,"title":"Town or City","type":"string"},"CorrespondenceLanguage":{"description":"Preferred language for communication. Valid values are defined in the list CorrespondenceLanguageLOV.","maxLength":30,"title":"Correspondence Language","type":"string"},"Country":{"description":"Country in which the address is located.","maxLength":60,"title":"Country","type":"string"},"CreationDate":{"description":"Date and time of creation of the employee record.","format":"date-time","type":"string"},"DateOfBirth":{"description":"Date of birth of the person.","format":"date","title":"Date of Birth","type":"string"},"DisplayName":{"description":"Person's display name.","maxLength":240,"title":"Name","type":"string"},"DriversLicenseExpirationDate":{"description":"Expiration date of the driver's license.","format":"date","title":"To Date","type":"string"},"DriversLicenseId":{"description":"System-generated primary key. Surrogate key.","format":"int64","type":"integer"},"DriversLicenseIssuingCountry":{"description":"Country that issued the driver's license.","maxLength":30,"title":"Issuing Country","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee is effective.","format":"date","title":"Effective Start Date","type":"string"},"Ethnicity":{"description":"Person's ethnicity for the legislation code. Valid values are defined in the list EthnicityLOV.","maxLength":30,"title":"Ethnicity","type":"string"},"FirstName":{"description":"Person's first name.","maxLength":150,"title":"First Name","type":"string"},"Gender":{"description":"Person's gender. Valid values are defined in the list GenderLOV.","maxLength":30,"title":"Gender","type":"string"},"HireDate":{"description":"Hire date of the employee.","format":"date","type":"string"},"HomeFaxAreaCode":{"description":"Area code of the phone number for the home fax machine.","maxLength":30,"title":"Area Code","type":"string"},"HomeFaxCountryCode":{"description":"Country code of the phone number for the home fax machine.","maxLength":30,"title":"Country Code","type":"string"},"HomeFaxExtension":{"description":"Extension of the phone number for the home fax machine.","maxLength":60,"title":"Extension","type":"string"},"HomeFaxLegislationCode":{"description":"Legislation code of the home fax number.","maxLength":4,"title":"Country Code","type":"string"},"HomeFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"HomePhoneAreaCode":{"description":"Area code of the home phone number.","maxLength":30,"title":"Area Code","type":"string"},"HomePhoneCountryCode":{"description":"Country code of the home phone number.","maxLength":30,"title":"Country Code","type":"string"},"HomePhoneExtension":{"description":"Extension of the home phone number.","maxLength":60,"title":"Extension","type":"string"},"HomePhoneLegislationCode":{"description":"Legislation code of the home phone number.","maxLength":4,"title":"Country Code","type":"string"},"HomePhoneNumber":{"description":"Home phone number.","maxLength":60,"title":"Number","type":"string"},"Honors":{"description":"Higher qualification appended to a person's name. For example, PhD.","maxLength":80,"title":"Honors","type":"string"},"LastName":{"description":"Person's last name.","maxLength":150,"title":"Last Name","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee record.","format":"date-time","type":"string"},"LegalEntityId":{"description":"Unique identifier for the legal entity. Valid values are defined in the list LegalEmployerLOV.","format":"int64","type":"integer"},"LicenseNumber":{"description":"Person's driving license number.","maxLength":150,"title":"License Number","type":"string"},"MaritalStatus":{"description":"Person's marital status. Valid values are defined in the list MaritalStatusLOV.","maxLength":30,"title":"Marital Status","type":"string"},"MiddleName":{"description":"Person's middle name.","maxLength":80,"title":"Middle Names","type":"string"},"MilitaryVetStatus":{"description":"Indicates whether the person is on military service. Valid values are defined in the listt MilitaryVetStatusLOV.","maxLength":30,"type":"string"},"NameSuffix":{"description":"Part of the name appended to a person's last name such as Jr., III, etc.","maxLength":80,"title":"Suffix","type":"string"},"NationalId":{"description":"Primary key generated by the application.","maxLength":30,"title":"National ID","type":"string"},"NationalIdCountry":{"description":"Country of nationality.","maxLength":30,"title":"Place of Issue","type":"string"},"NationalIdExpirationDate":{"description":"Expiration date of the national identifier.","format":"date","title":"Expiration Date","type":"string"},"NationalIdType":{"description":"Type of national identifier. Valid values are defined in the list NationalIdTypeLOV.","maxLength":30,"title":"National ID Type","type":"string"},"PassportExpirationDate":{"description":"Expiration date of the passport.","format":"date","title":"Expiration Date","type":"string"},"PassportId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"PassportIssueDate":{"description":"Date of issue of passport.","format":"date","title":"Issue Date","type":"string"},"PassportIssuingCountry":{"description":"Country that issued the passport.","maxLength":30,"title":"Issuing Country","type":"string"},"PassportNumber":{"description":"Person's passport number.","maxLength":30,"title":"Number","type":"string"},"PersonId":{"description":"Internal identifier for the person.","format":"int64","title":"Person ID","type":"integer"},"PersonNumber":{"description":"Number assigned to a person to identify the person uniquely. Does not depend on the person type (employee, contingent worker, etc). Search on this attribute is not case sensitive.","maxLength":30,"title":"Person Number","type":"string"},"PostalCode":{"description":"Postal code of the address.","maxLength":30,"title":"Postal Code","type":"string"},"PreferredName":{"description":"Person's preferred first name.","maxLength":80,"title":"Known As","type":"string"},"PreviousLastName":{"description":"Previous last name of the person, if any.","maxLength":150,"title":"Previous Last Name","type":"string"},"ProjectedTerminationDate":{"description":"Projected termination date for the worker.","format":"date","type":"string"},"Region":{"description":"Primary region in which the address is located.","maxLength":120,"title":"Region 1","type":"string"},"Region2":{"description":"Secondary region within the primary region.","maxLength":120,"title":"Region 2","type":"string"},"Religion":{"description":"Person's religion. Valid values are defined in the list ReligionLOV.","maxLength":30,"title":"Religion","type":"string"},"ReligionId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"Salutation":{"description":"Person salutation such as Mr., Ms., and so on. Valid values are defined in the list SalutationLOV.","maxLength":30,"title":"Title","type":"string"},"TerminationDate":{"description":"Termination date of the employee.","format":"date","type":"string"},"UserName":{"description":"User name for the record. This value is optional and is automatically generated if not specified. Also works with UsernameMatching attribute. Search on this attribute is not case sensitive.","maxLength":100,"type":"string"},"WorkEmail":{"description":"Person's work email address. Search on this attribute is not case sensitive.","maxLength":240,"title":"Email","type":"string"},"WorkFaxAreaCode":{"description":"Area code of the phone number for the work fax machine.","maxLength":30,"title":"Area Code","type":"string"},"WorkFaxCountryCode":{"description":"Country code of the phone number for the work fax machine.","maxLength":30,"title":"Country Code","type":"string"},"WorkFaxExtension":{"description":"Extension of the phone number for the work fax machine.","maxLength":60,"title":"Extension","type":"string"},"WorkFaxLegislationCode":{"description":"Legislation code of the work fax number.","maxLength":4,"title":"Country Code","type":"string"},"WorkFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"WorkMobilePhoneAreaCode":{"description":"Area code of the work mobile phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkMobilePhoneCountryCode":{"description":"Country code of the work mobile phone number.","maxLength":30,"title":"Country Code","type":"string"},"WorkMobilePhoneExtension":{"description":"Extension of the work mobile phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkMobilePhoneLegislationCode":{"description":"Legislation code of the work mobile phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkMobilePhoneNumber":{"description":"Work mobile phone number.","maxLength":60,"title":"Number","type":"string"},"WorkPhoneAreaCode":{"description":"Area code of the work phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkPhoneCountryCode":{"description":"Country code of the work phone number. For example, 39 for Italy.","maxLength":30,"title":"Country Code","type":"string"},"WorkPhoneExtension":{"description":"Extension of the work phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkPhoneLegislationCode":{"description":"Legislation code of the work phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkPhoneNumber":{"description":"Work phone number.","maxLength":60,"title":"Number","type":"string"},"WorkerType":{"description":"Primary type of a worker such as employee (E), contingent worker (C), pending worker (P), or non-worker (N). This is a read-only attribute as indicated in the describe metadata.","maxLength":30,"type":"string"},"assignments":{"description":"The assignments resource is a child of the emps resource. It includes all employee assignments as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-item"},"title":"Assignments","type":"array"},"directReports":{"description":"The directReports resource is a child of the emps resource. It includes all employee direct reports as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-directReports-item"},"title":"Direct Reports","type":"array"},"id":{"description":"Employee Unique ID.","title":"id","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"personDFF":{"description":"The personDFF resource is a child of the emps resource. It includes all employee descriptive flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personDFF-item"},"title":"Person Descriptive Flexfields","type":"array"},"personExtraInformation":{"description":"The personExtraInformation resource is a child of the emps resource. It includes all the extensible flexfields for additional person information as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personExtraInformation-item"},"title":"Person Extra Information Extensible FlexFields","type":"array"},"photo":{"description":"The photo resource is a child of the emps resource. It includes all employee primary photos as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-photo-item"},"title":"Photos","type":"array"},"roles":{"description":"The roles resource is a child of the emps resource. It includes all employee roles as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-roles-item"},"title":"Roles","type":"array"},"visas":{"description":"The visas resource is a child of the emps resource. It includes all employee visas as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-visas-item"},"title":"Visas","type":"array"}},"type":"object","x-links":[{"description":"The list of values for person salutation.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Salutation; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/SalutationLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Salutation"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Salutation LOV"},{"description":"The list of values for the preferred language of communication.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CorrespondenceLanguage; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CorrespondenceLanguageLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CorrespondenceLanguage"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CorrespondenceLanguage LOV"},{"description":"The list of values for person ethnicity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Ethnicity; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/EthnicityLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Ethnicity"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Ethnicity LOV"},{"description":"The list of values for legal entities.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: LegalEntityId; Target Attribute: OrganizationId</li><li>Display Attribute: OrganizationId</li><li>Display Attribute: LegalEntityId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/LegalEmployerLOV?fields=OrganizationId,LegalEntityId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["LegalEntityId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LegalEntityId":{"description":"Unique identifier for the legal entity.","type":"integer"},"Name":{"description":"Name of the legal entity.","type":"string"},"OrganizationId":{"description":"Unique identifier for the organization.","type":"integer"}},"type":"object"},"title":"LegalEntityId LOV"},{"description":"The list of values for gender such as MALE or FEMALE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Gender; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/GenderLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Gender"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Gender LOV"},{"description":"The list of values for marital status, such as MARRIED or SINGLE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MaritalStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MaritalStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MaritalStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MaritalStatus LOV"},{"description":"The list of values for national identifiers.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: NationalIdType; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/NationalIdTypeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["NationalIdType"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"NationalIdType LOV"},{"description":"The list of values for citizenship status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipStatus LOV"},{"description":"The list of values for the legislation code derived from the legal entity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipLegislationCode; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipLegislationCodeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipLegislationCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipLegislationCode LOV"},{"description":"The list of values for religion.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Religion; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/ReligionLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Religion"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Religion LOV"},{"description":"The list of values for military service status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MilitaryVetStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MilitaryVetStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MilitaryVetStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MilitaryVetStatus LOV"}],"x-primary-key":["id"]},"employeesPostReq":{"properties":{"AddressLine1":{"description":"First line of the primary mailing address.","maxLength":240,"title":"Address Line 1","type":"string"},"AddressLine2":{"description":"Second line of the primary mailing address.","maxLength":240,"title":"Address Line 2","type":"string"},"AddressLine3":{"description":"Third line of the primary mailing address.","maxLength":240,"title":"Address Line 3","type":"string"},"CitizenshipId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"CitizenshipLegislationCode":{"description":"Legislation code derived from the legal entity. Valid values are defined in the list CitizenshipLegislationCodeLOV.","maxLength":30,"title":"Citizenship","type":"string"},"CitizenshipStatus":{"description":"Status of the person's citizenship. Valid values are defined in the list CitizenshipStatusLOV.","maxLength":30,"title":"Citizenship Status","type":"string"},"CitizenshipToDate":{"description":"End date of citizenship.","format":"date","title":"To Date","type":"string"},"City":{"description":"Town or city in which the address is located.","maxLength":30,"title":"Town or City","type":"string"},"CorrespondenceLanguage":{"description":"Preferred language for communication. Valid values are defined in the list CorrespondenceLanguageLOV.","maxLength":30,"title":"Correspondence Language","type":"string"},"Country":{"description":"Country in which the address is located.","maxLength":60,"title":"Country","type":"string"},"CreationDate":{"description":"Date and time of creation of the employee record.","format":"date-time","type":"string"},"DateOfBirth":{"description":"Date of birth of the person.","format":"date","title":"Date of Birth","type":"string"},"DisplayName":{"description":"Person's display name.","maxLength":240,"title":"Name","type":"string"},"DriversLicenseExpirationDate":{"description":"Expiration date of the driver's license.","format":"date","title":"To Date","type":"string"},"DriversLicenseId":{"description":"System-generated primary key. Surrogate key.","format":"int64","type":"integer"},"DriversLicenseIssuingCountry":{"description":"Country that issued the driver's license.","maxLength":30,"title":"Issuing Country","type":"string"},"EffectiveStartDate":{"description":"Date at the beginning of the date range within which the employee is effective.","format":"date","title":"Effective Start Date","type":"string"},"Ethnicity":{"description":"Person's ethnicity for the legislation code. Valid values are defined in the list EthnicityLOV.","maxLength":30,"title":"Ethnicity","type":"string"},"FirstName":{"description":"Person's first name.","maxLength":150,"title":"First Name","type":"string"},"Gender":{"description":"Person's gender. Valid values are defined in the list GenderLOV.","maxLength":30,"title":"Gender","type":"string"},"HireDate":{"description":"Hire date of the employee.","format":"date","type":"string"},"HomeFaxAreaCode":{"description":"Area code of the phone number for the home fax machine.","maxLength":30,"title":"Area Code","type":"string"},"HomeFaxCountryCode":{"description":"Country code of the phone number for the home fax machine.","maxLength":30,"title":"Country Code","type":"string"},"HomeFaxExtension":{"description":"Extension of the phone number for the home fax machine.","maxLength":60,"title":"Extension","type":"string"},"HomeFaxLegislationCode":{"description":"Legislation code of the home fax number.","maxLength":4,"title":"Country Code","type":"string"},"HomeFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"HomePhoneAreaCode":{"description":"Area code of the home phone number.","maxLength":30,"title":"Area Code","type":"string"},"HomePhoneCountryCode":{"description":"Country code of the home phone number.","maxLength":30,"title":"Country Code","type":"string"},"HomePhoneExtension":{"description":"Extension of the home phone number.","maxLength":60,"title":"Extension","type":"string"},"HomePhoneLegislationCode":{"description":"Legislation code of the home phone number.","maxLength":4,"title":"Country Code","type":"string"},"HomePhoneNumber":{"description":"Home phone number.","maxLength":60,"title":"Number","type":"string"},"Honors":{"description":"Higher qualification appended to a person's name. For example, PhD.","maxLength":80,"title":"Honors","type":"string"},"LastName":{"description":"Person's last name.","maxLength":150,"title":"Last Name","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee record.","format":"date-time","type":"string"},"LegalEntityId":{"description":"Unique identifier for the legal entity. Valid values are defined in the list LegalEmployerLOV.","format":"int64","type":"integer"},"LicenseNumber":{"description":"Person's driving license number.","maxLength":150,"title":"License Number","type":"string"},"MaritalStatus":{"description":"Person's marital status. Valid values are defined in the list MaritalStatusLOV.","maxLength":30,"title":"Marital Status","type":"string"},"MiddleName":{"description":"Person's middle name.","maxLength":80,"title":"Middle Names","type":"string"},"MilitaryVetStatus":{"description":"Indicates whether the person is on military service. Valid values are defined in the listt MilitaryVetStatusLOV.","maxLength":30,"type":"string"},"NameSuffix":{"description":"Part of the name appended to a person's last name such as Jr., III, etc.","maxLength":80,"title":"Suffix","type":"string"},"NationalId":{"description":"Primary key generated by the application.","maxLength":30,"title":"National ID","type":"string"},"NationalIdCountry":{"description":"Country of nationality.","maxLength":30,"title":"Place of Issue","type":"string"},"NationalIdExpirationDate":{"description":"Expiration date of the national identifier.","format":"date","title":"Expiration Date","type":"string"},"NationalIdType":{"description":"Type of national identifier. Valid values are defined in the list NationalIdTypeLOV.","maxLength":30,"title":"National ID Type","type":"string"},"PassportExpirationDate":{"description":"Expiration date of the passport.","format":"date","title":"Expiration Date","type":"string"},"PassportId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"PassportIssueDate":{"description":"Date of issue of passport.","format":"date","title":"Issue Date","type":"string"},"PassportIssuingCountry":{"description":"Country that issued the passport.","maxLength":30,"title":"Issuing Country","type":"string"},"PassportNumber":{"description":"Person's passport number.","maxLength":30,"title":"Number","type":"string"},"PersonId":{"description":"Internal identifier for the person.","format":"int64","title":"Person ID","type":"integer"},"PersonNumber":{"description":"Number assigned to a person to identify the person uniquely. Does not depend on the person type (employee, contingent worker, etc). Search on this attribute is not case sensitive.","maxLength":30,"title":"Person Number","type":"string"},"PostalCode":{"description":"Postal code of the address.","maxLength":30,"title":"Postal Code","type":"string"},"PreferredName":{"description":"Person's preferred first name.","maxLength":80,"title":"Known As","type":"string"},"PreviousLastName":{"description":"Previous last name of the person, if any.","maxLength":150,"title":"Previous Last Name","type":"string"},"ProjectedTerminationDate":{"description":"Projected termination date for the worker.","format":"date","type":"string"},"Region":{"description":"Primary region in which the address is located.","maxLength":120,"title":"Region 1","type":"string"},"Region2":{"description":"Secondary region within the primary region.","maxLength":120,"title":"Region 2","type":"string"},"Religion":{"description":"Person's religion. Valid values are defined in the list ReligionLOV.","maxLength":30,"title":"Religion","type":"string"},"ReligionId":{"description":"Primary key generated by the application.","format":"int64","type":"integer"},"Salutation":{"description":"Person salutation such as Mr., Ms., and so on. Valid values are defined in the list SalutationLOV.","maxLength":30,"title":"Title","type":"string"},"TerminationDate":{"description":"Termination date of the employee.","format":"date","type":"string"},"UserName":{"description":"User name for the record. This value is optional and is automatically generated if not specified. Also works with UsernameMatching attribute. Search on this attribute is not case sensitive.","maxLength":100,"type":"string"},"WorkEmail":{"description":"Person's work email address. Search on this attribute is not case sensitive.","maxLength":240,"title":"Email","type":"string"},"WorkFaxAreaCode":{"description":"Area code of the phone number for the work fax machine.","maxLength":30,"title":"Area Code","type":"string"},"WorkFaxCountryCode":{"description":"Country code of the phone number for the work fax machine.","maxLength":30,"title":"Country Code","type":"string"},"WorkFaxExtension":{"description":"Extension of the phone number for the work fax machine.","maxLength":60,"title":"Extension","type":"string"},"WorkFaxLegislationCode":{"description":"Legislation code of the work fax number.","maxLength":4,"title":"Country Code","type":"string"},"WorkFaxNumber":{"description":"Phone number for the home fax machine.","maxLength":60,"title":"Number","type":"string"},"WorkMobilePhoneAreaCode":{"description":"Area code of the work mobile phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkMobilePhoneCountryCode":{"description":"Country code of the work mobile phone number.","maxLength":30,"title":"Country Code","type":"string"},"WorkMobilePhoneExtension":{"description":"Extension of the work mobile phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkMobilePhoneLegislationCode":{"description":"Legislation code of the work mobile phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkMobilePhoneNumber":{"description":"Work mobile phone number.","maxLength":60,"title":"Number","type":"string"},"WorkPhoneAreaCode":{"description":"Area code of the work phone number.","maxLength":30,"title":"Area Code","type":"string"},"WorkPhoneCountryCode":{"description":"Country code of the work phone number. For example, 39 for Italy.","maxLength":30,"title":"Country Code","type":"string"},"WorkPhoneExtension":{"description":"Extension of the work phone number.","maxLength":60,"title":"Extension","type":"string"},"WorkPhoneLegislationCode":{"description":"Legislation code of the work phone number.","maxLength":4,"title":"Country Code","type":"string"},"WorkPhoneNumber":{"description":"Work phone number.","maxLength":60,"title":"Number","type":"string"},"WorkerType":{"description":"Primary type of a worker such as employee (E), contingent worker (C), pending worker (P), or non-worker (N). This is a read-only attribute as indicated in the describe metadata.","maxLength":30,"type":"string"},"assignments":{"description":"The assignments resource is a child of the emps resource. It includes all employee assignments as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-assignments-item"},"title":"Assignments","type":"array"},"directReports":{"description":"The directReports resource is a child of the emps resource. It includes all employee direct reports as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-directReports-item"},"title":"Direct Reports","type":"array"},"employeeUniqId":{"description":"Employee Uniq Id","maxLength":500,"title":"Employee Unique Id","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"},"personDFF":{"description":"The personDFF resource is a child of the emps resource. It includes all employee descriptive flexfields as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personDFF-item"},"title":"Person Descriptive Flexfields","type":"array"},"personExtraInformation":{"description":"The personExtraInformation resource is a child of the emps resource. It includes all the extensible flexfields for additional person information as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-personExtraInformation-item"},"title":"Person Extra Information Extensible FlexFields","type":"array"},"photo":{"description":"The photo resource is a child of the emps resource. It includes all employee primary photos as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-photo-item"},"title":"Photos","type":"array"},"roles":{"description":"The roles resource is a child of the emps resource. It includes all employee roles as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-roles-item"},"title":"Roles","type":"array"},"visas":{"description":"The visas resource is a child of the emps resource. It includes all employee visas as of the specified date. By default, the current date is retained.<br>This resource is currently under controlled availability.","items":{"$ref":"#/definitions/emps-visas-item"},"title":"Visas","type":"array"}},"type":"object","x-links":[{"description":"The list of values for person salutation.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Salutation; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/SalutationLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Salutation"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Salutation LOV"},{"description":"The list of values for the preferred language of communication.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CorrespondenceLanguage; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CorrespondenceLanguageLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CorrespondenceLanguage"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CorrespondenceLanguage LOV"},{"description":"The list of values for person ethnicity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Ethnicity; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/EthnicityLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Ethnicity"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Ethnicity LOV"},{"description":"The list of values for legal entities.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: LegalEntityId; Target Attribute: OrganizationId</li><li>Display Attribute: OrganizationId</li><li>Display Attribute: LegalEntityId</li><li>Display Attribute: Name</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/LegalEmployerLOV?fields=OrganizationId,LegalEntityId,Name","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["LegalEntityId"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LegalEntityId":{"description":"Unique identifier for the legal entity.","type":"integer"},"Name":{"description":"Name of the legal entity.","type":"string"},"OrganizationId":{"description":"Unique identifier for the organization.","type":"integer"}},"type":"object"},"title":"LegalEntityId LOV"},{"description":"The list of values for gender such as MALE or FEMALE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Gender; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/GenderLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Gender"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Gender LOV"},{"description":"The list of values for marital status, such as MARRIED or SINGLE.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MaritalStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MaritalStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MaritalStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MaritalStatus LOV"},{"description":"The list of values for national identifiers.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: NationalIdType; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/NationalIdTypeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["NationalIdType"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"NationalIdType LOV"},{"description":"The list of values for citizenship status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipStatus LOV"},{"description":"The list of values for the legislation code derived from the legal entity.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: CitizenshipLegislationCode; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/CitizenshipLegislationCodeLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["CitizenshipLegislationCode"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"CitizenshipLegislationCode LOV"},{"description":"The list of values for religion.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: Religion; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/ReligionLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["Religion"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"Religion LOV"},{"description":"The list of values for military service status.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: MilitaryVetStatus; Target Attribute: LookupCode</li><li>Display Attribute: LookupCode</li><li>Display Attribute: Meaning</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/lov/MilitaryVetStatusLOV?fields=LookupCode,Meaning","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["MilitaryVetStatus"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"LookupCode":{"description":"Unique code for the lookup.","type":"string"},"Meaning":{"description":"Display value for the lookup in the application.","type":"string"}},"type":"object"},"title":"MilitaryVetStatus LOV"}]},"swaggerpost":{"x-has-customfields":false,"type":"object","title":"post","properties":{"summary":{"x-samplevalue":"Create a new contact in the CRM service. Contact creation will flow through Cloud Elements to your CRM service. With the exception of the 'id' field, the required fields indicated in the 'Contact' model are those required to create a new contact.","type":"string"},"operationId":{"x-samplevalue":"createContact","type":"string"},"responses":{"$ref":"#/definitions/swaggerresponses"},"parameters":{"type":"array","items":{"$ref":"#/definitions/swaggerparameters"}},"tags":{"x-samplevalue":["contacts"],"type":"array","items":{"type":"string"}}}},"employeesRolesPostResponse":{"properties":{"CreationDate":{"description":"Date and time of creation of the employee role record.","format":"date-time","type":"string"},"EndDate":{"description":"End date of the role.","format":"date","type":"string"},"LastUpdateDate":{"description":"Date and time of update of the employee role record.","format":"date-time","type":"string"},"RoleCommonName":{"description":"Short name of the role.","maxLength":4000,"type":"string"},"RoleGUID":{"description":"Globally unique identifer for the role record in Oracle Cloud. Valid values are defined in the list RoleGUIDLOV.","maxLength":64,"type":"string"},"RoleName":{"description":"Name of the role.","maxLength":4000,"type":"string"},"RoleUniqId":{"description":"Unqiue Hash Id of an Role","maxLength":300,"title":"Role Unique ID","type":"string"},"StartDate":{"description":"Start date of the role.","format":"date","type":"string"},"id":{"description":"Unique ID of the role.","type":"string"},"links":{"description":"Link Relations","items":{"$ref":"#/definitions/link"},"title":"Items","type":"array"}},"type":"object","x-links":[{"description":"The list of values for role.<p>The following properties are defined on the LOV link relation:</p><ul><li>Source Attribute: RoleGUID; Target Attribute: RoleGuid</li><li>Display Attribute: RoleName</li><li>Display Attribute: RoleCommonName</li></ul>","effectiveMethod":"get","encType":"application/x-www-form-urlencoded","href":"/hcmRestApi/resources/11.13.18.05/emps/{empsUniqID}/child/roles/{RoleGUID}/lov/RoleGUIDLOV?fields=RoleGuid,RoleName,RoleCommonName","mediaType":"application/vnd.oracle.adf.resourcecollection+json","method":"get","o:properties":["RoleGUID"],"rel":"lov","schema":{"properties":{"dependency":{"description":"This parameter specifies dependencies which are attributes that are set before and rolled back after generating the response. Generally they are used to preview the effects of an attribute change. The attributes specified in this parameter are always set in the resource instance in question. When a child resource collection is requested and the parameter is set, the attributes will be set in the parent resource instance before generating the resource collection payload. The value of this query parameter is a set of dependency attributes.  Example: dependency=ProductId=2<br><br>Format: &lt;attr1&gt;=&lt;val1&gt;,&lt;attr2&gt;=&lt;value2&gt;","type":"string"},"limit":{"description":"This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.","type":"integer"},"links":{"description":"The link relations associated with the resource instance.","items":{"$ref":"#/definitions/link"},"type":"array"},"offset":{"description":"Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.","type":"integer"},"onlyData":{"description":"The resource item payload will be filtered in order to contain only data (no links section, for example).","type":"boolean"},"orderBy":{"description":"This parameter orders a resource collection based on the specified attributes.  The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and \"asc\" or \"desc\".  Specify \"asc\" for ascending and \"desc\" for descending. The default value is \"asc\".  For example, ?orderBy=field1:asc,field2:desc","type":"string"},"totalResults":{"description":"The resource collection representation will include the \"estimated row count\" when \"?totalResults=true\", otherwise the count is not included.  The default value is \"false\".","type":"boolean"}},"type":"object"},"targetSchema":{"properties":{"RoleCommonName":{"description":"Short name for the role.","type":"string"},"RoleGuid":{"description":"Globally unique identifer for the role record in Oracle Fusion.","type":"string"},"RoleName":{"description":"Name for the role.","type":"string"}},"type":"object"},"title":"RoleGUID LOV"}],"x-primary-key":["id"]}},"swagger":"2.0","info":{"x-element-name":"Oracle HCM Cloud","x-element-hub":"humancapital","x-element-key":"oraclehcmcloud","contact":{"email":"support@cloud-elements.com"},"title":"oraclehcmcloud","x-element-id":7580,"version":"api-v2"},"tags":[{"name":"time-events"},{"name":"ping"},{"name":"requisitions"},{"name":"objects"},{"name":"objectName"},{"name":"time-cards"},{"name":"positions"},{"name":"employees"},{"name":"bulk"}]}