DemandFlow Support Centre

NWPLATDEP: Network Platform Dependency

ReferenceEntity Reference16/04/2026Updated 16/04/2026
A directional relationship between two deployed network platform instances, capturing dependency, composition, or integration links with criticality for impact analysis.

NWPLATDEP: Network Platform Dependency

A directional relationship between two deployed network platform instances, capturing dependency, composition, or integration links with criticality for impact analysis.

Default definition. This article describes the default NWPLATDEP definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches NWPLATDEP.

Entity properties

PropertyValue
Entity codeNWPLATDEP
Display nameNetwork Platform Dependency
PluralNetwork Platform Dependencies
Level6400

Use cases

NWPLATDEP is a junction entity linking two NWPLATINST records in a directional relationship. The sourcePlatform is the platform that has the dependency, and targetPlatform is the platform being depended on. For example, if IMS depends on Network Cloud, sourcePlatform=IMS and targetPlatform=Network Cloud.

Fields

Relationship

FieldTypeRequiredNotes
nametextYesShort description e.g. 'IMS depends on Network Cloud'
sourcePlatformreference → NWPLATINSTYesThe platform that has the dependency
targetPlatformreference → NWPLATINSTYesThe platform being depended on
relationshipTypeenumYesRelationship Type Valid ids: depends-on (Depends On), component-of (Component Of), integrates-with (Integrates With).

Impact

FieldTypeRequiredNotes
criticalityenumYesHow critical is this dependency? Critical = total failure if target is unavailable Valid ids: low (Low), medium (Medium), high (High), critical (Critical).
descriptiontext (multi-line)Describe the nature of this dependency and what breaks if the target is unavailable
mitigationstext (multi-line)Fallback or redundancy measures if the target becomes unavailable

Relationships

  • Lookups: sourcePlatform points at a NWPLATINST record. targetPlatform points at a NWPLATINST record.

Creating a Network Platform Dependency via the API

POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json

{
  "entity":   "NWPLATDEP",
  "level":    6400,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "name": "Example",
  "sourcePlatform": "",
  "targetPlatform": "",
  "relationshipType": "depends-on"
}

Listing Network Platform Dependencies records

# All network platform dependencies in your tenant
GET /v1/entities/NWPLATDEP/SUB

See also

nwplatdepnetworkplatformdependencydependenciesnetworkplatformdependenciesentity reference

Was this article helpful?

← Back to Knowledge Base