fix nuls values in not required but with format
This commit is contained in:
parent
3efd530d18
commit
6283539948
|
@ -117,7 +117,7 @@
|
|||
"description": "The number of (ECTS) credits awarded for the course"
|
||||
},
|
||||
"dateOfAssessment": {
|
||||
"type": "string",
|
||||
"type": ["string", "null"],
|
||||
"description": "The date of assessment",
|
||||
"format": "date"
|
||||
},
|
||||
|
@ -142,4 +142,4 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
"type": "string"
|
||||
},
|
||||
"website": {
|
||||
"type": "string",
|
||||
"type": ["string", "null"],
|
||||
"format": "uri"
|
||||
},
|
||||
"evidence": {
|
||||
|
@ -129,4 +129,4 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
"minLength": 1
|
||||
},
|
||||
"affiliatedUntil": {
|
||||
"type": "string",
|
||||
"type": ["string", "null"],
|
||||
"format": "date"
|
||||
},
|
||||
"typeOfPerson": {
|
||||
|
@ -100,4 +100,4 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue