{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://harness-forge.dev/schemas/runtime/export-profile-manifest.schema.json",
  "title": "Export Profile Manifest",
  "type": "object",
  "additionalProperties": false,
  "required": ["profile", "include", "exclude"],
  "properties": {
    "profile": { "type": "string", "minLength": 1 },
    "include": { "type": "array", "items": { "type": "string", "minLength": 1 } },
    "exclude": { "type": "array", "items": { "type": "string", "minLength": 1 } },
    "requiredCanonicalPaths": { "type": "array", "items": { "type": "string", "minLength": 1 } },
    "notes": { "type": "string" }
  }
}
