Newer
Older
gnexus-book / schemas / project.schema.json
@Eugene Sukhodolskiy Eugene Sukhodolskiy 1 day ago 1 KB Add broad knowledge inventory types
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "project.schema.json",
  "type": "array",
  "items": {
    "type": "object",
    "required": ["id", "name", "status", "type", "docs", "last_reviewed"],
    "properties": {
      "id": { "type": "string" },
      "name": { "type": "string" },
      "status": { "type": "string" },
      "type": { "type": "string" },
      "description": { "type": "string" },
      "repositories": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "name": { "type": "string" },
            "url": { "type": "string" },
            "path": { "type": "string" },
            "role": { "type": "string" }
          },
          "additionalProperties": true
        }
      },
      "documentation": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "label": { "type": "string" },
            "url": { "type": "string" },
            "path": { "type": "string" },
            "role": { "type": "string" }
          },
          "additionalProperties": true
        }
      },
      "related_services": { "type": "array", "items": { "type": "string" } },
      "related_hosts": { "type": "array", "items": { "type": "string" } },
      "related_domains": { "type": "array", "items": { "type": "string" } },
      "docs": { "type": "string" },
      "last_reviewed": { "type": "string" },
      "source_of_truth": { "type": "string" }
    },
    "additionalProperties": true
  }
}