File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -122,6 +122,8 @@ paths:
122122 responses :
123123 ' 200 ' :
124124 $ref : ../responses/avatars/AvatarResponse.yaml
125+ ' 400 ' :
126+ $ref : ../responses/avatars/UnableToCreateAvatarNowError.yaml
125127 ' 401 ' :
126128 $ref : ../responses/FeaturedSetNotAdminError.yaml
127129 tags :
Original file line number Diff line number Diff line change @@ -3,6 +3,14 @@ type: object
33properties :
44 assetUrl :
55 type : string
6+ assetVersion :
7+ type : string
8+ platform :
9+ $ref : ../schemas/Platform.yaml
10+ created_at :
11+ $ref : ../schemas/LocalDateTime.yaml
12+ updated_at :
13+ $ref : ../schemas/LocalDateTime.yaml
614 id :
715 $ref : ../schemas/AvatarID.yaml
816 name :
@@ -19,6 +27,9 @@ properties:
1927 imageUrl :
2028 type : string
2129 minLength : 1
30+ thumbnailImageUrl :
31+ type : string
32+ minLength : 1
2233 releaseStatus :
2334 $ref : ../schemas/ReleaseStatus.yaml
2435 version :
Original file line number Diff line number Diff line change 1+ description : Error response due to missing permissions.
2+ content :
3+ application/json :
4+ schema :
5+ $ref : ../schemas/Error.yaml
6+ examples :
7+ Unable To Create Avatar Now Example :
8+ value :
9+ error :
10+ message : " You can't create an avatar right now"
11+ status_code : 400
Original file line number Diff line number Diff line change @@ -33,6 +33,9 @@ properties:
3333 type : string
3434 releaseStatus :
3535 $ref : ./ReleaseStatus.yaml
36+ searchable :
37+ type : boolean
38+ default : false
3639 styles :
3740 type : object
3841 properties :
Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ properties:
6666 type : string
6767 releaseStatus :
6868 $ref : ./ReleaseStatus.yaml
69+ storeId :
70+ $ref : ./StoreID.yaml
6971 tags :
7072 description : ' '
7173 items :
Original file line number Diff line number Diff line change 1+ title : LocalDateTime
2+ type : string
3+ description : ' A date and time of the pattern `M/d/yyyy h:mm:ss tt` (see C Sharp `System.DateTime`)'
4+ example : ' 12/12/2021 1:23:43 AM'
Original file line number Diff line number Diff line change 1+ example : esto_713b247d-2b5d-41a0-bba3-50db28dc1498
2+ title : StoreID
3+ type : string
Original file line number Diff line number Diff line change @@ -4,5 +4,13 @@ title: TiliaStatus
44properties :
55 economyOnline :
66 type : boolean
7+ economyState :
8+ type : integer
9+ plannedOfflineWindowStart :
10+ type : string
11+ format : date-time
12+ plannedOfflineWindowEnd :
13+ type : string
14+ format : date-time
715required :
816 - economyOnline
Original file line number Diff line number Diff line change @@ -92,6 +92,8 @@ properties:
9292 type : string
9393 releaseStatus :
9494 $ref : ./ReleaseStatus.yaml
95+ storeId :
96+ $ref : ./StoreID.yaml
9597 tags :
9698 description : ' '
9799 type : array
You can’t perform that action at this time.
0 commit comments