{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CredentialsEmail", "title": "CredentialsEmail", "type": "object", "description": "Email/password credentials for a user", "properties": { "email": { "type": "string", "description": "Email address", "example": "user@example.com" }, "is_disabled": { "type": "boolean", "description": "Whether these credentials are disabled", "example": true }, "logged_in_at": { "type": "string", "format": "date-time", "nullable": true, "description": "Timestamp of last login with these credentials", "example": "2026-01-15T10:30:00Z" }, "created_at": { "type": "string", "format": "date-time", "description": "Timestamp when these credentials were created", "example": "2026-01-15T10:30:00Z" }, "url": { "type": "string", "description": "Relative URL", "readOnly": true, "example": "https://www.example.com" } } }