blob: 1378602801e5666203d8bd608e2d4bb275b954ca [file] [log] [blame]
Ed Tanouscb103132019-10-08 11:34:22 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
4<!--# Redfish Schema: Fabric v1.0.6 -->
5<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
8<!--# Copyright 2014-2019 DMTF. -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################ -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16 </edmx:Reference>
17 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19 </edmx:Reference>
20 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21 <edmx:Include Namespace="Resource"/>
22 <edmx:Include Namespace="Resource.v1_0_0"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/ZoneCollection_v1.xml">
28 <edmx:Include Namespace="ZoneCollection"/>
29 </edmx:Reference>
30 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/EndpointCollection_v1.xml">
31 <edmx:Include Namespace="EndpointCollection"/>
32 </edmx:Reference>
33 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/SwitchCollection_v1.xml">
34 <edmx:Include Namespace="SwitchCollection"/>
35 </edmx:Reference>
36 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Protocol_v1.xml">
37 <edmx:Include Namespace="Protocol"/>
38 </edmx:Reference>
39
40 <edmx:DataServices>
41
42 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric">
43 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
44
45 <EntityType Name="Fabric" BaseType="Resource.v1_0_0.Resource" Abstract="true">
46 <Annotation Term="OData.Description" String="The Fabric schema represents a simple fabric consisting of one or more switches, zero or more endpoints, and zero or more zones."/>
47 <Annotation Term="OData.LongDescription" String="This Resource shall represent a simple switchable fabric for a Redfish implementation."/>
48 <Annotation Term="Capabilities.InsertRestrictions">
49 <Record>
50 <PropertyValue Property="Insertable" Bool="false"/>
51 </Record>
52 </Annotation>
53 <Annotation Term="Capabilities.UpdateRestrictions">
54 <Record>
55 <PropertyValue Property="Updatable" Bool="false"/>
56 </Record>
57 </Annotation>
58 <Annotation Term="Capabilities.DeleteRestrictions">
59 <Record>
60 <PropertyValue Property="Deletable" Bool="false"/>
61 </Record>
62 </Annotation>
63 <Annotation Term="Redfish.Uris">
64 <Collection>
65 <String>/redfish/v1/Fabrics/{FabricId}</String>
66 </Collection>
67 </Annotation>
68 </EntityType>
69 </Schema>
70
71 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric.v1_0_0">
72 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
73 <Annotation Term="Redfish.Release" String="2016.2"/>
74
75 <EntityType Name="Fabric" BaseType="Fabric.Fabric">
76 <Property Name="FabricType" Type="Protocol.Protocol">
77 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
78 <Annotation Term="OData.Description" String="The protocol being sent over this fabric."/>
79 <Annotation Term="OData.LongDescription" String="This property shall contain the type of fabric being represented by this simple fabric."/>
80 </Property>
81 <Property Name="Status" Type="Resource.Status" Nullable="false">
82 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
83 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
84 </Property>
85 <Property Name="MaxZones" Type="Edm.Int64">
86 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
87 <Annotation Term="OData.Description" String="The maximum number of zones the switch can currently configure."/>
88 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of zones the switch can currently configure. This value may change based on changes in the logical or physical configuration of the system."/>
89 </Property>
90 <NavigationProperty Name="Zones" Type="ZoneCollection.ZoneCollection" ContainsTarget="true" Nullable="false">
91 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
92 <Annotation Term="OData.Description" String="The collection of links to the zones that this fabric contains."/>
93 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the Resources of the Zone type that this fabric uses."/>
94 <Annotation Term="OData.AutoExpandReferences"/>
95 </NavigationProperty>
96 <NavigationProperty Name="Endpoints" Type="EndpointCollection.EndpointCollection" ContainsTarget="true" Nullable="false">
97 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
98 <Annotation Term="OData.Description" String="The collection of links to the endpoints that this fabric contains."/>
99 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the Resources of the Endpoint type that this fabric uses."/>
100 <Annotation Term="OData.AutoExpandReferences"/>
101 </NavigationProperty>
102 <NavigationProperty Name="Switches" Type="SwitchCollection.SwitchCollection" ContainsTarget="true" Nullable="false">
103 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
104 <Annotation Term="OData.Description" String="The collection of links to the switches that this fabric contains."/>
105 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the Resources of the Switch type that this fabric uses."/>
106 <Annotation Term="OData.AutoExpandReferences"/>
107 </NavigationProperty>
108 <Property Name="Links" Type="Fabric.v1_0_0.Links" Nullable="false">
109 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
110 <Annotation Term="OData.LongDescription" String="This property shall contain links to Resources that are related to but are not contained by or subordinate to this Resource."/>
111 </Property>
112 <Property Name="Actions" Type="Fabric.v1_0_0.Actions" Nullable="false">
113 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
114 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
115 </Property>
116 </EntityType>
117
118 <ComplexType Name="Links" BaseType="Resource.Links">
119 <Annotation Term="OData.Description" String="The links to other Resources that are related to this Resource."/>
120 <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to Resources that are related to but are not contained by or subordinate to this Resource."/>
121 </ComplexType>
122
123 <ComplexType Name="Actions">
124 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
125 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
126 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
127 <Property Name="Oem" Type="Fabric.v1_0_0.OemActions" Nullable="false">
128 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
129 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
130 </Property>
131 </ComplexType>
132
133 <ComplexType Name="OemActions">
134 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
135 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
136 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
137 </ComplexType>
138 </Schema>
139
140 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric.v1_0_1">
141 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
142 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
143 <EntityType Name="Fabric" BaseType="Fabric.v1_0_0.Fabric"/>
144 </Schema>
145
146 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric.v1_0_2">
147 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
148 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
149 <EntityType Name="Fabric" BaseType="Fabric.v1_0_1.Fabric"/>
150 </Schema>
151
152 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric.v1_0_3">
153 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
154 <Annotation Term="OData.Description" String="This version was created to change FabricType to use the unversioned definition. It was also created to update the descriptions that this schema defines."/>
155 <EntityType Name="Fabric" BaseType="Fabric.v1_0_2.Fabric"/>
156 </Schema>
157
158 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric.v1_0_4">
159 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
160 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
161 <EntityType Name="Fabric" BaseType="Fabric.v1_0_3.Fabric"/>
162 </Schema>
163
164 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric.v1_0_5">
165 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
166 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
167 <EntityType Name="Fabric" BaseType="Fabric.v1_0_4.Fabric"/>
168 </Schema>
169
170 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Fabric.v1_0_6">
171 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
172 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
173 <EntityType Name="Fabric" BaseType="Fabric.v1_0_5.Fabric"/>
174 </Schema>
175
176 </edmx:DataServices>
177</edmx:Edmx>