access_allowed_methods

Allowed HTTP request methods.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-access-allowed-methods-schema.json Raw ↑
{
  "$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"
}