QANATIX
Verticals

Example Verticals

Real schema examples for common industries.

Example Verticals

These are examples — you can create any vertical for any industry.

Manufacturing

{
  "vertical": "manufacturing",
  "entity_type": "part",
  "schema": {
    "type": "object",
    "properties": {
      "part_number": { "type": "string" },
      "material": { "type": "string" },
      "standard": { "type": "string" },
      "price_eur": { "type": "number" },
      "moq": { "type": "integer" },
      "lead_time_days": { "type": "integer" },
      "in_stock": { "type": "boolean" },
      "certifications": { "type": "array", "items": { "type": "string" } },
      "country": { "type": "string" }
    },
    "required": ["part_number"]
  }
}

Pharma & Clinical

{
  "vertical": "pharma",
  "entity_type": "compound",
  "schema": {
    "type": "object",
    "properties": {
      "compound_id": { "type": "string" },
      "inn": { "type": "string" },
      "indication": { "type": "string" },
      "phase": { "type": "string", "enum": ["preclinical", "phase1", "phase2", "phase3", "approved"] },
      "contraindications": { "type": "array", "items": { "type": "string" } },
      "dosage": { "type": "string" },
      "regulatory_status": { "type": "string" }
    },
    "required": ["compound_id"]
  }
}

Financial Compliance

{
  "vertical": "finance",
  "entity_type": "entity",
  "schema": {
    "type": "object",
    "properties": {
      "lei": { "type": "string" },
      "entity_legal_name": { "type": "string" },
      "jurisdiction": { "type": "string" },
      "sanctions_list": { "type": "array", "items": { "type": "string" } },
      "pep_status": { "type": "boolean" },
      "risk_score": { "type": "number", "minimum": 0, "maximum": 100 },
      "last_screening_date": { "type": "string", "format": "date" }
    },
    "required": ["entity_legal_name"]
  }
}

Defence & Aerospace

{
  "vertical": "defence",
  "entity_type": "equipment",
  "schema": {
    "type": "object",
    "properties": {
      "nsn": { "type": "string" },
      "stanag_ref": { "type": "string" },
      "mil_std": { "type": "string" },
      "protection_level": { "type": "string" },
      "classification": { "type": "string", "enum": ["unclassified", "restricted", "confidential"] },
      "platform_compatibility": { "type": "array", "items": { "type": "string" } }
    },
    "required": ["nsn"]
  }
}

Internal Documents

For company wikis, SOPs, and internal knowledge:

{
  "vertical": "internal_docs",
  "entity_type": "document",
  "schema": {
    "type": "object",
    "properties": {
      "document_type": { "type": "string" },
      "department": { "type": "string" },
      "author": { "type": "string" },
      "version": { "type": "string" },
      "tags": { "type": "array", "items": { "type": "string" } },
      "last_reviewed": { "type": "string", "format": "date" }
    }
  }
}

No required fields — any document structure accepted.

On this page