-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update schema of DataSource in v3 YAML (#715)
- Loading branch information
1 parent
d59bb6c
commit 5789860
Showing
2 changed files
with
14 additions
and
11 deletions.
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
15 changes: 9 additions & 6 deletions
15
src/schemas-tests/pa-yaml/v3.0/Examples/Src/DataSources/DataSources1.pa.yaml
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 |
---|---|---|
@@ -1,10 +1,13 @@ | ||
DataSources: | ||
Accounts: | ||
Type: DataverseTable | ||
TableLogicalName: account | ||
Type: Table | ||
Parameters: | ||
TableLogicalName: account | ||
Contacts: | ||
Type: DataverseTable | ||
TableLogicalName: contact | ||
Type: Table | ||
Parameters: | ||
TableLogicalName: contact | ||
Users: | ||
Type: DataverseTable | ||
TableLogicalName: systemuser | ||
Type: Table | ||
Parameters: | ||
TableLogicalName: systemuser |