Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions libs/converter-openapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,24 +35,20 @@ A library for implementing the OpenAPI specification and ADC profile conversion.
<td>Override the name of the generated route</td>
</tr>
<tr>
<td rowspan="3">x-adc-labels</td>
<td rowspan="2">x-adc-labels</td>
<td>Root Level</td>
<td rowspan="3">Add labels field to the specified level. It supports string and string array formats.</td>
</tr>
<tr>
<td>Path Level</td>
<td rowspan="2">Add labels field to the specified level. It supports string and string array formats.</td>
</tr>
<tr>
<td>Operation Level</td>
</tr>
<tr>
<td rowspan="3">x-adc-plugins</td>
<td>Root Level</td>
<td>Add plugins field to the specified level. It is an object that contains one or more plugins.</td>
<td rowspan="3">Add plugins field to the specified level. It is an object that contains one or more plugins. Plugins set at the path or operation level are attached directly to the routes generated from that path or operation; they do not by themselves cause the service to be split.</td>
</tr>
<tr>
<td>Path Level</td>
<td rowspan="2">Plugin objects at the Path level and Operation level will cause the service to be split, i.e. the sub-level containing the plugin will be included in a new service.</td>
</tr>
<tr>
<td>Operation Level</td>
Expand Down Expand Up @@ -116,7 +112,7 @@ servers:
<tr>
<td rowspan="3">x-adc-route-defaults</td>
<td>Root Level</td>
<td rowspan="3">It supports setting/overriding parameters in the route at various levels. This field on sub-levels will cause the service to be split.</td>
<td rowspan="3">It supports setting/overriding parameters in the route at various levels. Sub-level values override root-level values (operation > path > root); the merged result is applied to each route. This field does not by itself cause the service to be split.</td>
</tr>
<tr>
<td>Path Level</td>
Expand Down
Loading