{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://localendpoints.com/schemas/localendpoint.llms-profile.schema.json",
  "title": "LocalEndpoint llms.txt Profile",
  "description": "Machine-readable discovery profile for local endpoint artifacts and safe-use boundaries.",
  "type": "object",
  "required": [
    "profileVersion",
    "sitePurpose",
    "safeUse",
    "validationRoutes",
    "artifactRoutes",
    "desktopDirectInstallStatus",
    "boundaries",
    "updatedUtc"
  ],
  "properties": {
    "profileVersion": {
      "type": "string"
    },
    "sitePurpose": {
      "type": "string"
    },
    "safeUse": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "validationRoutes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "artifactRoutes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "desktopDirectInstallStatus": {
      "type": "string"
    },
    "boundaries": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "updatedUtc": {
      "type": "string",
      "format": "date-time"
    }
  },
  "additionalProperties": false
}
