Skip to content

Commit

Permalink
remove empty descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
aneeshafedo committed Aug 27, 2023
1 parent 869dad0 commit 17c6380
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 69 deletions.
34 changes: 0 additions & 34 deletions openapi/livestorm/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -829,55 +829,42 @@ paths:
event_type_id:
type: string
nullable: true
description: ''
status:
type: string
nullable: false
description: ''
timezone:
type: string
nullable: false
description: ''
room_link:
type: string
nullable: false
description: ''
attendees_count:
type: integer
nullable: false
description: ''
duration:
type: integer
nullable: true
description: ''
estimated_started_at:
type: integer
nullable: false
description: ''
started_at:
type: integer
nullable: true
description: ''
ended_at:
type: integer
nullable: true
description: ''
canceled_at:
type: integer
nullable: true
description: ''
created_at:
type: integer
nullable: false
description: ''
updated_at:
type: integer
nullable: false
description: ''
registrants_count:
type: integer
nullable: true
description: ''
meta:
"$ref": "#/components/schemas/Meta"
required:
Expand Down Expand Up @@ -1289,91 +1276,70 @@ paths:
role:
type: string
nullable: false
description: ''
created_at:
type: integer
nullable: true
description: ''
updated_at:
type: integer
nullable: true
description: ''
timezone:
type: string
nullable: true
description: ''
first_name:
type: string
nullable: true
description: ''
last_name:
type: string
nullable: true
description: ''
email:
type: string
nullable: true
description: ''
avatar_link:
type: string
nullable: true
description: ''
registrant_detail:
type: object
nullable: true
description: ''
properties:
event_id:
type: string
nullable: false
description: ''
created_at:
type: integer
nullable: false
description: ''
updated_at:
type: integer
nullable: false
description: ''
fields:
type: array
nullable: false
description: ''
items:
type: object
properties:
id:
type: string
nullable: false
description: ''
type:
type: string
nullable: false
description: ''
value:
type: string
nullable: true
description: ''
required:
type: boolean
nullable: false
description: ''
messages_count:
type: integer
nullable: false
description: ''
questions_count:
type: integer
nullable: false
description: ''
votes_count:
type: integer
nullable: false
description: ''
up_votes_count:
type: integer
nullable: false
description: ''
meta:
"$ref": "#/components/schemas/Meta"
required:
Expand Down
35 changes: 0 additions & 35 deletions openapi/livestorm/types.bal
Original file line number Diff line number Diff line change
Expand Up @@ -207,15 +207,10 @@ public type PeopleRequestAttribute record {
string utm_campaign?;
};

#
public type InlineResponse2003AttributesRegistrantDetail record {
#
string event_id?;
#
int created_at?;
#
int updated_at?;
#
InlineResponse2003AttributesRegistrantDetailFields[] fields?;
};

Expand All @@ -242,31 +237,18 @@ public type InlineResponse2011 record {

# Attributes
public type InlineResponse2002Attributes record {
#
string? event_type_id?;
#
string status?;
#
string timezone?;
#
string room_link?;
#
int attendees_count?;
#
int? duration?;
#
int estimated_started_at?;
#
int? started_at?;
#
int? ended_at?;
#
int? canceled_at?;
#
int created_at?;
#
int updated_at?;
#
int? registrants_count?;
};

Expand Down Expand Up @@ -325,13 +307,9 @@ public type PeopleAttribute record {
};

public type InlineResponse2003AttributesRegistrantDetailFields record {
#
string id?;
#
string 'type?;
#
string? value?;
#
boolean required?;
};

Expand Down Expand Up @@ -433,31 +411,18 @@ public type InlineResponse2002 record {

# Attributes
public type InlineResponse2003Attributes record {
#
string role?;
#
int? created_at?;
#
int? updated_at?;
#
string? timezone?;
#
string? first_name?;
#
string? last_name?;
#
string? email?;
#
string? avatar_link?;
#
InlineResponse2003AttributesRegistrantDetail? registrant_detail?;
#
int messages_count?;
#
int questions_count?;
#
int votes_count?;
#
int up_votes_count?;
};

Expand Down

0 comments on commit 17c6380

Please sign in to comment.