-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MODFQMMGR-378 Add ECS entity type config property
- Loading branch information
1 parent
a313abb
commit adaa524
Showing
3 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/main/resources/swagger.api/schemas/entityTypeCrossTenantQueryConfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"title": "Entity Data Cross-Tenant Query Configuration", | ||
"description": "Configuration for cross-tenant entity data queries", | ||
"properties": { | ||
"tenantIdColumn": { | ||
"description": "The name of the column containing the tenant ID.", | ||
"type": "string" | ||
}, | ||
"sourceTenantIdColumn": { | ||
"description": "The name of the source tenant ID of the entity.", | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"tenantIdColumn", | ||
"sourceTenantIdColumn" | ||
] | ||
} |