Vocabulary project modelling, transforming and presenting ATED as a semantic publication.
The are both displayed in KurrawongAI's demo Prez system online at:
Generate the vocabulary from the MultiTes XML export:
python3 scripts/xml_to_skos.py \
"raw/xml/ATED June2026 with TNRs.xml" \
vocabs/ated.ttlAdd provenance links to the corresponding legacy MultiTes term resources by
opting in with --multites-provenance:
python3 scripts/xml_to_skos.py --multites-provenance \
"raw/xml/ATED June2026 with TNRs.xml" \
vocabs/ated.ttlmanifest.ttl describes how to load both vocabularies into the
https://example.com/demo-vocabs Prez catalogue. Validate it and inspect the
named graphs before publishing:
pm validate manifest.ttl
pm load file manifest.ttl /tmp/ated-manifest.trigPublish using the internal writable SPARQL Graph Store endpoint and its credentials, not the public Prez query API:
pm load sparql manifest.ttl "$DEMO_SPARQL_ENDPOINT" \
--username "$DEMO_SPARQL_USERNAME"After publishing, verify the deployed ATED version:
SELECT ?modified
WHERE {
GRAPH <https://linked.data.gov.au/def/ated> {
<https://linked.data.gov.au/def/ated>
<https://schema.org/dateModified> ?modified .
}
}