{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-comment-schema.json", "title": "Comment Schema", "type": "object", "additionalProperties": false, "properties": { "user": { "type": "string" }, "date": { "type": "string", "format": "date-time" }, "text": { "type": "string" } } }