scalar-property-missing-example

Requires that every scalar property in the API description has either example or examples˙ defined. Scalar properties are any of the following types: string, number, null, boolean, integer.

OAS Compatibility
2.0
3.0
3.1

API design principles

One of the main goals of your API description (and your API documentation) is to help consumers understand how your API behaves and what to expect when working with it.

Providing examples for properties in your API description not only improves the developer and user experience of working with your APIs, but also makes the documentation more complete. Many API documentation tools are able to automatically extract such example values from the API description, and let consumers use those values to test the APIs or send (mock) requests to the API directly from the documentation.

Configuration

To configure the rule, add it to the rules object in your configuration file. Set the desired severity for the rule.

Copy
Copied
rules:
  scalar-property-missing-example:
    severity: error

Configuration

Option Type Description
severity string Possible values: off, warn, error. Default off (in recommended configuration).

An example configuration:

Copy
Copied
rules:
  scalar-property-missing-example: error

Examples

Given this configuration:

Copy
Copied
rules:
  scalar-property-missing-example: error

Example of an incorrect schema:

Copy
Copied
schemas:
  User:
    type: object
    properties:
      email:
        description: User email address
        type: string
        format: email

Example of a correct schema:

Copy
Copied
schemas:
  User:
    type: object
    properties:
      email:
        description: User email address
        type: string
        format: email
        example: john.smith@example.com

Related rules

Resources