API Linting · Schema

Linting Rule

A normalized representation of a single linting rule that can be sourced from Spectral, Vacuum, Redocly CLI, Optic, sweater-comb, Speakeasy, or Postman API Governance. Optimized for cross-tool ruleset analysis, indexing, and re-emission.

API DesignAPI GovernanceAPI LintingAPI Style GuideAsyncAPIJSON-SchemaLintingOpenAPIQuality AssuranceTopic

Properties

Name Type Description
id string Stable identifier for the rule, e.g. `operation-operationId-unique`.
description string Human-readable summary of what the rule enforces.
message string Message emitted when the rule is violated. Spectral supports `{{error}}`, `{{path}}`, `{{value}}` placeholders; Redocly and Vacuum follow similar conventions.
severity object Importance of a violation. Numeric form matches Spectral: error(0), warn(1), info(2), hint(3). `off` disables a rule inherited from an extended ruleset.
given object One or more JSONPath++ (Spectral/Vacuum), where-selector (Redocly), or Optic FactsContext expressions that select the nodes the rule applies to.
then object The assertion(s) to evaluate against each node matched by `given`.
target string Optional explicit target name (`info`, `paths`, `operations`, `schemas`, etc.) for tools that key rules to artifact regions rather than JSONPath.
when object Optional gating condition (Redocly `where`/`subject.matches`, Spectral `given` qualifier). When present, the rule only fires for nodes that satisfy the condition.
formats array Spec formats the rule is scoped to. Tools differ on identifiers; this schema accepts the union.
recommended boolean Whether the rule is included in the tool's `recommended` profile.
tags array Free-form classification tags (e.g. `Security`, `Naming`, `Documentation`, `OWASP`).
sourceTool string The linting tool the rule originated in.
sourceUrl string Link to the canonical definition of the rule (ruleset file, docs page, or registry entry).
documentationUrl string Link to human-readable documentation for the rule.
View JSON Schema on GitHub

JSON Schema

linting-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/linting/json-schema/linting-rule-schema.json",
  "title": "Linting Rule",
  "description": "A normalized representation of a single linting rule that can be sourced from Spectral, Vacuum, Redocly CLI, Optic, sweater-comb, Speakeasy, or Postman API Governance. Optimized for cross-tool ruleset analysis, indexing, and re-emission.",
  "type": "object",
  "required": ["id", "severity", "given", "then", "sourceTool"],
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string",
      "description": "Stable identifier for the rule, e.g. `operation-operationId-unique`.",
      "pattern": "^[a-z0-9][a-z0-9._-]*$"
    },
    "description": {
      "type": "string",
      "description": "Human-readable summary of what the rule enforces."
    },
    "message": {
      "type": "string",
      "description": "Message emitted when the rule is violated. Spectral supports `{{error}}`, `{{path}}`, `{{value}}` placeholders; Redocly and Vacuum follow similar conventions."
    },
    "severity": {
      "description": "Importance of a violation. Numeric form matches Spectral: error(0), warn(1), info(2), hint(3). `off` disables a rule inherited from an extended ruleset.",
      "oneOf": [
        { "type": "string", "enum": ["error", "warn", "info", "hint", "off"] },
        { "type": "integer", "minimum": 0, "maximum": 3 }
      ]
    },
    "given": {
      "description": "One or more JSONPath++ (Spectral/Vacuum), where-selector (Redocly), or Optic FactsContext expressions that select the nodes the rule applies to.",
      "oneOf": [
        { "type": "string" },
        { "type": "array", "items": { "type": "string" }, "minItems": 1 }
      ]
    },
    "then": {
      "description": "The assertion(s) to evaluate against each node matched by `given`.",
      "oneOf": [
        { "$ref": "#/$defs/Then" },
        { "type": "array", "items": { "$ref": "#/$defs/Then" }, "minItems": 1 }
      ]
    },
    "target": {
      "type": "string",
      "description": "Optional explicit target name (`info`, `paths`, `operations`, `schemas`, etc.) for tools that key rules to artifact regions rather than JSONPath.",
      "enum": [
        "info",
        "paths",
        "operations",
        "parameters",
        "requestBodies",
        "responses",
        "schemas",
        "headers",
        "securitySchemes",
        "servers",
        "tags",
        "channels",
        "messages",
        "components",
        "document"
      ]
    },
    "when": {
      "type": "object",
      "description": "Optional gating condition (Redocly `where`/`subject.matches`, Spectral `given` qualifier). When present, the rule only fires for nodes that satisfy the condition.",
      "properties": {
        "subject": { "type": "string" },
        "matches": { "type": "string" },
        "property": { "type": "string" },
        "value": {}
      },
      "additionalProperties": true
    },
    "formats": {
      "type": "array",
      "description": "Spec formats the rule is scoped to. Tools differ on identifiers; this schema accepts the union.",
      "items": {
        "type": "string",
        "enum": [
          "oas2",
          "oas3",
          "oas3_0",
          "oas3_1",
          "asyncapi2",
          "asyncapi3",
          "arazzo1",
          "json-schema-draft-04",
          "json-schema-draft-06",
          "json-schema-draft-07",
          "json-schema-2019-09",
          "json-schema-2020-12",
          "open-rpc"
        ]
      }
    },
    "recommended": {
      "type": "boolean",
      "description": "Whether the rule is included in the tool's `recommended` profile."
    },
    "tags": {
      "type": "array",
      "description": "Free-form classification tags (e.g. `Security`, `Naming`, `Documentation`, `OWASP`).",
      "items": { "type": "string" }
    },
    "sourceTool": {
      "type": "string",
      "description": "The linting tool the rule originated in.",
      "enum": [
        "spectral",
        "vacuum",
        "redocly-cli",
        "optic",
        "sweater-comb",
        "speakeasy",
        "postman",
        "apicurio",
        "apimetrics",
        "custom"
      ]
    },
    "sourceUrl": {
      "type": "string",
      "format": "uri",
      "description": "Link to the canonical definition of the rule (ruleset file, docs page, or registry entry)."
    },
    "documentationUrl": {
      "type": "string",
      "format": "uri",
      "description": "Link to human-readable documentation for the rule."
    }
  },
  "$defs": {
    "Then": {
      "type": "object",
      "required": ["function"],
      "additionalProperties": false,
      "properties": {
        "field": {
          "type": "string",
          "description": "Optional sub-field of the matched node to apply the function to."
        },
        "function": {
          "type": "string",
          "description": "Name of the built-in or custom function evaluating the assertion.",
          "examples": [
            "truthy",
            "falsy",
            "defined",
            "undefined",
            "pattern",
            "enumeration",
            "length",
            "alphabetical",
            "casing",
            "xor",
            "schema",
            "unreferencedReusableObject",
            "typedEnum"
          ]
        },
        "functionOptions": {
          "type": "object",
          "description": "Options passed to the function (e.g. `match`/`notMatch` for `pattern`, `type` for `casing`, `min`/`max` for `length`).",
          "additionalProperties": true
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/linting-rule"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.