Skip to content

Commit

Permalink
Merge pull request #3 from microsoft/master
Browse files Browse the repository at this point in the history
Sync with source
  • Loading branch information
AzureMentor authored Nov 27, 2021
2 parents 6b32469 + d61d725 commit 84d3928
Show file tree
Hide file tree
Showing 20,326 changed files with 2,526,858 additions and 2,046,206 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
16 changes: 6 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,27 @@
# We welcome your feedback

Do you use the Common Data Model SDK? If you do, please can you tell us which version(s) you use (C#/.NET, Java, Python, or TypeScript) by taking this [**short survey**](https://forms.office.com/r/hainr3a7rR).

# Common Data Model (CDM) Schema

The Common Data Model is a declarative specification, and definition of standard entities that represent commonly used concepts and activities across business and productivity applications, and is being extended to observational and analytical data as well. CDM provides well-defined, modular, and extensible business entities such as Account, Business Unit, Case, Contact, Lead, Opportunity, and Product, as well as interactions with vendors, workers, and customers, such as activities and service level agreements. Anyone can build on and extend CDM definitions to capture additional business-specific ideas.

<pre>
<img src="docs/blank.png"/> <a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/dynamicsCRM.manifest.cdm.json&simpleChrome=true"> <img src="docs/dyn-static.PNG"/> </a>
<a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=standards.manifest.cdm.json&simpleChrome=true"> <img src="docs/all-entities-small.PNG"/></a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/insightsApplications.manifest.cdm.json&simpleChrome=true"> <img src="docs/insights-static.PNG"/></a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/financeAndOperations.manifest.cdm.json&simpleChrome=true"> <img src="docs/f-and-o-static.PNG"/> </a>
<a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=standards.manifest.cdm.json&simpleChrome=true"> <img src="docs/all-entities-small.PNG"/></a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/insightsApplications.manifest.cdm.json&simpleChrome=true"> <img src="docs/insights-static.PNG"/> </a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/financeAndOperations.manifest.cdm.json&simpleChrome=true"> <img src="docs/f-and-o-static.PNG"/> </a>
<a href="https://microsoft.github.io/CDM/SchemaViz.html?"> <img src="docs/advanced-small.PNG"/> </a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/automotiveAccelerator.manifest.cdm.json&simpleChrome=true"> <img src="docs/auto-accel-static.png"/> </a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/bankingAccelerator.manifest.cdm.json&simpleChrome=true"> <img src="docs/banking-accel-static.png"/> </a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/electronicMedicalRecordsAccelerator.manifest.cdm.json&simpleChrome=true"> <img src="docs/medical-accel-static.png"/> </a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/higherEducationAccelerator.manifest.cdm.json&simpleChrome=true"> <img src="docs/higher-ed-accel-static.png"/> </a><a href="https://microsoft.github.io/CDM/SchemaViz.html?initialManifest=manifests/nonProfitAccelerator.manifest.cdm.json&simpleChrome=true"> <img src="docs/non-prof-accel-static.png"/> </a>
</pre>

# Introduction

The Common Data Model standard defines a common language for business entities covering, over time, the full range of business processes across sales, services, marketing, operations, finance, talent, and commerce and for the Customer, People, and Product entities at the core of a company's business processes. The goal of CDM is to enable data and application interoperability spanning multiple channels, service implementations, and vendors. CDM provides self-describing data (structurally and semantically), enabling applications to easily read and understand the data.

The CDM is undergoing a specification effort driven by Microsoft. The documents published are a preview, and will be iterated on.
The CDM is undergoing a specification effort driven by Microsoft and the documents published are continuously being iterated upon.

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.

### Open Data Initiative

As announced at Microsoft Ignite, the Common Data Model is evolving as part of the [Open Data Initiative](https://www.microsoft.com/en-us/open-data-initiative), a jointly-developed vision by Microsoft, Adobe, and SAP.

CDM is already supported in the Common Data Service, Dynamics 365, PowerApps, Power BI, and upcoming Azure data services, directly accruing value towards the Open Data Initiative.

[Get the latest updates about the Open Data Initiative](https://info.microsoft.com/Open-Data-Initiative.html)

# Repository Layout

There are two ways to consume the information in this repository:
Expand Down
6,907 changes: 2 additions & 6,905 deletions docs/bundle.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.

using Microsoft.Identity.Client;
using System;

namespace Microsoft.CommonDataModel.ObjectModel.Enums
{
/// <summary>
/// AzureCloudEndpoint is an utility enum containing URLs for each of the national clouds endpoints, as well as the public cloud endpoint
/// </summary>
public enum AzureCloudEndpoint
{
/// <summary>
/// Microsoft Azure public cloud. Maps to https://login.microsoftonline.com
/// </summary>
AzurePublic,

/// <summary>
/// Microsoft Chinese national cloud. Maps to https://login.chinacloudapi.cn
/// </summary>
AzureChina,

/// <summary>
/// Microsoft German national cloud ("Black Forest"). Maps to https://login.microsoftonline.de
/// </summary>
AzureGermany,

/// <summary>
/// US Government cloud. Maps to https://login.microsoftonline.us
/// </summary>
AzureUsGovernment,
};

internal class AzureCloudEndpointConvertor
{
internal static AzureCloudInstance AzureCloudEndpointToInstance(AzureCloudEndpoint endpointType)
{
switch (endpointType)
{
case AzureCloudEndpoint.AzurePublic:
return AzureCloudInstance.AzurePublic;
case AzureCloudEndpoint.AzureChina:
return AzureCloudInstance.AzureChina;
case AzureCloudEndpoint.AzureGermany:
return AzureCloudInstance.AzureGermany;
case AzureCloudEndpoint.AzureUsGovernment:
return AzureCloudInstance.AzureUsGovernment;
default:
throw new InvalidOperationException();
}
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<metadata>

<id>Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.All</id>
<version>1.1.0</version>
<version>1.4.1</version>
<description>The ADLS adapter implementation for the Microsoft Common Data Model Object Model.</description>

<authors>Microsoft</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MS-PL AND MS-RL AND Apache-2.0</license>
<license type="expression">MIT</license>
<projectUrl>https://commondatamodel.visualstudio.com/CDM</projectUrl>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<repository url="https://commondatamodel.visualstudio.com/CDM/_git/CDM.ObjectModel" />
Expand All @@ -30,15 +30,11 @@

<files>
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net45\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" target="lib\net45\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" target="lib\net45\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net45\Microsoft.Identity.Client.dll" target="lib\net45\Microsoft.Identity.Client.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net45\Newtonsoft.Json.dll" target="lib\net45\Newtonsoft.Json.dll" />

<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" target="lib\net462\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" target="lib\net462\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.Algorithms.dll" target="lib\net462\System.Security.Cryptography.Algorithms.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.Encoding.dll" target="lib\net462\System.Security.Cryptography.Encoding.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.Primitives.dll" target="lib\net462\System.Security.Cryptography.Primitives.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.X509Certificates.dll" target="lib\net462\System.Security.Cryptography.X509Certificates.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\Microsoft.Identity.Client.dll" target="lib\net462\Microsoft.Identity.Client.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\Newtonsoft.Json.dll" target="lib\net462\Newtonsoft.Json.dll" />
</files>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net462</TargetFrameworks>
<version>1.1.0</version>
<version>1.4.1</version>
<Description>The ADLS adapter implementation for the Microsoft Common Data Model Object Model.</Description>

<Authors>Microsoft</Authors>
Expand All @@ -15,7 +15,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="5.2.4" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.36.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<metadata>

<id>Microsoft.CommonDataModel.ObjectModel.Adapter.Adls</id>
<version>1.1.0</version>
<version>1.4.1</version>
<description>The ADLS adapter implementation for the Microsoft Common Data Model Object Model.</description>

<authors>Microsoft</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MS-PL AND MS-RL AND Apache-2.0</license>
<license type="expression">MIT</license>
<projectUrl>https://commondatamodel.visualstudio.com/CDM</projectUrl>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
<repository url="https://commondatamodel.visualstudio.com/CDM/_git/CDM.ObjectModel" />
Expand All @@ -20,17 +20,17 @@
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="Microsoft.CSharp" version="4.5.0" />
<dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="5.2.4" />
<dependency id="Microsoft.Identity.Client" version="4.36.1" />
<dependency id="Newtonsoft.Json" version="12.0.2" />
</group>
<group targetFramework=".NETFramework4.6.2">
<dependency id="Microsoft.CSharp" version="4.5.0" />
<dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="5.2.4" />
<dependency id="Microsoft.Identity.Client" version="4.36.1" />
<dependency id="Newtonsoft.Json" version="12.0.2" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Microsoft.CSharp" version="4.5.0" />
<dependency id="Microsoft.IdentityModel.Clients.ActiveDirectory" version="5.2.4" />
<dependency id="Microsoft.Identity.Client" version="4.36.1" />
<dependency id="Newtonsoft.Json" version="12.0.2" />
</group>
</dependencies>
Expand All @@ -41,10 +41,6 @@
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net45\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" target="lib\net45\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" />

<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" target="lib\net462\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.Algorithms.dll" target="lib\net462\System.Security.Cryptography.Algorithms.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.Encoding.dll" target="lib\net462\System.Security.Cryptography.Encoding.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.Primitives.dll" target="lib\net462\System.Security.Cryptography.Primitives.dll" />
<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\net462\System.Security.Cryptography.X509Certificates.dll" target="lib\net462\System.Security.Cryptography.X509Certificates.dll" />

<file src="..\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls\bin\Release\netstandard2.0\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" target="lib\netstandard2.0\Microsoft.CommonDataModel.ObjectModel.Adapter.Adls.dll" />
</files>
Expand Down
Loading

0 comments on commit 84d3928

Please sign in to comment.