Skip to content

Commit

Permalink
fix: non-ASCII chars in swagger.yaml
Browse files Browse the repository at this point in the history
There are a `ß` char and some U+ff5c "|" in the swagger.yaml.
The character U+ff5c "|" could be confused with the
ASCII character U+007c "|".

Signed-off-by: bin liu <liubin0329@gmail.com>
  • Loading branch information
liubin authored and MinerYang committed May 9, 2023
1 parent 2fec790 commit 66259f8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions api/v2.0/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ paths:
schema:
$ref: '#/definitions/ConfigurationsResponse'
'401':
description: User need to log in first.ß
description: User need to log in first.
'403':
description: User does not have permission of admin role.
'500':
Expand Down Expand Up @@ -4451,9 +4451,9 @@ paths:
schema:
$ref: '#/definitions/Schedule'
description: |
The purge job's schedule, it is a json object.
The sample format is
{"parameters":{"audit_retention_hour":168,"dry_run":true, "include_operations":"create,delete,pull"},"schedule":{"type":"Hourly","cron":"0 0 * * * *"}}
The purge job's schedule, it is a json object. |
The sample format is |
{"parameters":{"audit_retention_hour":168,"dry_run":true, "include_operations":"create,delete,pull"},"schedule":{"type":"Hourly","cron":"0 0 * * * *"}} |
the include_operation should be a comma separated string, e.g. create,delete,pull, if it is empty, no operation will be purged.
tags:
- purge
Expand Down Expand Up @@ -4481,9 +4481,9 @@ paths:
schema:
$ref: '#/definitions/Schedule'
description: |
The purge job's schedule, it is a json object.
The sample format is
{"parameters":{"audit_retention_hour":168,"dry_run":true, "include_operations":"create,delete,pull"},"schedule":{"type":"Hourly","cron":"0 0 * * * *"}}
The purge job's schedule, it is a json object. |
The sample format is |
{"parameters":{"audit_retention_hour":168,"dry_run":true, "include_operations":"create,delete,pull"},"schedule":{"type":"Hourly","cron":"0 0 * * * *"}} |
the include_operation should be a comma separated string, e.g. create,delete,pull, if it is empty, no operation will be purged.
tags:
- purge
Expand Down

0 comments on commit 66259f8

Please sign in to comment.