{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Commit", "title": "Commit", "type": "object", "properties": { "id": { "type": "string" }, "message": { "type": "string" }, "dateCreated": { "type": "string", "format": "date-time" }, "author": { "type": "object", "properties": { "name": { "type": "string" }, "email": { "type": "string", "format": "email" } } }, "repository": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } }, "required": [ "id" ] }