harn-hostlib 0.10.3

Opt-in code-intelligence and deterministic-tool host builtins for the Harn VM
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://harnlang.com/schemas/hostlib/rules/diagnostics.request.json",
  "title": "rules.diagnostics request",
  "description": "Run a declarative rule and return diagnostics.",
  "type": "object",
  "properties": {
    "rule": { "type": "string", "minLength": 1 },
    "source": { "type": "string" },
    "language": { "type": "string" },
    "path": { "type": "string" },
    "paths": {
      "type": "array",
      "items": { "type": "string", "minLength": 1 }
    }
  },
  "required": ["rule"],
  "additionalProperties": false
}