add size enum to survey

This commit is contained in:
Space Admiral 2022-12-19 21:23:20 -08:00
parent 7603bcfd67
commit 2893a700dc

View File

@ -24,12 +24,22 @@
"format": "date-time", "format": "date-time",
"description": "The date and time when the survey expires. After this date and time, the survey will no longer be available for extraction.", "description": "The date and time when the survey expires. After this date and time, the survey will no longer be available for extraction.",
"minimum": 0 "minimum": 0
},
"size": {
"type": "string",
"description": "The size of the deposit. This value indicates how much can be extracted from the survey before it is exhausted.",
"enum": [
"SMALL",
"MODERATE",
"LARGE"
]
} }
}, },
"required": [ "required": [
"signature", "signature",
"symbol", "symbol",
"deposits", "deposits",
"expiration" "expiration",
"size"
] ]
} }