Properties
| Name | Type | Description |
|---|---|---|
| artifactId | integer | The unique artifact ID of the entity. |
| firstName | string | First name of the entity. |
| lastName | string | Last name of the entity. |
| emailAddress | string | Email address of the entity. |
| employeeStatus | string | Employment status of the entity. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Entity",
"title": "Entity",
"type": "object",
"properties": {
"artifactId": {
"type": "integer",
"description": "The unique artifact ID of the entity."
},
"firstName": {
"type": "string",
"description": "First name of the entity."
},
"lastName": {
"type": "string",
"description": "Last name of the entity."
},
"emailAddress": {
"type": "string",
"format": "email",
"description": "Email address of the entity."
},
"employeeStatus": {
"type": "string",
"description": "Employment status of the entity."
}
}
}