Better Stack · Schema

TeamMemberAttributes

Attributes of a team member.

IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats

Properties

Name Type Description
email string Team member's email address.
name string Team member's display name.
role string Team member role.
created_at string When the member joined or was invited.
updated_at string When the record was last updated.
View JSON Schema on GitHub

JSON Schema

better-stack-team-member-attributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-schema/better-stack-team-member-attributes-schema.json",
  "title": "TeamMemberAttributes",
  "description": "Attributes of a team member.",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "description": "Team member's email address.",
      "example": "[email protected]"
    },
    "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": "string",
      "format": "date-time",
      "description": "When the member joined or was invited.",
      "example": "2025-01-10T08:00:00Z"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the record was last updated.",
      "example": "2026-03-01T12:00:00Z"
    }
  }
}