Entity Count
412
ParentSubsidiaryJoint Venture
Active Schemas
89
JSON-LDOpenAPIXML
Compliance Status
98.4%
GDPRSOXISO27001
Organization Graph (Core Nodes)
| Entity ID | Name | Type | Status | Schema Version |
|---|---|---|---|---|
| AZ-0001 | Aevum Zenth Conglomerate | Parent Corp | Active | 4.2.0 |
| AZ-0142 | Zenth Digital Systems | Division | Active | 3.1.4 |
| AZ-0389 | Aevum Energy & Power | Division | Active | 2.8.1 |
| AZ-0217 | Zenth Health Sciences | Division | Audit Pending | 4.0.0 |
Core Organization Schema (JSON-LD / Schema.org)
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"name": "Aevum Zenth Conglomerate",
"legalName": "Aevum Zenth Global Holdings Ltd.",
"identifier": { "@type": "PropertyValue", "name": "LEI", "value": "AZ-LEI-8940217X" },
"subOrganization": [
{ "@type": "Organization", "name": "Zenth Digital Systems", "divisionType": "Technology" },
{ "@type": "Organization", "name": "Aevum Energy & Power", "divisionType": "Utilities" },
{ "@type": "Organization", "name": "Zenth Health Sciences", "divisionType": "Healthcare" }
],
"contactPoint": {
"@type": "ContactPoint",
"contactType": "Corporate Registry",
"availableLanguage": ["en", "zh", "ar", "es"]
}
},
{
"@type": "DefinedTerm",
"name": "AZTaxonomy",
"inDefinedTermSet": { "@type": "DefinedTermSet", "name": "Internal Entity Classification" }
}
]
}
Divisional Schema Contract (OpenAPI 3.0 Excerpt)
/
"/api/v2/divisions": {
"get": {
"operationId": "listDivisions",
"responses": {
"200": {
"description": "Paginated division entities",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Division"
}
},
"meta": { "$ref": "#/components/schemas/Pagination" }
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"Division": {
"type": "object",
"properties": {
"divisionId": { "type": "string", "format": "uuid" },
"legalName": { "type": "string" },
"taxClass": { "type": "string", "enum": ["Operating", "Holding", "JV", "Trusted"] },
"governanceLevel": { "type": "integer", "minimum": 1, "maximum": 5 }
}
}
}
}
}
Compliance Frameworks
| Standard | Scope | Next Audit |
|---|---|---|
| ISO 27001 | Information Security | 2026-06-15 |
| SOC 2 Type II | Data Privacy & Operations | 2026-04-22 |
| SOX 404 | Financial Reporting | 2026-03-30 |
| GDPR / CCPA | Consumer Data | Continuous |
Reporting Hierarchy
- └── Board of Directors
- │ └── Executive Committee (ExCo)
- │ ├── Chief Corporate Officer
- │ ├── Chief Technology Officer
- │ └── Chief Compliance Officer
- └── Divisional General Managers → Schema Owners
Internal API Endpoints
| Endpoint | Method | Auth | Description |
|---|---|---|---|
| /api/v2/entities | GET | OAuth2 (Service) | Query organization graph |
| /api/v2/schemas/validate | POST | Bearer Token | Validate division payload against registry |
| /api/v2/compliance/reports | GET | RBAC (Admin) | Fetch audit logs & compliance status |
| /webhooks/entity-updates | POST | Signature Verification | Stream real-time org changes |
SDK & Documentation
npm install @aevumzenth/sdk-ts
TypeScript client for schema validation & entity sync
pip install aevum-zenth-core
Python wrapper for governance APIs & report generation