Schema
Schema operations on individual schema objects.
Returns schema by schema ID. Only users with the Standard Registry role are allowed to make the request.
Schema ID
69aeb71ef8c5b278e3bab4e5Successful operation.
2026-03-25T12:40:32.586Z2026-03-25T12:40:59.908Z69aeb71ef8c5b278e3bab4e59db028d2-03ad-4d49-a178-cf4b67f8c147Schema nameDescriptionPOLICYPossible values: 9db028d2-03ad-4d49-a178-cf4b67f8c147DRAFTPossible values: 0.0.60463791.0.0did:hedera:testnet:Cvzp5kKVUuipBCQjcF54fBjdicvaKsB8zHeQ6Qq22U2Z_0.0.8200599did:hedera:testnet:Cvzp5kKVUuipBCQjcF54fBjdicvaKsB8zHeQ6Qq22U2Z_0.0.82005991773670900.819264517POLICYPossible values: 69aeb71ef8c5b278e3bab4e59db028d2-03ad-4d49-a178-cf4b67f8c147ipfs://AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAipfs://AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAinnerSchemaConfigurationInTextjsonLdContextInTextfalsefalsefalse1.2.01Unauthorized request.
Forbidden
Resource not found.
Internal server error.
GET /api/v1/schema/{schemaId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"createDate": "2026-03-29T12:52:05.192Z",
"updateDate": "2026-03-29T12:52:52.015Z",
"uuid": "c5434400-5cca-41cc-b904-1d4d78017a29",
"hash": "",
"name": "Project Details",
"description": "",
"entity": "NONE",
"status": "PUBLISHED",
"version": "1.0.0",
"sourceVersion": "",
"creator": "did:hedera:testnet:Cvzp5kKVUuipBCQjcF54fBjdicvaKsB8zHeQ6Qq22U2Z_0.0.8417999",
"owner": "did:hedera:testnet:Cvzp5kKVUuipBCQjcF54fBjdicvaKsB8zHeQ6Qq22U2Z_0.0.8417999",
"topicId": "0.0.8427214",
"messageId": "1774788770.467514813",
"documentURL": "ipfs://bafkreic5fnqunk6x5kr2i45pb4ut2ovevpqpubwyrbrfgscmgvwp7wy2ya",
"contextURL": "ipfs://bafkreide5ft6pnew5po4rjlsd5m2gqzq25xpih276fnj7hxf56km3wh4am",
"iri": "#c5434400-5cca-41cc-b904-1d4d78017a29&1.0.0",
"readonly": false,
"system": false,
"active": false,
"category": "POLICY",
"codeVersion": "1.2.0",
"defs": [
"#GeoJSON",
"#cecced3d-a673-4bcc-a93c-e3b900181949&1.0.0"
],
"errors": [],
"document": {},
"context": {},
"id": "69c9207581910b160912d32b",
"isOwner": true,
"isCreator": true
}Returns all parent schemas.
Schema identifier
69aeb71ef8c5b278e3bab4e5Successful operation.
69aeb71ef8c5b278e3bab4e5Schema namePUBLISHEDPossible values: 1.0.0POLICYPossible values: Unauthorized request.
Forbidden
Internal server error.
GET /api/v1/schema/{schemaId}/parents HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"name": "Project Description",
"status": "PUBLISHED",
"version": "1.0.0",
"sourceVersion": "",
"category": "POLICY",
"id": "69c9207481910b160912d2ef"
},
{
"name": "Monitoring Report",
"status": "PUBLISHED",
"version": "1.0.0",
"sourceVersion": "",
"category": "POLICY",
"id": "69c9207481910b160912d2f9"
}
]Returns schema tree.
Schema identifier
69aeb71ef8c5b278e3bab4e5Successful operation.
Unauthorized request.
Forbidden
Internal server error.
GET /api/v1/schema/{schemaId}/tree HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"name": "Project Details",
"type": "#c5434400-5cca-41cc-b904-1d4d78017a29&1.0.0",
"children": [
{
"name": "Date Range",
"type": "#cecced3d-a673-4bcc-a93c-e3b900181949&1.0.0",
"children": []
}
]
}Returns schema tree as exportable PlantUML code.
Schema identifier
Include field names and descriptions in classes
Include formula components and links
Include dependent formulas referenced by directly linked formulas
Successful operation.
Unauthorized request.
Forbidden
Internal server error.
GET /api/v1/schema/{schemaId}/tree/export/plantuml HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
textReturns a sample payload for the schema by schema Id.
Schema ID
69aeb71ef8c5b278e3bab4e5Successful operation.
Generated document identifier
Schema type without the leading #
JSON-LD context; first item is the schema IRI
Unauthorized request.
Forbidden
Resource not found.
Internal server error.
GET /api/v1/schema/{schemaId}/sample-payload HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "59760e7b-f249-46a6-a39f-d59d861e9690",
"field0": "example",
"field1": [
"example"
],
"field2": [
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Point",
"coordinates": [
0,
0
]
}
}
]
}
],
"field3": [
"example@email.com"
],
"type": "c5434400-5cca-41cc-b904-1d4d78017a29&1.0.0",
"@context": [
"#c5434400-5cca-41cc-b904-1d4d78017a29&1.0.0"
]
}Last updated