rules: spaceapi-operation-summary-title-case: description: All operation summaries must use Title Case message: Operation summary "{{value}}" must use Title Case severity: warn given: "$.paths[*][*].summary" then: function: pattern functionOptions: match: "^([A-Z][a-z0-9]*)(\\s[A-Z][a-z0-9]*)*$" spaceapi-operation-id-camel-case: description: All operationIds must use camelCase message: OperationId "{{value}}" must use camelCase severity: warn given: "$.paths[*][*].operationId" then: function: pattern functionOptions: match: "^[a-z][a-zA-Z0-9]*$" spaceapi-tags-title-case: description: All tags must use Title Case message: Tag "{{value}}" must use Title Case severity: warn given: "$.tags[*].name" then: function: pattern functionOptions: match: "^([A-Z][a-z0-9]*)(\\s[A-Z][a-z0-9]*)*$" spaceapi-operation-must-have-tags: description: Every operation must have at least one tag message: Operation must have at least one tag severity: warn given: "$.paths[*][*]" then: field: tags function: truthy spaceapi-response-must-have-description: description: All responses must have a description message: Response must have a description severity: warn given: "$.paths[*][*].responses[*]" then: field: description function: truthy spaceapi-schema-properties-have-descriptions: description: Schema properties should have descriptions message: Schema property "{{path}}" should have a description severity: info given: "$.components.schemas[*].properties[*]" then: field: description function: truthy spaceapi-info-contact: description: API must have contact information message: API info must include contact details severity: warn given: "$.info" then: field: contact function: truthy spaceapi-servers-must-be-https: description: All server URLs must use HTTPS message: Server URL "{{value}}" must use HTTPS severity: error given: "$.servers[*].url" then: function: pattern functionOptions: match: "^https://"