Stigg · API Governance Rules
Stigg API Rules
Spectral linting rules defining API design standards and conventions for Stigg.
7 Rules
error 5
warn 2
Rule Categories
stigg
Rules
error
stigg-x-api-key-required
All Stigg API operations must require the X-API-KEY header for authentication.
$.components.securitySchemes
error
stigg-graphql-endpoint-post-only
The Stigg GraphQL endpoint (/graphql) must only accept POST requests, following GraphQL convention.
$.paths./graphql
error
stigg-request-body-required-for-graphql
All POST operations to the GraphQL endpoint must define a request body.
$.paths./graphql.post
error
stigg-response-200-required
All Stigg operations must define a 200 success response.
$.paths[*][*]
warn
stigg-operationid-camel-case
OperationIds must use camelCase.
$.paths[*][*].operationId
warn
stigg-tags-title-case
All tags must use Title Case.
$.paths[*][*].tags[*]
error
stigg-server-https
The Stigg API server must use HTTPS.
$.servers[*].url