Allowed HTTP request methods.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_allowed_methods", "title": "access_allowed_methods", "description": "Allowed HTTP request methods.", "example": [ "GET" ], "items": { "enum": [ "GET", "POST", "HEAD", "PUT", "DELETE", "CONNECT", "OPTIONS", "TRACE", "PATCH" ], "type": "string" }, "type": "array" }