Blender · API Governance Rules

Blender API Rules

Spectral linting rules defining API design standards and conventions for Blender.

5 Rules warn 5
View Rules File View on GitHub

Rule Categories

blender

Rules

warn
blender-addon-id-format
Addon ID must be lowercase with underscores only
$.components.schemas.AddonManifest.properties.id
warn
blender-version-semver
Blender addon version must follow semantic versioning
$.components.schemas.AddonManifest.properties.version
warn
blender-operator-idname-format
Operator bl_idname must use category.name format
$.components.schemas.BpyOperator.properties.bl_idname
warn
blender-tags-present
Addon manifest should include category tags
$.components.schemas.AddonManifest.properties.tags
warn
blender-license-spdx
License identifiers should use SPDX format
$.components.schemas.AddonManifest.properties.license

Spectral Ruleset

blender-spectral-rules.yml Raw ↑
rules:
  blender-addon-id-format:
    description: Addon ID must be lowercase with underscores only
    message: "Addon ID must match pattern ^[a-z][a-z0-9_]*$"
    given: "$.components.schemas.AddonManifest.properties.id"
    then:
      field: pattern
      function: truthy

  blender-version-semver:
    description: Blender addon version must follow semantic versioning
    message: "Version field should describe semver format"
    given: "$.components.schemas.AddonManifest.properties.version"
    then:
      field: description
      function: truthy

  blender-operator-idname-format:
    description: Operator bl_idname must use category.name format
    message: "bl_idname must match pattern ^[a-z_]+\\.[a-z_]+$"
    given: "$.components.schemas.BpyOperator.properties.bl_idname"
    then:
      field: pattern
      function: truthy

  blender-tags-present:
    description: Addon manifest should include category tags
    message: "Addon should specify at least one tag for discovery"
    given: "$.components.schemas.AddonManifest.properties.tags"
    then:
      field: type
      function: pattern
      functionOptions:
        match: "^array$"

  blender-license-spdx:
    description: License identifiers should use SPDX format
    message: "License should use SPDX identifier format"
    given: "$.components.schemas.AddonManifest.properties.license"
    then:
      field: description
      function: truthy

Work with this as data

Every ruleset 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 spectral rules

4 MCP tools reach this
  • find_rulesBrowse and filter every ruleset 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 ruleset
curl "https://apis.io/api/v1/rules/blender-spectral-rules"
All spectral rules
curl "https://apis.io/api/v1/rules?limit=25"

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

Get an API key

Free tier, no email required.

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