{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-structure/better-stack-team-member-attributes-structure.json", "name": "TeamMemberAttributes", "description": "Attributes of a team member.", "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "Team member's email address.", "example": "jsmith@example.com" }, "name": { "type": "string", "nullable": true, "description": "Team member's display name.", "example": "Jane Smith" }, "role": { "type": "string", "description": "Team member role.", "enum": [ "owner", "admin", "member", "viewer" ], "example": "admin" }, "created_at": { "type": "datetime", "description": "When the member joined or was invited.", "example": "2025-01-10T08:00:00Z" }, "updated_at": { "type": "datetime", "description": "When the record was last updated.", "example": "2026-03-01T12:00:00Z" } } }