{

"get": {
  "operationId": "getChangeCatalogById",
  "description": "Get change catalog",
  "tags": ["Change Catalog"],
  "parameters": [
    { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
    { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
  ],
  "responses": {
    "200": {
      "description": "Object was returned correctly",
      "content": {
        "application/json": {
          "schema": { "$ref": "../../common/schemas/service_desk/change_catalog.json#/components/schemas/response" },
          "example": { "$ref": "../../common/examples/change_catalog.json#/examples/response/json" }
        },
        "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/change_catalog.json#/components/schemas/response" } }
      }
    },
    "400": { "description": "Bad request" },
    "404": { "description": "Not found" },
    "500": { "description": "Internal Server Error" }
  }
},
"put": {
  "operationId": "updateChangeCatalogById",
  "description": "Update change catalog with specified fields",
  "tags": ["Change Catalog"],
  "parameters": [
    { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
    { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
  ],
  "requestBody": {
    "required": true,
    "description": "Change catalog fields to update",
    "content": {
      "application/json": {
        "schema": { "$ref": "../../common/schemas/service_desk/change_catalog.json#/components/schemas/request/put" },
        "example": { "$ref": "../../common/examples/change_catalog.json#/examples/request/json" }
      },
      "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/change_catalog.json#/components/schemas/request/put" } }
    }
  },
  "responses": {
    "200": {
      "description": "Object was updated correctly",
      "content": {
        "application/json": {
          "schema": { "$ref": "../../common/schemas/service_desk/change_catalog.json#/components/schemas/response" },
          "example": { "$ref": "../../common/examples/change_catalog.json#/examples/response/json" }
        },
        "application/xml": { "schema": { "$ref": "../../common/schemas/service_desk/change_catalog.json#/components/schemas/response" } }
      }
    },
    "400": { "description": "Bad request" },
    "404": { "description": "Not found" },
    "500": { "description": "Internal Server Error" }
  }
},
"delete": {
  "operationId": "deleteChangeCatalogById",
  "description": "Delete change catalog",
  "tags": ["Change Catalog"],
  "parameters": [
    { "$ref": "../../common/components.json#/components/request/parameters/token_param" },
    { "$ref": "../../common/components.json#/components/request/parameters/id_param" }
  ],
  "responses": {
    "200": {
      "description": "Returns the deleted change catalog's id",
      "content": {
        "application/json": {
          "example": { "deleted_ids": ["1"] }
        }
      }
    },
    "400": { "description": "Bad request" },
    "404": { "description": "Not found" },
    "500": { "description": "Internal Server Error" }
  }
}

}