Prisma
API Referenceanalytics

Get Schema Info

Get export schema information for dashboard creation.

GET
/api/v1/analytics/export/data/schema

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X get "http://localhost:8000/api/v1/analytics/export/data/schema"
{
  "dimensions": {
    "evaluator": {
      "type": "string"
    },
    "project": {
      "type": "string"
    }
  },
  "fact_table": {
    "description": "Core evaluation data",
    "name": "evaluation_results"
  },
  "last_updated": "2026-03-22T14:30:00Z",
  "measures": {
    "count": {
      "type": "integer"
    },
    "score": {
      "type": "number"
    }
  },
  "recommended_visualizations": [
    {
      "title": "Scores by evaluator",
      "type": "bar_chart"
    }
  ],
  "schema_version": "1.0.0"
}