drop null type in schemas
This commit is contained in:
parent
e32098aa63
commit
895fd81dbc
|
@ -117,7 +117,7 @@
|
||||||
"description": "The number of (ECTS) credits awarded for the course"
|
"description": "The number of (ECTS) credits awarded for the course"
|
||||||
},
|
},
|
||||||
"dateOfAssessment": {
|
"dateOfAssessment": {
|
||||||
"type": ["string", "null"],
|
"type": "string",
|
||||||
"description": "The date of assessment",
|
"description": "The date of assessment",
|
||||||
"format": "date"
|
"format": "date"
|
||||||
},
|
},
|
||||||
|
|
|
@ -100,7 +100,7 @@
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"website": {
|
"website": {
|
||||||
"type": ["string", "null"],
|
"type": "string",
|
||||||
"format": "uri"
|
"format": "uri"
|
||||||
},
|
},
|
||||||
"evidence": {
|
"evidence": {
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
"minLength": 1
|
"minLength": 1
|
||||||
},
|
},
|
||||||
"affiliatedUntil": {
|
"affiliatedUntil": {
|
||||||
"type": ["string", "null"],
|
"type": "string",
|
||||||
"format": "date"
|
"format": "date"
|
||||||
},
|
},
|
||||||
"typeOfPerson": {
|
"typeOfPerson": {
|
||||||
|
|
Loading…
Reference in New Issue