From 2893a700dc6556ee23b13d9794eb76a06e65212d Mon Sep 17 00:00:00 2001 From: Space Admiral Date: Mon, 19 Dec 2022 21:23:20 -0800 Subject: [PATCH] add size enum to survey --- models/Survey.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/models/Survey.json b/models/Survey.json index a9d8837..7cd4f44 100644 --- a/models/Survey.json +++ b/models/Survey.json @@ -24,12 +24,22 @@ "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.", "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": [ "signature", "symbol", "deposits", - "expiration" + "expiration", + "size" ] } \ No newline at end of file