fly-io · Schema

TokenInfo

User and organization information for a Fly.io OAuth token.

Properties

Name Type Description
user_id string The Fly.io user ID associated with this token.
email string The obfuscated email alias of the authenticated user.
organization_id string The Fly.io organization ID the user is acting within.
organization_name string The display name of the organization.
role string The user's role within the organization.
View JSON Schema on GitHub

JSON Schema

fly-io-tokeninfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TokenInfo",
  "title": "TokenInfo",
  "type": "object",
  "description": "User and organization information for a Fly.io OAuth token.",
  "properties": {
    "user_id": {
      "type": "string",
      "description": "The Fly.io user ID associated with this token."
    },
    "email": {
      "type": "string",
      "description": "The obfuscated email alias of the authenticated user."
    },
    "organization_id": {
      "type": "string",
      "description": "The Fly.io organization ID the user is acting within."
    },
    "organization_name": {
      "type": "string",
      "description": "The display name of the organization."
    },
    "role": {
      "type": "string",
      "description": "The user's role within the organization."
    }
  }
}