Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Udayraj123
GitHub Repository: Udayraj123/OMRChecker
Path: blob/master/src/schemas/constants.py
214 views
1
DEFAULT_SECTION_KEY = "DEFAULT"
2
3
BONUS_SECTION_PREFIX = "BONUS"
4
5
MARKING_VERDICT_TYPES = ["correct", "incorrect", "unmarked"]
6
7
ARRAY_OF_STRINGS = {
8
"type": "array",
9
"items": {"type": "string"},
10
}
11
12
FIELD_STRING_TYPE = {
13
"type": "string",
14
"pattern": "^([^\\.]+|[^\\.\\d]+\\d+\\.{2,3}\\d+)$",
15
}
16
17
FIELD_STRING_REGEX_GROUPS = r"([^\.\d]+)(\d+)\.{2,3}(\d+)"
18
19