From b84b30251ac2ed7e5b58626a7d666b255f34171d Mon Sep 17 00:00:00 2001 From: lbadenhop Date: Fri, 31 Jan 2025 18:17:08 -0700 Subject: [PATCH] Fix Misc. errors throughout project that prevents Jenkins build (#49) --- .../shared_services/supportapi/formats/create_case_res.md | 2 +- .../shared_services/supportapi/formats/get_products_res.md | 2 +- .../docs/shared_services/supportapi/formats/list_cases_res.md | 2 +- .../en/docs/shared_services/supportapi/methods/add_note.md | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/en/docs/shared_services/supportapi/formats/create_case_res.md b/content/en/docs/shared_services/supportapi/formats/create_case_res.md index 7e7463b..15ef8bf 100644 --- a/content/en/docs/shared_services/supportapi/formats/create_case_res.md +++ b/content/en/docs/shared_services/supportapi/formats/create_case_res.md @@ -23,7 +23,7 @@ Response format for the Create Case method. | product | [Product](#product) | no | Product for which this case was created. | | environment | [Environment](/docs/shared_services/supportapi/formats/environment) | no | Environment for which this case is created. | | notes | [CaseNote](#casenote) (array) | yes | List of case notes automatically attached to this case on case creation. | -| impact | [Impact](#impact) | no | Impact level. | +| impact | [Impact](/docs/shared_services/supportapi/formats/impact) | no | Impact level. | | urgency | [Urgency](/docs/shared_services/supportapi/formats/urgency) | no | Urgency level. | | type | [CaseType](/docs/shared_services/supportapi/formats/case_type) | no | The type of this case. | | description | string | no | Detailed description of this case. | diff --git a/content/en/docs/shared_services/supportapi/formats/get_products_res.md b/content/en/docs/shared_services/supportapi/formats/get_products_res.md index 68a7d95..e477e2f 100644 --- a/content/en/docs/shared_services/supportapi/formats/get_products_res.md +++ b/content/en/docs/shared_services/supportapi/formats/get_products_res.md @@ -12,7 +12,7 @@ Response format for the Get Products method. | Property Name | Data Type | Optional | Description | |------------------|---------------------------------------|----------|-------------| | id | string | no | Identifier of this product for the purposes of Axway Support case management. | -| name | string | no | The name of the product. +| name | string | no | The name of the product. | | versions | [ProductVersion](#productversion) (array) | no | Supported versions of the product. | | operatingSystems | [ProductOs](#productos) (array) | no | Supported host operating systems for the product. | diff --git a/content/en/docs/shared_services/supportapi/formats/list_cases_res.md b/content/en/docs/shared_services/supportapi/formats/list_cases_res.md index 74e1bd9..374e631 100644 --- a/content/en/docs/shared_services/supportapi/formats/list_cases_res.md +++ b/content/en/docs/shared_services/supportapi/formats/list_cases_res.md @@ -11,7 +11,7 @@ Response format for the List Cases method. | Property Name | Data Type | Optional | Description | |---------------|-----------------------|----------|-------------| -| totalCount | integer | yes | The total count of cases matching the specified filter criteria. This does not reflect the length of the array of cases provided in the response. **Format**: `int32`. **Minimum**: 0. +| totalCount | integer | yes | The total count of cases matching the specified filter criteria. This does not reflect the length of the array of cases provided in the response. **Format**: `int32`. **Minimum**: 0. | | limit | integer | no | The limit used to restrict the number of cases in the response. **Format**: int32. **Minimum**: 0. **Maximum**: 20. | | offset | integer | no | Numeric offset of the first element in the provided array of cases. **Format**: int32. **Minimum**: 0. | | cases | [Case](#case) (array) | no | Cases matching the specified filter criteria. | diff --git a/content/en/docs/shared_services/supportapi/methods/add_note.md b/content/en/docs/shared_services/supportapi/methods/add_note.md index 00d5530..6163c58 100644 --- a/content/en/docs/shared_services/supportapi/methods/add_note.md +++ b/content/en/docs/shared_services/supportapi/methods/add_note.md @@ -16,7 +16,7 @@ Add a note to an existing Axway Support case. Add Note requests come in two forms: [simple](#add-note-simple) and [full](#add-note-full). Simple requests allow you to send just the note information. Full requests allow you to attach files. -### Add Note - Simple +### Add Note Simple Send the note information directly as the HTTP entity-body. @@ -39,7 +39,7 @@ Send the note information directly as the HTTP entity-body. } ``` -### Add Note - Full +### Add Note Full Allows for optionally attaching files to the case note.