-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Open
Description
Content & configuration
Example Swagger/OpenAPI definition:
openapi: 3.0.0
paths:
/:
get:
responses:
"200":
description: OK!
headers:
X-Rate-Limit-Remaining:
schema:
type: number
description: API rate limit
examples:
HasMoreLeft:
value: 9999
description: A positive integer indicates that the user can continue making API calls
LimitReached:
value: 0
description: Zero indicates that the user cannot continue making API requestsExpected behavior
My Header examples should be visible!