{
  "summary": "Creates a new {{service}} of type {{datatype}}.",
  "operationId": "{{operationId}}",
  "tags": [
    "{{tag}}"
  ],
  "parameters": [
    {
      "$ref": "#/components/parameters/query-verbose"
    }
  ],
  "requestBody": {
    "description": "A {{datatype}}.",
    "content": {
      "application/json": {
        "schema": null
      }
    }
  },
  "responses": {
    "200": {
      "description": "200 OK Response: Successful creation. 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"
              }
            ]
          }
        }
      }
    }
  }
}
