{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/grapes-knowledge-base/refs/heads/main/json-schema/grapes-knowledge-base-project-schema.json", "title": "Grapes Project", "description": "A project resource within the Grapes knowledge management platform.", "type": "object", "required": ["id", "name"], "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "modifiedAt": { "type": "string", "format": "date-time" }, "_links": { "type": "object", "description": "HATEOAS links to related resources.", "additionalProperties": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" } } } } } }