Skip to content

MUST use normalised paths

Path MUST start with a slash and MUST NOT end with a slash (except root path /).

Invalid Example

paths:
  /patient/:
    ...
  /patient/{patientId}/results/:

Valid Example

paths:
  /:
    ...
  /patient:
    ...
  /patient/{patientId}/results:

Zalando Guideline 136