From 9eb2e39d154d8694d3ea64831d3f8be91bb6ae03 Mon Sep 17 00:00:00 2001 From: Roi-Hochler <95178231+Roi-Hochler@users.noreply.github.com> Date: Sun, 28 Aug 2022 15:23:29 +0300 Subject: [PATCH] Adding migration section --- schema.capabilities.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/schema.capabilities.json b/schema.capabilities.json index 84099a7..5a8b521 100644 --- a/schema.capabilities.json +++ b/schema.capabilities.json @@ -72,6 +72,9 @@ "subtotals": { "description": "Specifies the subtotal customizations applied in the customizeQuery method", "$ref": "#/definitions/subtotals" + }, + "migration": { + "$ref": "#/definitions/migration" } }, "required": [ @@ -1444,6 +1447,25 @@ "requires": [ "matrix" ] + }, + "migration": { + "type": "object", + "description": "Defines the supported APIs for migration", + "properties": { + "filter": { + "$ref": "#/definitions/migration.filter" + } + } + }, + "migration.filter": { + "type": "object", + "description": "Defines the capabilities for migrating the filter API", + "properties": { + "shouldUseIdentityFilter": { + "type": "boolean", + "description": "Indicates whether the new filter should be identity filter" + } + } } } }