{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GitUserDate", "title": "GitUserDate", "type": "object", "description": "Git user and date information", "properties": { "name": { "type": "string", "description": "User display name", "example": "John Doe" }, "email": { "type": "string", "format": "email", "description": "User email address", "example": "john.doe@example.com" }, "date": { "type": "string", "format": "date-time", "description": "Date and time of the action" }, "imageUrl": { "type": "string", "format": "uri" } } }