{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectUser", "title": "ProjectUser", "type": "object", "properties": { "id": { "type": "string" }, "userId": { "type": "string" }, "email": { "type": "string" }, "name": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "status": { "type": "string", "enum": [ "active", "inactive", "pending" ] }, "roleIds": { "type": "array", "items": { "type": "string" } }, "companyId": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" } } }