{ "$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." } } }