Coresignal · API Governance Rules

Coresignal API Rules

Spectral linting rules defining API design standards and conventions for Coresignal.

7 Rules error 5 warn 2
View Rules File View on GitHub

Rule Categories

coresignal

Rules

error
coresignal-jobs-server-https
Servers must use HTTPS.
$.servers[*].url
error
coresignal-jobs-base-url
Base URL must reference api.coresignal.com/cdapi/v2/multi_source_jobs.
$.servers[*].url
error
coresignal-jobs-apikey
API must use apikey header authentication.
$.components.securitySchemes.apiKey.name
warn
coresignal-jobs-search-paths
API should expose filter and Elasticsearch DSL search endpoints.
$.paths
error
coresignal-jobs-operation-id
Operations must define an operationId.
$.paths.*[get,post]
error
coresignal-jobs-operation-tags
Operations must define tags.
$.paths.*[get,post]
warn
coresignal-jobs-date-format
Date fields should use ISO 8601 date-time format.
$.components.schemas.Job.properties.date_posted

Spectral Ruleset

Raw ↑
extends: ["spectral:oas"]
documentationUrl: https://docs.coresignal.com/multi-source-jobs-api/
rules:
  coresignal-jobs-server-https:
    description: Servers must use HTTPS.
    given: "$.servers[*].url"
    severity: error
    then:
      function: pattern
      functionOptions:
        match: "^https://"
  coresignal-jobs-base-url:
    description: Base URL must reference api.coresignal.com/cdapi/v2/multi_source_jobs.
    given: "$.servers[*].url"
    severity: error
    then:
      function: pattern
      functionOptions:
        match: "api.coresignal.com/cdapi/v2/multi_source_jobs"
  coresignal-jobs-apikey:
    description: API must use apikey header authentication.
    given: "$.components.securitySchemes.apiKey.name"
    severity: error
    then:
      function: pattern
      functionOptions:
        match: "^apikey$"
  coresignal-jobs-search-paths:
    description: API should expose filter and Elasticsearch DSL search endpoints.
    given: "$.paths"
    severity: warn
    then:
      function: schema
      functionOptions:
        schema:
          type: object
          required:
            - /search/filter
            - /search/es_dsl
            - /collect/{id}
  coresignal-jobs-operation-id:
    description: Operations must define an operationId.
    given: "$.paths.*[get,post]"
    severity: error
    then:
      field: operationId
      function: truthy
  coresignal-jobs-operation-tags:
    description: Operations must define tags.
    given: "$.paths.*[get,post]"
    severity: error
    then:
      field: tags
      function: truthy
  coresignal-jobs-date-format:
    description: Date fields should use ISO 8601 date-time format.
    given: "$.components.schemas.Job.properties.date_posted"
    severity: warn
    then:
      field: format
      function: pattern
      functionOptions:
        match: "date-time"

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/coresignal-multi-source-jobs-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.