Nokia NetAct · Schema
Nokia NetAct Network Element
A managed network element in the Nokia NetAct OSS topology (ITU-T X.700 NE)
Network ManagementOSSSNMPTelecom
Properties
| Name | Type | Description |
|---|---|---|
| distinguishedName | string | X.711 Distinguished Name uniquely identifying the NE in the managed object tree |
| neType | string | Managed object class (e.g., BTS, LNBTS, GNODEB, MSC, RNC, BSC) |
| technology | string | Radio access or core technology generation |
| vendor | string | Network equipment vendor |
| softwareVersion | string | |
| operationalState | string | ITU-T X.731 operational state |
| administrativeState | string | ITU-T X.731 administrative state |
| alarmState | string | Derived from active alarms on this NE |
| ipAddress | string | Management IP address |
| location | object | |
| attributes | object | Technology-specific managed object attribute values |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/nokia-netact/refs/heads/main/json-schema/nokia-netact-network-element-schema.json",
"title": "Nokia NetAct Network Element",
"description": "A managed network element in the Nokia NetAct OSS topology (ITU-T X.700 NE)",
"type": "object",
"required": ["distinguishedName", "neType"],
"properties": {
"distinguishedName": {
"type": "string",
"description": "X.711 Distinguished Name uniquely identifying the NE in the managed object tree"
},
"neType": {
"type": "string",
"description": "Managed object class (e.g., BTS, LNBTS, GNODEB, MSC, RNC, BSC)"
},
"technology": {
"type": "string",
"enum": ["2G", "3G", "4G", "5G", "TRANSPORT", "CORE"],
"description": "Radio access or core technology generation"
},
"vendor": {
"type": "string",
"description": "Network equipment vendor"
},
"softwareVersion": {
"type": "string"
},
"operationalState": {
"type": "string",
"enum": ["ENABLED", "DISABLED", "UNKNOWN"],
"description": "ITU-T X.731 operational state"
},
"administrativeState": {
"type": "string",
"enum": ["LOCKED", "UNLOCKED", "SHUTTINGDOWN"],
"description": "ITU-T X.731 administrative state"
},
"alarmState": {
"type": "string",
"enum": ["CLEAR", "WARNING", "MINOR", "MAJOR", "CRITICAL"],
"description": "Derived from active alarms on this NE"
},
"ipAddress": {
"type": "string",
"format": "ipv4",
"description": "Management IP address"
},
"location": {
"$ref": "#/$defs/NetworkLocation"
},
"attributes": {
"type": "object",
"additionalProperties": true,
"description": "Technology-specific managed object attribute values"
}
},
"$defs": {
"NetworkLocation": {
"type": "object",
"properties": {
"latitude": {
"type": "number",
"minimum": -90,
"maximum": 90
},
"longitude": {
"type": "number",
"minimum": -180,
"maximum": 180
},
"address": {
"type": "string"
},
"siteId": {
"type": "string",
"description": "Physical site identifier"
},
"siteName": {
"type": "string"
}
}
}
}
}