SUDO Dataset

A spatial dataset record from the University of Melbourne Spatial Urban Data Observatory (GeoNode API v2). Derived from a live response on 2026-08-19; every property listed was present on the observed record.

UniversityHigher EducationEducationAustraliaGroup of EightResearchResearch DataResearch RepositoryOpen DataGeospatialIdentity FederationLibrary

Properties

Name Type Description
pk integer
uuid string
title string
name string
abstract string
raw_abstract string
purpose stringnull
resource_type string
subtype stringnull
doi stringnull DOI when the dataset has been minted one
date string
date_type string
created string
last_updated string
language string
license objectnull
constraints_other stringnull
attribution stringnull
data_quality_statement stringnull
supplemental_information stringnull
category objectnull
keywords array
tkeywords array
regions array
owner object
poc array
metadata_author array
publisher array
custodian array
distributor array
originator array
principal_investigator array
bbox_polygon object
ll_bbox_polygon object
extent object
srid string
spatial_representation_type objectnull
has_time boolean
has_elevation boolean
temporal_extent_start stringnull
temporal_extent_end stringnull
is_approved boolean
is_published boolean
is_copyable boolean
advertised boolean
featured boolean
metadata_only boolean
processed boolean
state string
store stringnull
workspace stringnull
charset string
sourcetype string
detail_url string
embed_url string
thumbnail_url string
download_url stringnull
download_urls array
links array
styles array
default_style objectnull
perms array
rating integer
popular_count integer
share_count integer
View JSON Schema on GitHub

JSON Schema

university-of-melbourne-sudo-dataset.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-melbourne/refs/heads/main/json-schema/university-of-melbourne-sudo-dataset.json",
  "title": "SUDO Dataset",
  "description": "A spatial dataset record from the University of Melbourne Spatial Urban Data Observatory (GeoNode API v2). Derived from a live response on 2026-08-19; every property listed was present on the observed record.",
  "x-provenance": {
    "generated": "2026-08-19",
    "method": "derived",
    "source": "GET https://sudo.eresearch.unimelb.edu.au/api/v2/datasets?page_size=1 (HTTP 200, total=7417)",
    "x-operator": "institution"
  },
  "type": "object",
  "required": ["pk", "uuid", "title", "resource_type"],
  "properties": {
    "pk": { "type": "integer" },
    "uuid": { "type": "string" },
    "title": { "type": "string" },
    "name": { "type": "string" },
    "abstract": { "type": "string" },
    "raw_abstract": { "type": "string" },
    "purpose": { "type": ["string", "null"] },
    "resource_type": { "type": "string" },
    "subtype": { "type": ["string", "null"] },
    "doi": { "type": ["string", "null"], "description": "DOI when the dataset has been minted one" },
    "date": { "type": "string", "format": "date-time" },
    "date_type": { "type": "string" },
    "created": { "type": "string", "format": "date-time" },
    "last_updated": { "type": "string", "format": "date-time" },
    "language": { "type": "string" },
    "license": { "type": ["object", "null"] },
    "constraints_other": { "type": ["string", "null"] },
    "attribution": { "type": ["string", "null"] },
    "data_quality_statement": { "type": ["string", "null"] },
    "supplemental_information": { "type": ["string", "null"] },
    "category": { "type": ["object", "null"] },
    "keywords": { "type": "array", "items": { "type": "object" } },
    "tkeywords": { "type": "array", "items": { "type": "object" } },
    "regions": { "type": "array", "items": { "type": "object" } },
    "owner": { "type": "object" },
    "poc": { "type": "array", "items": { "type": "object" } },
    "metadata_author": { "type": "array", "items": { "type": "object" } },
    "publisher": { "type": "array", "items": { "type": "object" } },
    "custodian": { "type": "array", "items": { "type": "object" } },
    "distributor": { "type": "array", "items": { "type": "object" } },
    "originator": { "type": "array", "items": { "type": "object" } },
    "principal_investigator": { "type": "array", "items": { "type": "object" } },
    "bbox_polygon": { "$ref": "#/$defs/GeoJSONPolygon" },
    "ll_bbox_polygon": { "$ref": "#/$defs/GeoJSONPolygon" },
    "extent": { "type": "object" },
    "srid": { "type": "string", "examples": ["EPSG:4326"] },
    "spatial_representation_type": { "type": ["object", "null"] },
    "has_time": { "type": "boolean" },
    "has_elevation": { "type": "boolean" },
    "temporal_extent_start": { "type": ["string", "null"], "format": "date-time" },
    "temporal_extent_end": { "type": ["string", "null"], "format": "date-time" },
    "is_approved": { "type": "boolean" },
    "is_published": { "type": "boolean" },
    "is_copyable": { "type": "boolean" },
    "advertised": { "type": "boolean" },
    "featured": { "type": "boolean" },
    "metadata_only": { "type": "boolean" },
    "processed": { "type": "boolean" },
    "state": { "type": "string" },
    "store": { "type": ["string", "null"] },
    "workspace": { "type": ["string", "null"] },
    "charset": { "type": "string" },
    "sourcetype": { "type": "string" },
    "detail_url": { "type": "string" },
    "embed_url": { "type": "string" },
    "thumbnail_url": { "type": "string" },
    "download_url": { "type": ["string", "null"] },
    "download_urls": { "type": "array", "items": { "type": "object" } },
    "links": { "type": "array", "items": { "type": "object" } },
    "styles": { "type": "array", "items": { "type": "object" } },
    "default_style": { "type": ["object", "null"] },
    "perms": { "type": "array", "items": { "type": "string" } },
    "rating": { "type": "integer" },
    "popular_count": { "type": "integer" },
    "share_count": { "type": "integer" }
  },
  "$defs": {
    "GeoJSONPolygon": {
      "type": "object",
      "required": ["type", "coordinates"],
      "properties": {
        "type": { "const": "Polygon" },
        "coordinates": {
          "type": "array",
          "items": { "type": "array", "items": { "type": "array", "items": { "type": "number" }, "minItems": 2 } }
        }
      }
    }
  }
}

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/university-of-melbourne-sudo-dataset"
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 email required.

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