Skip to content

Commit

Permalink
Fix schema errors
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed Apr 22, 2024
1 parent ca47649 commit 5de2f9e
Showing 1 changed file with 47 additions and 45 deletions.
92 changes: 47 additions & 45 deletions swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2606,7 +2606,52 @@ components:
type: object
properties:
visibility:
$ref: '#/components/schemas/visibility'
$ref: '#/components/schemas/visibility'
project_custom_field_extension:
type: object
properties:
id:
type: string
name:
type: string
type:
type: string
enum:
- integer
- decimal
- string
- boolean
- enum
- date
- date-time
readonly:
type: boolean
minArraySize:
type: integer
maxArraySize:
type: integer
defaultValue:
type: array
items:
type: string
enumValues:
type: array
items:
$ref: '#/components/schemas/project_custom_field_enum_value'
project_custom_field_enum_value:
type: object
properties:
value:
type: string
displayValue:
type: string
readonly:
type: boolean
marker:
type: object
properties:
location:
$ref: '#/components/schemas/point'
parameters:
version:
in: path
Expand Down Expand Up @@ -2666,47 +2711,4 @@ components:
in: query
name: $skip
schema:
type: string
marker:
type: object
properties:
location:
$ref: '#/components/schemas/point'
project_custom_field_extension:
parameters:
id:
type: string
name:
type: string
type:
type: string
enum:
- integer
- decimal
- string
- boolean
- enum
- date
- date-time
readonly:
type: boolean
minArraySize:
type: integer
maxArraySize:
type: integer
defaultValue:
type: array
items:
type: string
enumValues:
type: array
items:
$ref: '#/components/schemas/project_custom_field_enum_value'
project_custom_field_enum_value:
parameters:
value:
type: string
displayValue:
type: string
readonly:
type: boolean
type: string

0 comments on commit 5de2f9e

Please sign in to comment.