{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CredentialsEmail", "type": "object", "description": "Email/password credentials for a user", "properties": { "email": { "type": "string", "description": "Email address" }, "is_disabled": { "type": "boolean", "description": "Whether these credentials are disabled" }, "logged_in_at": { "type": "string", "description": "Timestamp of last login with these credentials" }, "created_at": { "type": "string", "description": "Timestamp when these credentials were created" }, "url": { "type": "string", "description": "Relative URL" } } }