{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://acceldata.io/schemas/user.json", "title": "User", "type": "object", "description": "A user in the Acceldata platform", "properties": { "id": { "type": "string", "description": "User identifier" }, "email": { "type": "string", "format": "email", "description": "User email address" }, "name": { "type": "string", "description": "User full name" }, "role": { "type": "string", "description": "Assigned role" }, "status": { "type": "string", "description": "User account status", "enum": [ "active", "inactive", "invited" ] }, "createdAt": { "type": "string", "format": "date-time", "description": "Account creation timestamp" } } }