Skip to main content

x-request-id-uuid-format

Requires an x-request-id header parameter's non-empty schema format to equal uuid.

AttributeValue
CategoryParameters
MaturityGold
StarterOff
Lenient–CompleteError

Does not flag

An x-request-id schema with no format. Use x-request-id-parameter separately to require the header.

See it fail

- in: header
name: X-Request-ID
schema: { type: string, format: email }

Fix it

- in: header
name: X-Request-ID
schema: { type: string, format: uuid }

Nearby: x-request-id-parameter.