{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/birth_details", "title": "Birth details", "type": "object", "description": "Date of birth data provided by the user", "properties": { "date_of_birth": { "description": "date of birth, fomrat [Internet date and time format](https://tools.ietf.org/html/rfc3339#section-5.6).", "$ref": "#/components/schemas/date_no_time" } }, "required": [ "date_of_birth" ] }