Grapes Project

A project resource within the Grapes knowledge management platform.

Knowledge ManagementKnowledge BaseData ManagementAutomationHATEOAS

Properties

Name Type Description
id string
name string
description string
createdAt string
modifiedAt string
_links object HATEOAS links to related resources.
View JSON Schema on GitHub

JSON Schema

grapes-knowledge-base-project-schema.json Raw ↑
{
  "$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" }
        }
      }
    }
  }
}