Merge "Dashboard using policy agent NBI"
[nonrtric.git] / dashboard / webapp-frontend / src / app / interfaces / policy.types.ts
index e694bb6..b6ecce6 100644 (file)
 // Models of data used by the Policy Control
 
 export interface PolicyType {
-  policy_type_id: number;
   name: string;
   schema: string;
   schemaObject: any;
 }
 
 export interface PolicyInstance {
-  instanceId: string;
-  instance: string;
+  id: string;
+  json: string;
+  ric: string;
+  service: string;
+  lastModified: string;
 }
 
 export interface PolicyInstanceAck {