Skip to content

Commit b84b302

Browse files
authored
Fix Misc. errors throughout project that prevents Jenkins build (#49)
1 parent 878f188 commit b84b302

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

content/en/docs/shared_services/supportapi/formats/create_case_res.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Response format for the Create Case method.
2323
| product | [Product](#product) | no | Product for which this case was created. |
2424
| environment | [Environment](/docs/shared_services/supportapi/formats/environment) | no | Environment for which this case is created. |
2525
| notes | [CaseNote](#casenote) (array) | yes | List of case notes automatically attached to this case on case creation. |
26-
| impact | [Impact](#impact) | no | Impact level. |
26+
| impact | [Impact](/docs/shared_services/supportapi/formats/impact) | no | Impact level. |
2727
| urgency | [Urgency](/docs/shared_services/supportapi/formats/urgency) | no | Urgency level. |
2828
| type | [CaseType](/docs/shared_services/supportapi/formats/case_type) | no | The type of this case. |
2929
| description | string | no | Detailed description of this case. |

content/en/docs/shared_services/supportapi/formats/get_products_res.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Response format for the Get Products method.
1212
| Property Name | Data Type | Optional | Description |
1313
|------------------|---------------------------------------|----------|-------------|
1414
| id | string | no | Identifier of this product for the purposes of Axway Support case management. |
15-
| name | string | no | The name of the product.
15+
| name | string | no | The name of the product. |
1616
| versions | [ProductVersion](#productversion) (array) | no | Supported versions of the product. |
1717
| operatingSystems | [ProductOs](#productos) (array) | no | Supported host operating systems for the product. |
1818

content/en/docs/shared_services/supportapi/formats/list_cases_res.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Response format for the List Cases method.
1111

1212
| Property Name | Data Type | Optional | Description |
1313
|---------------|-----------------------|----------|-------------|
14-
| 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.
14+
| 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. |
1515
| limit | integer | no | The limit used to restrict the number of cases in the response. **Format**: int32. **Minimum**: 0. **Maximum**: 20. |
1616
| offset | integer | no | Numeric offset of the first element in the provided array of cases. **Format**: int32. **Minimum**: 0. |
1717
| cases | [Case](#case) (array) | no | Cases matching the specified filter criteria. |

content/en/docs/shared_services/supportapi/methods/add_note.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add a note to an existing Axway Support case.
1616
Add Note requests come in two forms: [simple](#add-note-simple) and [full](#add-note-full).
1717
Simple requests allow you to send just the note information. Full requests allow you to attach files.
1818

19-
### Add Note - Simple
19+
### Add Note Simple
2020

2121
Send the note information directly as the HTTP entity-body.
2222

@@ -39,7 +39,7 @@ Send the note information directly as the HTTP entity-body.
3939
}
4040
```
4141

42-
### Add Note - Full
42+
### Add Note Full
4343

4444
Allows for optionally attaching files to the case note.
4545

0 commit comments

Comments
 (0)