{

"examples": {
  "request": {
    "json": {
      "change_catalog": {
        "name": "Change Catalog Name",
        "change_type": 1,
        "site_id": 1,
        "department_id": 1,
        "description": "description",
        "state_id": 1,
        "default_assignee_id": 1,
        "priority": "High",
        "change_plan": "change plan",
        "rollback_plan": "rollback plan",
        "test_plan": "test plan" ,
        "add_to_tag_list": "tag1, tag2",
        "remove_from_tag_list": "tag3",
        "tag_list": "tag1, tag2",
        "custom_fields_values_attributes": [
          { "id": 10, "custom_field_id": 1, "value": "content" },
          { "id": 100, "custom_field_id": 2, "value": "1" }
        ],
        "custom_fields_values": {
          "custom_fields_value": [
            { "name": "Text custom field", "value": "content" },
            { "name": "User custom field", "user_value": { "email": "john.doe@email.com" } }
          ]
        },
        "show_in_portal": true
      }
    }
  },
  "response": {
    "json": {
      "change_catalog": {
        "id": "1",
        "number": "1",
        "name": "Change Catalog Name",
        "description": "description",
        "state": "Approved",
        "site": {
          "id": "1",
          "name": "Austin TX, USA",
          "location": "AUS",
          "description": "",
          "time_zone": ""
        },
        "department": {
          "id": "1",
          "name": "Support",
          "description": "",
          "default_assignee_id": "1"
        },
        "priority": "High",
        "default_assignee_id": 1,
        "custom_fields_values": [
          {
            "id": "10",
            "custom_field_id": "1",
            "name": "Text custom field",
            "value": "content",
            "options": "",
            "type_name": "Text"
          },
          {
            "id": "100",
            "custom_field_id": "2",
            "name": "User custom field",
            "value": "1",
            "options": "",
            "type_name": "User",
            "user": {
              "group_id": 1,
              "is_user": true,
              "id": 1,
              "name": "John Doe",
              "email": "john.doe@email.com"
            }
          }
        ],
        "change_plan": "change plan",
        "rollback_plan": "rollback plan",
        "test_plan": "test plan",
        "origin": "api",
        "created_at": "2025-01-01T00:00:00.000+01:00",
        "show_in_portal": true
      }
    }
  }
}

}