Skip to content

Commit

Permalink
Update missing objects
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgDangl committed Apr 22, 2024
1 parent d2a76fc commit ca47649
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1793,6 +1793,11 @@ components:
$ref: '#/components/schemas/topic_actions'
comment_actions:
$ref: '#/components/schemas/comment_actions'
custom_fields:
type: array
nullable: true
items:
$ref: '#/components/schemas/project_custom_field_extension'
project_GET:
type: object
description: Schema for single project GET, BCF REST API.
Expand Down Expand Up @@ -2188,6 +2193,8 @@ components:
default_viewpoint_guid:
type: string
nullable: true
custom_fields:
$ref: '#/components/schemas/topic_custom_fields'
topic_POST:
type: object
required:
Expand Down Expand Up @@ -2236,6 +2243,8 @@ components:
default_viewpoint_guid:
type: string
nullable: true
custom_fields:
$ref: '#/components/schemas/topic_custom_fields'
topic_PUT:
type: object
required:
Expand Down Expand Up @@ -2281,6 +2290,23 @@ components:
default_viewpoint_guid:
type: string
nullable: true
custom_fields:
$ref: '#/components/schemas/topic_custom_fields'
# topic custom fields schemas
topic_custom_fields:
type: array
items:
$ref: '#/components/schemas/topic_custom_field'
topic_custom_field:
type: object
properties:
id:
type: string
nullable: true
description: 'Refers to the id of the custom field in the project extensions.'
value:
type: string
nullable: true
# viewpoint schemas
bitmap_GET:
type: object
Expand Down Expand Up @@ -2646,7 +2672,7 @@ components:
properties:
location:
$ref: '#/components/schemas/point'
custom_field:
project_custom_field_extension:
parameters:
id:
type: string
Expand Down Expand Up @@ -2675,8 +2701,8 @@ components:
enumValues:
type: array
items:
$ref: '#/components/schemas/custom_field_enum_value'
custom_field_enum_value:
$ref: '#/components/schemas/project_custom_field_enum_value'
project_custom_field_enum_value:
parameters:
value:
type: string
Expand Down

0 comments on commit ca47649

Please sign in to comment.