Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Add condition to age filter
Browse files Browse the repository at this point in the history
  • Loading branch information
nhanaa committed Aug 3, 2023
1 parent 5964bb1 commit a586c84
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion schemas/bursar-export/filter/bursarExportFilterAge.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,18 @@
"numDays": {
"type": "integer",
"minimum": 1
},
"condition": {
"type": "string",
"enum": [
"LESS_THAN_EQUAL",
"LESS_THAN",
"GREATER_THAN",
"GREATER_THAN_EQUAL"
]
}

},
"additionalProperties": false,
"required": ["type", "numDays"]
"required": ["type", "numDays", "condition"]
}

0 comments on commit a586c84

Please sign in to comment.