From 8f41acd8f02fc8c749a1a79dba2bfddb617f1695 Mon Sep 17 00:00:00 2001
From: GitHub Action Bot <tyler.mairose@sailpoint.com>
Date: Wed, 2 Oct 2024 13:27:31 +0000
Subject: [PATCH] Automated commit 'Fixed path variable and schema for get
 campaign filters (#1841)' by github action: 11144718260

---
 idn/v3/paths/campaign-filter.yaml         |  2 +-
 idn/v3/schemas/CampaignFilterDetails.yaml | 13 ++++++++++++-
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/idn/v3/paths/campaign-filter.yaml b/idn/v3/paths/campaign-filter.yaml
index 23a02741..d78edada 100644
--- a/idn/v3/paths/campaign-filter.yaml
+++ b/idn/v3/paths/campaign-filter.yaml
@@ -9,7 +9,7 @@ get:
     - userAuth: [idn:campaign-filter:read]
   parameters:
     - in: path
-      name: filterId
+      name: id
       schema:
         type: string
         example: e9f9a1397b842fd5a65842087040d3ac
diff --git a/idn/v3/schemas/CampaignFilterDetails.yaml b/idn/v3/schemas/CampaignFilterDetails.yaml
index d2a07868..3052c409 100644
--- a/idn/v3/schemas/CampaignFilterDetails.yaml
+++ b/idn/v3/schemas/CampaignFilterDetails.yaml
@@ -1,6 +1,10 @@
 type: object
 description: Campaign Filter Details
 properties:
+  id:
+    type: string
+    description: The unique ID of the campaign filter
+    example: 5ec18cef39020d6fd7a60ad3970aba61
   name:
     type: string
     description: Campaign filter name.
@@ -63,7 +67,14 @@ properties:
         "children": null
       }
     ]
+  isSystemFilter:
+    type: boolean
+    default: false
+    description: If true, the filter is created by the system. If false, the filter is created by a user.
+    example: false
 required:
+  - id
   - name
   - owner
-  - mode
\ No newline at end of file
+  - mode
+  - isSystemFilter
\ No newline at end of file