{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://numenward.uwece.chatgpt.site/model-manifest.schema.json",
  "title": "Numenward project proposal",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "name",
    "repository",
    "license",
    "summary",
    "maintainer_authorized"
  ],
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 120
    },
    "repository": {
      "type": "string",
      "format": "uri",
      "pattern": "^https://"
    },
    "license": {
      "type": "string",
      "minLength": 1
    },
    "summary": {
      "type": "string",
      "minLength": 1,
      "maxLength": 10000
    },
    "maintainer_authorized": {
      "const": true
    }
  }
}
