{
  "name": "CoU Research Outputs API (sample schema)",
  "version": "1.0",
  "endpoints": [
    {
      "path": "/api/research/outputs",
      "method": "GET",
      "params": [
        "q",
        "type",
        "sdg",
        "year_from",
        "year_to",
        "school",
        "department",
        "researcher_id"
      ],
      "returns": "List[Output]"
    },
    {
      "path": "/api/research/outputs/{id}",
      "method": "GET",
      "returns": "OutputDetails"
    },
    {
      "path": "/api/research/metrics/summary",
      "method": "GET",
      "returns": "DashboardSummary"
    }
  ],
  "Output": {
    "id": "string",
    "title": "string",
    "type": "Article|Book|Patent|Dataset|Software|PolicyBrief",
    "authors": "array",
    "school": "string",
    "department": "string",
    "year": "int",
    "sdgs": "array[int]",
    "doi": "string",
    "license": "string",
    "downloads": "int",
    "citations": "int"
  }
}