drop null type in schemas

This commit is contained in:
Cayo Puigdefabregas 2024-02-28 10:38:56 +01:00
parent e32098aa63
commit 895fd81dbc
3 changed files with 3 additions and 3 deletions

View File

@ -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"
}, },

View File

@ -100,7 +100,7 @@
"type": "string" "type": "string"
}, },
"website": { "website": {
"type": ["string", "null"], "type": "string",
"format": "uri" "format": "uri"
}, },
"evidence": { "evidence": {

View File

@ -52,7 +52,7 @@
"minLength": 1 "minLength": 1
}, },
"affiliatedUntil": { "affiliatedUntil": {
"type": ["string", "null"], "type": "string",
"format": "date" "format": "date"
}, },
"typeOfPerson": { "typeOfPerson": {