@@ -163,6 +163,14 @@ components:
163
163
totalCollateral :
164
164
type : string
165
165
description : Total collateral (in amount of tokens) that can be used for matching requests
166
+ enabled :
167
+ type : boolean
168
+ description : Enable the ability to receive sales on this availability.
169
+ default : true
170
+ until :
171
+ type : integer
172
+ description : Specifies the latest timestamp, after which the availability will no longer host any slots. If set to 0, there will be no restrictions.
173
+ default : 0
166
174
167
175
SalesAvailabilityREAD :
168
176
allOf :
@@ -239,6 +247,9 @@ components:
239
247
slotIndex :
240
248
type : string
241
249
description : Slot Index as decimal string
250
+ validUntil :
251
+ type : integer
252
+ description : Timestamp after which the reservation will no longer be valid.
242
253
243
254
StorageRequestCreation :
244
255
type : object
@@ -704,7 +715,7 @@ paths:
704
715
" 400 " :
705
716
description : Invalid data input
706
717
" 422 " :
707
- description : Not enough node's storage quota available
718
+ description : Not enough node's storage quota available or the provided parameters did not pass validation
708
719
" 500 " :
709
720
description : Error reserving availability
710
721
" 503 " :
@@ -737,7 +748,7 @@ paths:
737
748
" 404 " :
738
749
description : Availability not found
739
750
" 422 " :
740
- description : Not enough node's storage quota available
751
+ description : The provided parameters did not pass validation
741
752
" 500 " :
742
753
description : Error reserving availability
743
754
" 503 " :
@@ -800,6 +811,8 @@ paths:
800
811
type : string
801
812
" 400 " :
802
813
description : Invalid or missing Request ID
814
+ " 422 " :
815
+ description : The storage request parameters are not valid
803
816
" 404 " :
804
817
description : Request ID not found
805
818
" 503 " :
0 commit comments