forked from SAP/odata-vocabularies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Graph.xml
71 lines (66 loc) · 3.61 KB
/
Graph.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
<edmx:Include Alias="Core" Namespace="Org.OData.Core.V1" />
</edmx:Reference>
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.JSON.V1.xml">
<edmx:Include Alias="JSON" Namespace="Org.OData.JSON.V1" />
</edmx:Reference>
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
<edmx:Include Namespace="com.sap.vocabularies.Common.v1" Alias="Common" />
</edmx:Reference>
<edmx:DataServices>
<Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="com.sap.vocabularies.Graph.v1" Alias="Graph">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description">
<String>Terms for SAP Graph</String>
</Annotation>
<Annotation Term="Core.Description" Qualifier="Published">
<String>2020-03-11 © Copyright 2020 SAP SE. All rights reserved</String>
</Annotation>
<Annotation Term="Core.Links">
<Collection>
<Record>
<PropertyValue Property="rel" String="latest-version" />
<PropertyValue Property="href" String="https://sap.github.io/odata-vocabularies/vocabularies/Graph.xml" />
</Record>
<Record>
<PropertyValue Property="rel" String="alternate" />
<PropertyValue Property="href" String="https://sap.github.io/odata-vocabularies/vocabularies/Graph.json" />
</Record>
<Record>
<PropertyValue Property="rel" String="describedby" />
<PropertyValue Property="href" String="https://github.com/sap/odata-vocabularies/blob/main/vocabularies/Graph.md" />
</Record>
</Collection>
</Annotation>
<Term Name="traceId" Type="Edm.String" Nullable="false">
<Annotation Term="Common.Experimental" />
<Annotation Term="Common.IsInstanceAnnotation" />
<Annotation Term="Core.Description" String="The traceId contains a unique string that is preserved across multiple requests and log files. It is used in error responses to help diagnose problems by correlating log entries." />
</Term>
<Term Name="Details" Type="Graph.DetailsType" Nullable="false">
<Annotation Term="Common.Experimental" />
<Annotation Term="Common.IsInstanceAnnotation" />
<Annotation Term="Core.Description" String="Graph-specific details for error responses" />
</Term>
<ComplexType Name="DetailsType">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Graph-specific details for error responses" />
<Property Name="url" Type="Edm.String">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.IsURL" />
<Annotation Term="Core.Description" String="URL sent to the business system tenant" />
</Property>
<Property Name="body" Type="JSON.JSON">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Request body sent to the business system tenant" />
</Property>
</ComplexType>
<Term Name="CompositionRoot" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityType">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="The annotated entity type is the root type of a composition tree." />
</Term>
</Schema>
</edmx:DataServices>
</edmx:Edmx>