Arize Phoenix · Schema

AnnotationResult

Phoenix AnnotationResult schema

LLM ObservabilityAI EvaluationOpenTelemetryTracingLLMOpsAI MonitoringOpen SourcePrompt EngineeringDatasetsExperiments

Properties

Name Type Description
label object The label assigned by the annotation
score object The score assigned by the annotation
explanation object Explanation of the annotation result
View JSON Schema on GitHub

JSON Schema

phoenix-annotationresult.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/phoenix/main/json-schema/phoenix-annotationresult.json",
  "title": "AnnotationResult",
  "description": "Phoenix AnnotationResult schema",
  "properties": {
    "label": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Label",
      "description": "The label assigned by the annotation"
    },
    "score": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "type": "null"
        }
      ],
      "title": "Score",
      "description": "The score assigned by the annotation"
    },
    "explanation": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Explanation",
      "description": "Explanation of the annotation result"
    }
  },
  "type": "object"
}