{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmbeddedDocument", "title": "EmbeddedDocument", "additionalProperties": false, "properties": { "document_id": { "title": "Document Id", "type": "string" }, "document_type": { "title": "Document Type", "type": "string" }, "product": { "title": "Product", "type": "string" }, "timestamp": { "format": "date-time", "title": "Timestamp", "type": "string" } }, "required": [ "document_id", "document_type", "product", "timestamp" ], "type": "object" }