1*2bde4061SEd Tanous<?xml version="1.0" encoding="UTF-8"?>
2*2bde4061SEd Tanous<!---->
3*2bde4061SEd Tanous<!--################################################################################       -->
4*2bde4061SEd Tanous<!--# Redfish Schema:  JobService v1.0.5                                                   -->
5*2bde4061SEd Tanous<!--#                                                                                      -->
6*2bde4061SEd Tanous<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7*2bde4061SEd Tanous<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8*2bde4061SEd Tanous<!--# Copyright 2014-2023 DMTF.                                                            -->
9*2bde4061SEd Tanous<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10*2bde4061SEd Tanous<!--################################################################################       -->
11*2bde4061SEd Tanous<!---->
12*2bde4061SEd Tanous<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13*2bde4061SEd Tanous
14*2bde4061SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15*2bde4061SEd Tanous    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16*2bde4061SEd Tanous  </edmx:Reference>
17*2bde4061SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18*2bde4061SEd Tanous    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19*2bde4061SEd Tanous  </edmx:Reference>
20*2bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21*2bde4061SEd Tanous    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22*2bde4061SEd Tanous  </edmx:Reference>
23*2bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24*2bde4061SEd Tanous    <edmx:Include Namespace="Resource"/>
25*2bde4061SEd Tanous    <edmx:Include Namespace="Resource.v1_0_0"/>
26*2bde4061SEd Tanous  </edmx:Reference>
27*2bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/JobCollection_v1.xml">
28*2bde4061SEd Tanous    <edmx:Include Namespace="JobCollection"/>
29*2bde4061SEd Tanous  </edmx:Reference>
30*2bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/LogService_v1.xml">
31*2bde4061SEd Tanous    <edmx:Include Namespace="LogService"/>
32*2bde4061SEd Tanous  </edmx:Reference>
33*2bde4061SEd Tanous
34*2bde4061SEd Tanous  <edmx:DataServices>
35*2bde4061SEd Tanous
36*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobService">
37*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
38*2bde4061SEd Tanous
39*2bde4061SEd Tanous      <EntityType Name="JobService" BaseType="Resource.v1_0_0.Resource" Abstract="true">
40*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The JobService schema contains properties for scheduling and execution of operations, represents the properties for the job service itself, and has links to jobs managed by the job service."/>
41*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This resource shall represent a job service for a Redfish implementation."/>
42*2bde4061SEd Tanous        <Annotation Term="Capabilities.InsertRestrictions">
43*2bde4061SEd Tanous          <Record>
44*2bde4061SEd Tanous            <PropertyValue Property="Insertable" Bool="false"/>
45*2bde4061SEd Tanous          </Record>
46*2bde4061SEd Tanous        </Annotation>
47*2bde4061SEd Tanous        <Annotation Term="Capabilities.UpdateRestrictions">
48*2bde4061SEd Tanous          <Record>
49*2bde4061SEd Tanous            <PropertyValue Property="Updatable" Bool="true"/>
50*2bde4061SEd Tanous            <Annotation Term="OData.Description" String="The job service can be updated to enable or disable the service, though some implementations might fail the update operation."/>
51*2bde4061SEd Tanous          </Record>
52*2bde4061SEd Tanous        </Annotation>
53*2bde4061SEd Tanous        <Annotation Term="Capabilities.DeleteRestrictions">
54*2bde4061SEd Tanous          <Record>
55*2bde4061SEd Tanous            <PropertyValue Property="Deletable" Bool="false"/>
56*2bde4061SEd Tanous          </Record>
57*2bde4061SEd Tanous        </Annotation>
58*2bde4061SEd Tanous        <Annotation Term="Redfish.Uris">
59*2bde4061SEd Tanous          <Collection>
60*2bde4061SEd Tanous            <String>/redfish/v1/JobService</String>
61*2bde4061SEd Tanous          </Collection>
62*2bde4061SEd Tanous        </Annotation>
63*2bde4061SEd Tanous      </EntityType>
64*2bde4061SEd Tanous    </Schema>
65*2bde4061SEd Tanous
66*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobService.v1_0_0">
67*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
68*2bde4061SEd Tanous      <Annotation Term="Redfish.Release" String="2018.2"/>
69*2bde4061SEd Tanous
70*2bde4061SEd Tanous      <EntityType Name="JobService" BaseType="JobService.JobService">
71*2bde4061SEd Tanous        <Property Name="DateTime" Type="Edm.DateTimeOffset">
72*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
73*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The current date and time setting for the job service."/>
74*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the current date and time setting for the job service."/>
75*2bde4061SEd Tanous        </Property>
76*2bde4061SEd Tanous        <Property Name="ServiceEnabled" Type="Edm.Boolean">
77*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
78*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="An indication of whether this service is enabled."/>
79*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service is enabled."/>
80*2bde4061SEd Tanous        </Property>
81*2bde4061SEd Tanous        <Property Name="ServiceCapabilities" Type="JobService.v1_0_0.JobServiceCapabilities" Nullable="false">
82*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The supported capabilities of this job service implementation."/>
83*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the capabilities or supported features of this implementation of a job service."/>
84*2bde4061SEd Tanous        </Property>
85*2bde4061SEd Tanous        <Property Name="Status" Type="Resource.Status" Nullable="false">
86*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
87*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
88*2bde4061SEd Tanous        </Property>
89*2bde4061SEd Tanous        <NavigationProperty Name="Log" Type="LogService.LogService" Nullable="false">
90*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
91*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The link to a log service that the job service uses.  This service can be a dedicated log service or a pointer to a log service under another resource, such as a manager."/>
92*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type LogService that this job service uses."/>
93*2bde4061SEd Tanous          <Annotation Term="OData.AutoExpandReferences"/>
94*2bde4061SEd Tanous        </NavigationProperty>
95*2bde4061SEd Tanous        <NavigationProperty Name="Jobs" Type="JobCollection.JobCollection" ContainsTarget="true" Nullable="false">
96*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
97*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The links to the jobs collection."/>
98*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type JobCollection."/>
99*2bde4061SEd Tanous          <Annotation Term="OData.AutoExpandReferences"/>
100*2bde4061SEd Tanous        </NavigationProperty>
101*2bde4061SEd Tanous        <Property Name="Actions" Type="JobService.v1_0_0.Actions" Nullable="false">
102*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The available actions for this resource."/>
103*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
104*2bde4061SEd Tanous        </Property>
105*2bde4061SEd Tanous      </EntityType>
106*2bde4061SEd Tanous
107*2bde4061SEd Tanous      <ComplexType Name="JobServiceCapabilities">
108*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The supported capabilities of this job service implementation."/>
109*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the capabilities or supported features of this implementation of a job service."/>
110*2bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
111*2bde4061SEd Tanous        <Property Name="MaxJobs" Type="Edm.Int64">
112*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
113*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The maximum number of jobs supported."/>
114*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of jobs supported by the implementation."/>
115*2bde4061SEd Tanous        </Property>
116*2bde4061SEd Tanous        <Property Name="MaxSteps" Type="Edm.Int64">
117*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
118*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The maximum number of job steps supported."/>
119*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of steps supported by a single job instance."/>
120*2bde4061SEd Tanous        </Property>
121*2bde4061SEd Tanous        <Property Name="Scheduling" Type="Edm.Boolean">
122*2bde4061SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
123*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="An indication of whether scheduling of jobs is supported."/>
124*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the Schedule property within the job supports scheduling of jobs."/>
125*2bde4061SEd Tanous        </Property>
126*2bde4061SEd Tanous      </ComplexType>
127*2bde4061SEd Tanous
128*2bde4061SEd Tanous      <ComplexType Name="Actions">
129*2bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
130*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The available actions for this resource."/>
131*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
132*2bde4061SEd Tanous        <Property Name="Oem" Type="JobService.v1_0_0.OemActions" Nullable="false">
133*2bde4061SEd Tanous          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
134*2bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
135*2bde4061SEd Tanous        </Property>
136*2bde4061SEd Tanous      </ComplexType>
137*2bde4061SEd Tanous
138*2bde4061SEd Tanous      <ComplexType Name="OemActions">
139*2bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
140*2bde4061SEd Tanous        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
141*2bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
142*2bde4061SEd Tanous      </ComplexType>
143*2bde4061SEd Tanous    </Schema>
144*2bde4061SEd Tanous
145*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobService.v1_0_1">
146*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
147*2bde4061SEd Tanous      <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.  It was also created to correct the resource description."/>
148*2bde4061SEd Tanous      <EntityType Name="JobService" BaseType="JobService.v1_0_0.JobService"/>
149*2bde4061SEd Tanous    </Schema>
150*2bde4061SEd Tanous
151*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobService.v1_0_2">
152*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
153*2bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to update the description of the Log property.  It was also created to update descriptions that this schema defines."/>
154*2bde4061SEd Tanous      <EntityType Name="JobService" BaseType="JobService.v1_0_1.JobService"/>
155*2bde4061SEd Tanous    </Schema>
156*2bde4061SEd Tanous
157*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobService.v1_0_3">
158*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
159*2bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
160*2bde4061SEd Tanous      <EntityType Name="JobService" BaseType="JobService.v1_0_2.JobService"/>
161*2bde4061SEd Tanous    </Schema>
162*2bde4061SEd Tanous
163*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobService.v1_0_4">
164*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
165*2bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
166*2bde4061SEd Tanous      <EntityType Name="JobService" BaseType="JobService.v1_0_3.JobService"/>
167*2bde4061SEd Tanous    </Schema>
168*2bde4061SEd Tanous
169*2bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobService.v1_0_5">
170*2bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
171*2bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
172*2bde4061SEd Tanous      <EntityType Name="JobService" BaseType="JobService.v1_0_4.JobService"/>
173*2bde4061SEd Tanous    </Schema>
174*2bde4061SEd Tanous
175*2bde4061SEd Tanous  </edmx:DataServices>
176*2bde4061SEd Tanous</edmx:Edmx>
177