PydanticAI · Schema

DashboardDefinitionRead

AIAgentsPythonLLMType SafetyStructured OutputsDependency InjectionOpenAIAnthropicGeminiObservabilityFramework

Properties

Name Type Description
kind string
metadata object
spec object
View JSON Schema on GitHub

JSON Schema

logfire-dashboard.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://pydantic.dev/schemas/DashboardDefinitionRead",
  "title": "DashboardDefinitionRead",
  "properties": {
    "kind": {
      "type": "string",
      "enum": [
        "Dashboard"
      ],
      "title": "Kind"
    },
    "metadata": {
      "$ref": "#/components/schemas/DashboardProjectMetadataRead"
    },
    "spec": {
      "$ref": "#/components/schemas/DashboardSpec"
    }
  },
  "type": "object",
  "required": [
    "kind",
    "metadata",
    "spec"
  ]
}