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
View Rules File View on GitHub

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

Spectral Ruleset

Raw ↑
extends: spectral:oas
rules:
  talend-operations-have-operation-ids:
    description: All Talend API operations must have operationIds
    message: "Operation at '{{path}}' is missing an operationId"
    severity: error
    given: "$.paths[*][get,post,put,patch,delete]"
    then:
      field: operationId
      function: truthy

  talend-operations-have-summaries:
    description: All operations must have summaries
    message: "Operation '{{property}}' is missing a summary"
    severity: warn
    given: "$.paths[*][get,post,put,patch,delete]"
    then:
      field: summary
      function: truthy

  talend-operations-have-tags:
    description: All operations must have at least one tag
    message: "Operation should have at least one tag for grouping"
    severity: warn
    given: "$.paths[*][get,post,put,patch,delete]"
    then:
      field: tags
      function: truthy

  talend-bearer-auth-required:
    description: API must use Bearer authentication (not API key)
    message: "Talend APIs use Bearer token authentication"
    severity: warn
    given: "$.components.securitySchemes"
    then:
      field: BearerAuth
      function: truthy

  talend-path-params-have-descriptions:
    description: Path parameters must have descriptions
    message: "Path parameter '{{value}}' is missing a description"
    severity: warn
    given: "$.paths[*][*].parameters[?(@.in == 'path')]"
    then:
      field: description
      function: truthy

  talend-ids-are-strings:
    description: ID fields in schemas must be type string
    message: "ID field should be type: string"
    severity: error
    given: "$.components.schemas[*].properties.id"
    then:
      field: type
      function: pattern
      functionOptions:
        match: "^string$"

  talend-timestamps-use-date-time:
    description: Timestamp fields should use format date-time
    message: "Timestamp field '{{property}}' should use format: date-time"
    severity: warn
    given: "$.components.schemas[*].properties[created,updated,startTime,endTime]"
    then:
      field: format
      function: pattern
      functionOptions:
        match: "^date-time$"

  talend-delete-returns-204:
    description: DELETE operations should return 204 No Content
    message: "DELETE operations should include a 204 response"
    severity: info
    given: "$.paths[*].delete.responses"
    then:
      field: "204"
      function: truthy

  talend-status-fields-have-enums:
    description: Status fields should have enum values defined
    message: "Status field should define allowed enum values"
    severity: info
    given: "$.components.schemas[*].properties.status"
    then:
      field: enum
      function: truthy

Work with this as data

Every ruleset here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for spectral rules

4 MCP tools reach this
  • find_rulesBrowse and filter every ruleset in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This ruleset
curl "https://apis.io/api/v1/rules/talend-api-rules"
All spectral rules
curl "https://apis.io/api/v1/rules?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.