{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Moldova AI Index Entry",
  "type": "object",
  "required": [
    "name",
    "websiteUrl",
    "category",
    "status"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "legalName": {
      "type": "string"
    },
    "websiteUrl": {
      "type": "string",
      "format": "uri"
    },
    "category": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "region": {
      "type": "string"
    },
    "country": {
      "type": "string",
      "default": "MD"
    },
    "languages": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "description": {
      "type": "string"
    },
    "services": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "status": {
      "type": "string",
      "enum": [
        "discovered",
        "crawled",
        "needs_review",
        "published",
        "verified",
        "stale",
        "archived"
      ]
    },
    "sourceConfidence": {
      "type": "string",
      "enum": [
        "high",
        "medium",
        "low",
        "unknown"
      ]
    },
    "lastCheckedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}
