Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/belgif/rest-guide-validator
A validator that checks compliance of OpenAPI documents with the Belgif REST guide
https://github.com/belgif/rest-guide-validator
Last synced: about 21 hours ago
JSON representation
A validator that checks compliance of OpenAPI documents with the Belgif REST guide
- Host: GitHub
- URL: https://github.com/belgif/rest-guide-validator
- Owner: belgif
- License: apache-2.0
- Created: 2024-03-28T07:41:30.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-11-07T09:24:07.000Z (9 days ago)
- Last Synced: 2024-11-07T10:28:31.230Z (9 days ago)
- Language: Java
- Size: 283 KB
- Stars: 5
- Watchers: 4
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# belgif-rest-guide-validator plugin
The belgif-rest-guide-validator Maven plugin is used to validate if an OpenAPI document conforms to the guidelines in the [Belgif REST guide](https://www.belgif.be/specification/rest/api-guide/).
# Prerequisites
This Maven plugin requires JDK 17 or higher to be used in the Maven runtime.
Note that the JDK version used to compile the source code of the project can differ.
IDEs may need manual configuration to set the appropriate Maven runtime JDK version.
The minimum maven version is 3.8.5.A standalone distribution that doesn't require Maven is [under development](https://github.com/belgif/rest-guide-validator/issues/13).
## Goal Overview
The goal `validate` binds by default to the lifecycle phase `prepare-package`.The goal `validate-openapi` can be used to validate an OpenAPI document outside a Maven project build execution.
## Usage
There are two ways to run the validator:
a) Run the validation during each Maven build, by adding the plugin in your project's pom.xml file (see [Basic Example](#basic-example)).
b) Execute a validation run from command-line. This doesn't require the project to be built with maven (no pom.xml file), but does require Maven to be installed.
Navigate to the directory containing the OpenAPI file, and launch from command line:
```
mvn io.github.belgif.rest.guide.validator:belgif-rest-guide-validator-maven-plugin:2.1.0:validate-openapi "-Drest-guide-validator.files=openapi.yaml"
```
_Change 'openapi.yaml' to the name of your OpenAPI file and update '2.1.0' to the latest available version of the plugin_Referenced external OpenAPI documents (from `$ref` properties) will be validated as well, unless explicitly excluded in the plugin's configuration.
Only OpenAPI documents on the local file system are currently supported.The validator supports OpenAPI 2.0 and 3.0, but some rules aren't checked for OpenAPI 2.0 documents. OpenAPI 3.1 isn't supported yet.
### Example output
The validation report will be in the console output of the maven execution.
Any rule violations in the report are linked to a rule identifier (e.g. [uri-notat]) that can be looked up in the [Belgif REST guide](https://www.belgif.be/specification/rest/api-guide/) for more information and examples.The violations are grouped by rule (default) or grouped by file.
Each rule shows:
* Violation level (MANDATORY / RECOMMENDED / STYLE / IGNORED)
* Rule name ([rule-name])
* A message that describes the general issue of the rule
* The number of occurencesThen for each violation of that rule, the console output contains:
* filename and line number
* A JsonPointer to the exact location of the violation
* In some cases, additional information about this specific violation.```
OpenApi validation summary: 10 violations and 0 ignored violations.
[MANDATORY] [cod-design] New code types SHOULD be represented as string values in lowerCamelCase. 1 occurrence:
logo.yaml ln 15 #/components/schemas/LogoMetaData/properties/mediaType
[MANDATORY] [err-problem] Each error response of each operation SHOULD have a media type "application/problem+json" 1 occurrence:
openapi.yaml ln 518 #/paths/health/get/responses/500 -- [Operation: GET /health]
[MANDATORY] [evo-object] In a request or response body, if any, you MUST always return a JSON object (and not e.g. an array) as a top level data structure to support future extensibility. 5 occurrences:
openapi.yaml ln 156 #/paths/organizations/post/requestBody/content/application/json
openapi.yaml ln 187 #/paths/organizations/{enterpriseNumber}/get/responses/200/content/application/json
openapi.yaml ln 223 #/paths/organizations/{enterpriseNumber}/put/requestBody/content/application/json
openapi.yaml ln 232 #/paths/organizations/{enterpriseNumber}/put/responses/200/content/application/json
openapi.yaml ln 262 #/paths/organizations/{enterpriseNumber}/patch/responses/200/content/application/json
[MANDATORY] [hdr-case] By convention, HTTP headers SHOULD use Kebab-Case with uppercase for readability and consistency. 1 occurrence:
openapi.yaml ln 365 #/paths/logos/{id}/get/parameters/1
[MANDATORY] [jsn-naming] All JSON property names SHOULD be written in lowerCamelCase notation. 1 occurrence:
logo.yaml ln 24 #/components/schemas/Logo -- [propertyName: Image]
[MANDATORY] [oas-exampl] Example does not validate against schema 1 occurrence:
employer.yaml ln 40 #/components/schemas/Employer/example
-- employerId: Type expected 'integer', found 'string'. In Schema: employer.yaml#/components/schemas/Employer : .
-- employerId: Value '164893015' does not match format 'int64'. In Schema: employer.yaml#/components/schemas/Employer : .
```### Basic example
The following example demonstrates a basic plugin configuration for validating an OpenAPI document.
```xml
io.github.belgif.rest.guide.validator
belgif-rest-guide-validator-maven-plugin
2.1.0
validate
src/main/resources/openapi.yaml
```
You can now build you package as usual with:
```bash
mvn package
```
### Exclusions in an OpenAPI fileThe `x-ignore-rules` property can be added inside a yaml object in the OpenAPI document to ignore this object for one or more rules.
_Example_
To ignore following `cod-design` validation error, add the `x-ignore-rules` property to the exact object mentioned in the error message (`/components/schemas/BelgianRegionCode`).
Error message:
```
file: location-v1.yaml: ln 23: [MANDATORY] [cod-design] New code types SHOULD be represented as string values in lowerCamelCase. /components/schemas/BelgianRegionCode
```OpenAPI document:
```yaml
BelgianRegionCode:
description: Belgian Region represented by an ISO 3166-2:BE code
x-ignore-rules:
"cod-design": Exempt existing (ISO) code from lowerCamelCase rule
#"rule identifier": "motivation for ignoring the rule" (rule identifier can be found in violiation error message)
type: string
enum:
- BE-BRU
- BE-WAL
- BE-VLG
```### Exclude an external OpenApi file
The excludedFiles maven parameter can be used to exclude certain imported openapi files.
The intended use is to exclude validation of imported openapi files which are conform Belgif standards and are not under the developers influence to modify.
Wildcards could be used.
Example:
```xml
io.github.belgif.rest.guide.validator
belgif-rest-guide-validator-maven-plugin
2.1.0
validate
openapi.yaml
schemas/belgif/**
**/logo.yaml
```
### Output options
The plugin provides the following options to write the validation report:
* CONSOLE: default option. Write to the console.
* JUNIT: generate a junit xml file.
* LOG4J: use log4j.
* NONE: no output.
```xml
io.github.belgif.rest.guide.validator
belgif-rest-guide-validator-maven-plugin
2.1.0
validate
target/classes/
JUNIT
CONSOLE
```
### skipOnErrors
You can execute the plugin to validate the api files without breaking the build in case of validation errors with the 'skipOnErrors' parameter.```xml
io.github.belgif.rest.guide.validator
belgif-rest-guide-validator-maven-plugin
2.1.0
validate
true
target/classes/
```
## Configuration reference
| Parameter | Type | Default | Description | User property name |
| --------- | ---- | ------- |-----------------------------------------------------------------------------------------------------------------------------|------------------------------------|
| files | Collection of File | | file or folder. For a folder all json and yaml files will be used. | rest-guide-validator.files |
| excludedFiles | Collection of File | | File(s) or folder(s) to exclude from validation. Use of wildcards is possible. | rest-guide-validator.excludedFiles |
| fileWithExclusions | Collection of FileWithExclusion | | _obsoleted_ IGNORED a file and a collection of excludesPath. `x-ignore-rules` should be used instead. | DEPRECATED |
| excludeResources | Collection of String | | _obsoleted_ IGNORED paths in the API to exclude from the validation for all files. `x-ignore-rules` should be used instead. | DEPRECATED |
| skipOnErrors | boolean | false | Parameter to avoid maven fail in case of validation error. | rest-guide-validator.skipOnErrors |
| outputTypes | OutputType | CONSOLE | Output processors. The value can be: CONSOLE, JUNIT, JSON, LOG4J, NONE | rest-guide-validator.outputTypes |
| outputDir | File | ${project.build.directory} | Output directory for the validation report file (when outputType writes to a file) | rest-guide-validator.outputDir |
| jsonOutputFile | File | ${rest-guide-validator.outputDir}/validationReport.json | Output file for JSON validation report. | rest-guide-validator.jsonOutputFile |
| groupBy | rule / file | rule | Specify how you want to group the violation output | rest-guide-validator.groupBy |## Building
The build process of this project is documented [here](https://github.com/belgif/openapi-common/blob/master/BUILDING.md).