Skip to content

MUST define a format for integer types

integer properties MUST have a format defined (int32, int64, or bigint).

Invalid Example

requestBody:
    content:
      application/json:
        schema:
          type: object
          properties:
            range:
              type: integer

Valid Example

requestBody:
  content:
    application/json:
      schema:
        type: object
        properties:
          range:
            type: integer
            format: int32

Zalando Guideline 171