Talend · API Governance Rules
Talend API Rules
Spectral linting rules defining API design standards and conventions for Talend.
9 Rules
error 2
warn 5
info 2
Rule Categories
talend
Rules
error
talend-operations-have-operation-ids
All Talend API operations must have operationIds
$.paths[*][get,post,put,patch,delete]
warn
talend-operations-have-summaries
All operations must have summaries
$.paths[*][get,post,put,patch,delete]
warn
talend-operations-have-tags
All operations must have at least one tag
$.paths[*][get,post,put,patch,delete]
warn
talend-bearer-auth-required
API must use Bearer authentication (not API key)
$.components.securitySchemes
warn
talend-path-params-have-descriptions
Path parameters must have descriptions
$.paths[*][*].parameters[?(@.in == 'path')]
error
talend-ids-are-strings
ID fields in schemas must be type string
$.components.schemas[*].properties.id
warn
talend-timestamps-use-date-time
Timestamp fields should use format date-time
$.components.schemas[*].properties[created,updated,startTime,endTime]
info
talend-delete-returns-204
DELETE operations should return 204 No Content
$.paths[*].delete.responses
info
talend-status-fields-have-enums
Status fields should have enum values defined
$.components.schemas[*].properties.status