Arize Phoenix · Schema

DatasetVersion

Phoenix DatasetVersion schema

LLM ObservabilityAI EvaluationOpenTelemetryTracingLLMOpsAI MonitoringOpen SourcePrompt EngineeringDatasetsExperiments

Properties

Name Type Description
version_id string
description object
metadata object
created_at string
View JSON Schema on GitHub

JSON Schema

phoenix-datasetversion.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/phoenix/main/json-schema/phoenix-datasetversion.json",
  "title": "DatasetVersion",
  "description": "Phoenix DatasetVersion schema",
  "properties": {
    "version_id": {
      "type": "string",
      "title": "Version Id"
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description"
    },
    "metadata": {
      "additionalProperties": true,
      "type": "object",
      "title": "Metadata"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "title": "Created At"
    }
  },
  "type": "object",
  "required": [
    "version_id",
    "description",
    "metadata",
    "created_at"
  ]
}