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