The Open Movie Database · API Governance Rules
The Open Movie Database API Rules
Spectral linting rules defining API design standards and conventions for The Open Movie Database.
9 Rules
error 5
warn 3
info 1
Rule Categories
omdb
Rules
error
omdb-api-key-security
All operations must require the apiKey query parameter security scheme.
$.paths[*][get,post,put,delete,patch]
error
omdb-operation-summary
Every operation must have a non-empty summary.
$.paths[*][get,post,put,delete,patch]
warn
omdb-title-case-summary
Operation summaries must use Title Case.
$.paths[*][get,post,put,delete,patch].summary
warn
omdb-operation-tags
Every operation must have at least one tag.
$.paths[*][get,post,put,delete,patch]
error
omdb-200-response
Every operation must define a 200 response.
$.paths[*][get,post,put,delete,patch].responses
error
omdb-https-servers
All server URLs must use HTTPS.
$.servers[*].url
warn
omdb-parameter-descriptions
All parameters must include a description.
$.paths[*][*].parameters[*]
info
omdb-schema-descriptions
All schema objects in components should have a description.
$.components.schemas[*]
error
omdb-operation-id
Every operation must define an operationId.
$.paths[*][get,post,put,delete,patch]