Robin AI · Schema

Robin AI Table

A Robin AI Table — a bulk extraction job that runs a Template's prompts across a set of Documents and produces structured Results with clickable Citations.

LegalLegalTechContract ReviewContract AnalysisContract Lifecycle ManagementCLMDocument ExtractionStructured DataLegal AIArtificial IntelligenceWord Add-InPlaybookRedliningObligation TrackingAnthropicClaude

Properties

Name Type Description
id string
name string
status string
created_at string
updated_at string
started_at stringnull
completed_at stringnull
failed_at stringnull
cancelled_at stringnull
document_count integer
result_count integer
group_id string
group_name string
View JSON Schema on GitHub

JSON Schema

robin-ai-table-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/robin-ai/main/json-schema/robin-ai-table-schema.json",
  "title": "Robin AI Table",
  "description": "A Robin AI Table — a bulk extraction job that runs a Template's prompts across a set of Documents and produces structured Results with clickable Citations.",
  "type": "object",
  "required": ["id", "name", "status", "created_at", "updated_at"],
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^tbl_[A-Za-z0-9]+$",
      "examples": ["tbl_11abcd1234efgh6789"]
    },
    "name": { "type": "string" },
    "status": {
      "type": "string",
      "enum": ["draft", "building", "completed", "failed", "cancelled"]
    },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" },
    "started_at": { "type": ["string", "null"], "format": "date-time" },
    "completed_at": { "type": ["string", "null"], "format": "date-time" },
    "failed_at": { "type": ["string", "null"], "format": "date-time" },
    "cancelled_at": { "type": ["string", "null"], "format": "date-time" },
    "document_count": { "type": "integer", "minimum": 0 },
    "result_count": { "type": "integer", "minimum": 0 },
    "group_id": { "type": "string" },
    "group_name": { "type": "string" }
  }
}