Sandbox Banking · API Governance Rules
Sandbox Banking API Rules
Spectral linting rules defining API design standards and conventions for Sandbox Banking.
13 Rules
error 4
warn 7
info 2
Rule Categories
sandbox
Rules
warn
sandbox-banking-operation-summary-title-case
Operation summaries must use Title Case.
$.paths[*][*].summary
warn
sandbox-banking-operation-id-camel-case
Operation IDs must use camelCase naming convention.
$.paths[*][*].operationId
warn
sandbox-banking-path-kebab-case
API path segments must use kebab-case.
$.paths
error
sandbox-banking-token-auth
Glyue API uses token-based authentication via Authorization header.
$.components.securitySchemes
warn
sandbox-banking-response-200-schema
All 200 responses must include a content schema.
$.paths[*][get,post,put].responses['200']
info
sandbox-banking-list-endpoint-pagination
List endpoints must support pagination parameters (page and page_size).
$.paths[?([email protected](/\{.*\}/))][get].parameters[*].name
error
sandbox-banking-no-trailing-slash
API paths must not end with a trailing slash.
$.paths
warn
sandbox-banking-tags-required
All operations must have at least one tag.
$.paths[*][get,post,put,patch,delete]
warn
sandbox-banking-description-required
All operations must include a description.
$.paths[*][get,post,put,patch,delete]
warn
sandbox-banking-401-defined
All API operations must declare a 401 Unauthorized response.
$.paths[*][get,post,put,patch,delete].responses
error
sandbox-banking-delete-no-body
DELETE operations must not include a request body.
$.paths[*][delete]
info
sandbox-banking-run-endpoint-naming
Integration execution endpoints must use /run suffix.
$.paths
error
sandbox-banking-audit-trail
API must expose run-history endpoint for regulatory compliance.
$.paths