Te Herenga Waka Website Global Object

JSON Schema for the response body of GET https://www.wgtn.ac.nz/api/globalobject, an institution-operated public endpoint on the university's own domain.

UniversityHigher EducationEducationNew ZealandPublic Research UniversityResearchOpen AccessResearch RepositoryInstitutional RepositoryOAI-PMHDSpaceLibraryCourse CatalogIdentity FederationResearch Computing
View JSON Schema on GitHub

JSON Schema

victoria-university-of-wellington-globalobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/victoria-university-of-wellington/main/json-schema/victoria-university-of-wellington-globalobject-schema.json",
  "title": "Te Herenga Waka Website Global Object",
  "description": "JSON Schema for the response body of GET https://www.wgtn.ac.nz/api/globalobject, an institution-operated public endpoint on the university's own domain.",
  "x-provenance": {
    "generated": "2026-08-30",
    "method": "derived",
    "source": "openapi/_original/victoria-university-of-wellington-website-globalobject.yaml",
    "note": "Generated by API Evangelist from the probed OpenAPI components. The university publishes no schema of its own for this endpoint."
  },
  "x-operator": "institution",
  "$ref": "#/$defs/GlobalObject",
  "$defs": {
    "GlobalObject": {
      "type": "object",
      "description": "Global site configuration for the Te Herenga Waka public website.",
      "properties": {
        "baseUrls": {
          "$ref": "#/$defs/BaseUrls"
        },
        "logo": {
          "$ref": "#/$defs/Logo"
        },
        "navigation": {
          "$ref": "#/$defs/Navigation"
        },
        "apply": {
          "$ref": "#/$defs/CallToAction"
        },
        "search": {
          "$ref": "#/$defs/SearchConfig"
        },
        "contacts": {
          "$ref": "#/$defs/Contacts"
        },
        "copyright": {
          "type": "string",
          "description": "HTML-escaped copyright line for the institution."
        },
        "debug": {
          "type": "string",
          "description": "CMS debug flag. Observed empty on the public surface."
        }
      }
    },
    "BaseUrls": {
      "type": "object",
      "description": "Canonical base URLs the front end composes links from.",
      "properties": {
        "mainDomain": {
          "type": "string",
          "format": "uri"
        },
        "intranet": {
          "type": "string",
          "format": "uri"
        },
        "cdnAssets": {
          "type": "string",
          "format": "uri"
        },
        "cmsAssets": {
          "type": "string",
          "format": "uri"
        },
        "courses": {
          "type": "string",
          "format": "uri",
          "description": "Root of the public course catalogue."
        },
        "explore": {
          "type": "string",
          "format": "uri",
          "description": "Root of the study-area and programme explorer."
        }
      }
    },
    "Logo": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string"
        },
        "href": {
          "type": "string",
          "format": "uri"
        },
        "alt": {
          "type": "string"
        },
        "assets": {
          "$ref": "#/$defs/LogoAssets"
        }
      }
    },
    "LogoAssets": {
      "type": "object",
      "description": "Logo image manifest. Each breakpoint key carries a source path relative to `basePath` and the intrinsic width-to-height ratio.",
      "properties": {
        "basePath": {
          "type": "string",
          "format": "uri"
        },
        "desktop": {
          "$ref": "#/$defs/LogoAsset"
        },
        "desktopBrand": {
          "$ref": "#/$defs/LogoAsset"
        },
        "mobile": {
          "$ref": "#/$defs/LogoAsset"
        },
        "tablet": {
          "$ref": "#/$defs/LogoAsset"
        },
        "print": {
          "$ref": "#/$defs/LogoAsset"
        },
        "icon": {
          "$ref": "#/$defs/LogoAsset"
        },
        "green": {
          "type": "object",
          "description": "Alternate green-brand variants, keyed by the same breakpoint names.",
          "additionalProperties": {
            "$ref": "#/$defs/LogoAsset"
          }
        }
      }
    },
    "LogoAsset": {
      "type": "object",
      "properties": {
        "src": {
          "type": "string"
        },
        "widthToHeightRatio": {
          "type": "number"
        }
      }
    },
    "Navigation": {
      "type": "object",
      "properties": {
        "root": {
          "type": "array",
          "description": "Primary audience navigation.",
          "items": {
            "$ref": "#/$defs/NavItem"
          }
        },
        "alternate": {
          "type": "array",
          "description": "Secondary utility navigation.",
          "items": {
            "$ref": "#/$defs/NavItem"
          }
        },
        "footer": {
          "type": "array",
          "description": "Footer navigation.",
          "items": {
            "$ref": "#/$defs/NavItem"
          }
        }
      }
    },
    "NavItem": {
      "type": "object",
      "properties": {
        "href": {
          "type": "string",
          "format": "uri"
        },
        "class": {
          "type": "string"
        },
        "content": {
          "type": "string",
          "description": "Link label as rendered."
        },
        "type": {
          "type": "string",
          "description": "Item kind. `link` observed."
        }
      }
    },
    "CallToAction": {
      "type": "object",
      "properties": {
        "url": {
          "type": "string",
          "format": "uri"
        },
        "text": {
          "type": "string"
        }
      }
    },
    "SearchConfig": {
      "type": "object",
      "description": "Form contracts for the public and intranet site search.",
      "properties": {
        "public": {
          "$ref": "#/$defs/SearchForm"
        },
        "intranet": {
          "$ref": "#/$defs/SearchForm"
        }
      }
    },
    "SearchForm": {
      "type": "object",
      "properties": {
        "action": {
          "type": "string",
          "description": "Form action path or URL the query is submitted to."
        },
        "queryName": {
          "type": "string",
          "description": "Query-string parameter name carrying the search term."
        },
        "placeHolder": {
          "type": "string"
        },
        "submitValue": {
          "type": "string"
        },
        "new": {
          "type": "object",
          "description": "Replacement copy for the redesigned search widget.",
          "properties": {
            "placeHolder": {
              "type": "string"
            }
          }
        }
      }
    },
    "Contacts": {
      "type": "object",
      "properties": {
        "tel": {
          "type": "object",
          "properties": {
            "main": {
              "type": "string"
            },
            "mainInternational": {
              "type": "string"
            },
            "emergency": {
              "type": "string"
            },
            "emergencyExtension": {
              "type": "string"
            }
          }
        },
        "mail": {
          "type": "object",
          "properties": {
            "main": {
              "type": "string",
              "format": "email"
            }
          }
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/victoria-university-of-wellington-globalobject"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.