PydanticAI · Schema

OrganizationMemberReadV1

AIAgentsPythonLLMType SafetyStructured OutputsDependency InjectionOpenAIAnthropicGeminiObservabilityFramework

Properties

Name Type Description
id string
name string
email string
role_id string
member_since string
github_username object
avatar object
role string
View JSON Schema on GitHub

JSON Schema

logfire-member.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://pydantic.dev/schemas/OrganizationMemberReadV1",
  "title": "OrganizationMemberReadV1",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "title": "Id"
    },
    "name": {
      "type": "string",
      "title": "Name"
    },
    "email": {
      "type": "string",
      "title": "Email"
    },
    "role_id": {
      "type": "string",
      "format": "uuid",
      "title": "Role Id"
    },
    "member_since": {
      "type": "string",
      "format": "date-time",
      "title": "Member Since"
    },
    "github_username": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Github Username"
    },
    "avatar": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Avatar"
    },
    "role": {
      "type": "string",
      "title": "Role"
    }
  },
  "type": "object",
  "required": [
    "id",
    "name",
    "email",
    "role_id",
    "member_since",
    "github_username",
    "avatar",
    "role"
  ]
}