dopost · API Governance Rules
dopost API Rules
Spectral linting rules defining API design standards and conventions for dopost.
5 Rules
error 3
warn 2
Rule Categories
dopost
Rules
error
dopost-must-have-api-key-security
Every operation must reference the x-api-key security scheme.
$.paths[*][*]
error
dopost-versioned-path
All operation paths must be mounted under /api/v1/.
$.paths
error
dopost-operation-must-have-tags
Operations must be tagged (Posts | Social Accounts | Media).
$.paths[*][*]
warn
dopost-platform-enum
Platform identifiers must match the documented network set.
$.components.schemas.Platform.enum
warn
dopost-no-bearer
dopost uses x-api-key, not Bearer auth — flag accidental Bearer schemes.
$.components.securitySchemes[*]