TikTok for Developers · API Governance Rules
TikTok for Developers API Rules
Spectral linting rules defining API design standards and conventions for TikTok for Developers.
9 Rules
error 3
warn 5
info 1
Rule Categories
tiktok
Rules
warn
tiktok-operation-id-camel-case
Operation IDs must use camelCase
$.paths[*][*].operationId
warn
tiktok-path-trailing-slash
TikTok API paths must end with a trailing slash
$.paths
error
tiktok-versioned-paths
All paths must include an API version prefix
$.paths
error
tiktok-bearer-auth
All operations must use Bearer authentication
$.paths[*][*]
warn
tiktok-response-data-wrapper
Successful responses should wrap data in a data envelope
$.paths[*][*].responses.200.content.application/json.schema.properties
warn
tiktok-error-object
Successful responses should include an error object for consistent error signaling
$.paths[*][*].responses.200.content.application/json.schema.properties
error
tiktok-operation-summary-present
All operations must have a summary
$.paths[*][*]
warn
tiktok-operation-tags
All operations must have at least one tag
$.paths[*][*]
info
tiktok-fields-query-param
GET and POST endpoints that return data should support a fields query parameter
$.paths[*][get,post].parameters[*]