HR Partner · API Governance Rules

HR Partner API Rules

Spectral linting rules defining API design standards and conventions for HR Partner.

18 Rules error 14 warn 4
View Rules File View on GitHub

Rule Categories

employee info no operation path response schema security servers tag

Rules

error
info-title-required
Info title must be present
$.info
error
info-description-required
Info description must be present
$.info
error
info-contact-required
Info contact must be present
$.info
error
operation-operationid-required
Every operation must have an operationId
$.paths[*][get,post,put,patch,delete]
error
operation-summary-required
Every operation must have a summary
$.paths[*][get,post,put,patch,delete]
error
operation-description-required
Every operation must have a description
$.paths[*][get,post,put,patch,delete]
error
operation-tags-required
Every operation must have at least one tag
$.paths[*][get,post,put,patch,delete]
warn
operation-summary-title-case
Operation summaries must be Title Case
$.paths[*][get,post,put,patch,delete].summary
error
response-description-required
Every response must have a description
$.paths[*][get,post,put,patch,delete].responses[*]
warn
response-200-required
Every operation should declare a 200 response
$.paths[*][get,post]
error
servers-defined
At least one server must be defined
$
error
servers-base-url-hr-partner
Production server must point at api.hrpartner.io
$.servers[0]
error
security-apikey-header
API must declare the x-api-key apiKey header security scheme
$.components.securitySchemes
error
no-empty-descriptions
Descriptions must not be empty
$..description
error
schema-types-required
All schemas must declare a type
$.components.schemas[*]
error
tag-description-required
All top-level tags must have a description
$.tags[*]
warn
path-kebab-or-lower-case
Paths should be lowercase and may use hyphens
$.paths[*]~
warn
employee-code-path-param
Employee-scoped paths must use employeeCode path parameter, not id
$.paths[/employee/{employeeCode}]

Spectral Ruleset

Raw ↑
rules:
  info-title-required:
    description: Info title must be present
    severity: error
    given: $.info
    then: {field: title, function: truthy}
  info-description-required:
    description: Info description must be present
    severity: error
    given: $.info
    then: {field: description, function: truthy}
  info-contact-required:
    description: Info contact must be present
    severity: error
    given: $.info
    then: {field: contact, function: truthy}
  operation-operationid-required:
    description: Every operation must have an operationId
    severity: error
    given: $.paths[*][get,post,put,patch,delete]
    then: {field: operationId, function: truthy}
  operation-summary-required:
    description: Every operation must have a summary
    severity: error
    given: $.paths[*][get,post,put,patch,delete]
    then: {field: summary, function: truthy}
  operation-description-required:
    description: Every operation must have a description
    severity: error
    given: $.paths[*][get,post,put,patch,delete]
    then: {field: description, function: truthy}
  operation-tags-required:
    description: Every operation must have at least one tag
    severity: error
    given: $.paths[*][get,post,put,patch,delete]
    then: {field: tags, function: truthy}
  operation-summary-title-case:
    description: Operation summaries must be Title Case
    severity: warn
    given: $.paths[*][get,post,put,patch,delete].summary
    then:
      function: pattern
      functionOptions:
        match: '^([A-Z][a-z0-9]*)( [A-Z][a-z0-9]*)*$'
  response-description-required:
    description: Every response must have a description
    severity: error
    given: $.paths[*][get,post,put,patch,delete].responses[*]
    then: {field: description, function: truthy}
  response-200-required:
    description: Every operation should declare a 200 response
    severity: warn
    given: $.paths[*][get,post]
    then:
      field: responses.200
      function: truthy
  servers-defined:
    description: At least one server must be defined
    severity: error
    given: $
    then:
      field: servers
      function: truthy
  servers-base-url-hr-partner:
    description: Production server must point at api.hrpartner.io
    severity: error
    given: $.servers[0]
    then:
      field: url
      function: pattern
      functionOptions:
        match: '^https://api\.hrpartner\.io'
  security-apikey-header:
    description: API must declare the x-api-key apiKey header security scheme
    severity: error
    given: $.components.securitySchemes
    then:
      field: apiKeyHeader
      function: truthy
  no-empty-descriptions:
    description: Descriptions must not be empty
    severity: error
    given: $..description
    then: {function: truthy}
  schema-types-required:
    description: All schemas must declare a type
    severity: error
    given: $.components.schemas[*]
    then: {field: type, function: truthy}
  tag-description-required:
    description: All top-level tags must have a description
    severity: error
    given: $.tags[*]
    then: {field: description, function: truthy}
  path-kebab-or-lower-case:
    description: Paths should be lowercase and may use hyphens
    severity: warn
    given: $.paths[*]~
    then:
      function: pattern
      functionOptions:
        match: '^/[a-z0-9\-/{}]+$'
  employee-code-path-param:
    description: Employee-scoped paths must use employeeCode path parameter, not id
    severity: warn
    given: $.paths[/employee/{employeeCode}]
    then:
      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/hr-partner-rest-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.