Better Stack · JSON Structure

Better Stack Team Member Attributes Structure

Attributes of a team member.

Type: object Properties: 5
IncidentsLogsMonitoringPlatformStatusUptimeObservabilityOn-CallHeartbeats

TeamMemberAttributes is a JSON Structure definition published by Better Stack, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

email name role created_at updated_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
    }
  }
}