{
"properties": {
"first_name": {
"type": "string",
"title": "first_name",
"description": "The first name of the employee."
},
"middle_name": {
"type": "string",
"title": "middle_name",
"description": "The middle name of the employee."
},
"last_name": {
"type": "string",
"title": "last_name",
"description": "The last name of the employee."
},
"full_name": {
"type": "string",
"title": "full_name",
"description": "The full name of the employee."
}
},
"type": "object",
"required": [
"full_name"
],
"title": "EmployeeName",
"x-tags": [
"Schemas"
],
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://schema.pinwheelapi.com/EmployeeName.json"
}