{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://docs.runalloy.com/schemas/alloy-embedded-user-schema.json", "title": "User", "type": "object", "description": "An end user in the Alloy Embedded platform", "properties": { "userId": { "type": "string", "description": "Unique identifier for the user" }, "username": { "type": "string", "description": "Username or external identifier for the user" }, "fullName": { "type": "string", "description": "Full display name of the user" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the user was created" } } }