{
  "summary": "Change some of the fields of the {{datatype}} identified by its name.",
  "operationId": "{{operationId}}",
  "tags": [
    "{{tag}}"
  ],
  "parameters": [
    {
      "$ref": "#/components/parameters/path-name"
    },
    {
      "$ref": "#/components/parameters/query-verbose"
    }
  ],
  "requestBody": {
    "description": "A {{datatype}}.",
    "content": {
      "application/json": {
        "schema": null
      }
    }
  },
  "responses": {
    "200": {
      "description": "200 OK Response: The {{datatype}} name will be returned. Supports a verbose response.",
      "content": {
        "application/json": {
          "schema": {
            "allOf": [
              {
                "$ref": "#/components/schemas/named-reference"
              },
              {
                "$ref": "#/components/schemas/verbose-object"
              }
            ]
          }
        }
      }
    }
  }
}
