1*c6d7a45dSGunnar Mills<?xml version="1.0" encoding="UTF-8"?> 2*c6d7a45dSGunnar Mills<!----> 3*c6d7a45dSGunnar Mills<!--################################################################################ --> 4*c6d7a45dSGunnar Mills<!--# Redfish Schema: JobDocument v1.0.0 --> 5*c6d7a45dSGunnar Mills<!--# --> 6*c6d7a45dSGunnar Mills<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, --> 7*c6d7a45dSGunnar Mills<!--# available at http://www.dmtf.org/standards/redfish --> 8*c6d7a45dSGunnar Mills<!--# Copyright 2014-2025 DMTF. --> 9*c6d7a45dSGunnar Mills<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright --> 10*c6d7a45dSGunnar Mills<!--################################################################################ --> 11*c6d7a45dSGunnar Mills<!----> 12*c6d7a45dSGunnar Mills<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0"> 13*c6d7a45dSGunnar Mills 14*c6d7a45dSGunnar Mills <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml"> 15*c6d7a45dSGunnar Mills <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/> 16*c6d7a45dSGunnar Mills </edmx:Reference> 17*c6d7a45dSGunnar Mills <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml"> 18*c6d7a45dSGunnar Mills <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/> 19*c6d7a45dSGunnar Mills </edmx:Reference> 20*c6d7a45dSGunnar Mills <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml"> 21*c6d7a45dSGunnar Mills <edmx:Include Namespace="Resource"/> 22*c6d7a45dSGunnar Mills <edmx:Include Namespace="Resource.v1_0_0"/> 23*c6d7a45dSGunnar Mills </edmx:Reference> 24*c6d7a45dSGunnar Mills <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> 25*c6d7a45dSGunnar Mills <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> 26*c6d7a45dSGunnar Mills <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/> 27*c6d7a45dSGunnar Mills </edmx:Reference> 28*c6d7a45dSGunnar Mills <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Job_v1.xml"> 29*c6d7a45dSGunnar Mills <edmx:Include Namespace="Job"/> 30*c6d7a45dSGunnar Mills </edmx:Reference> 31*c6d7a45dSGunnar Mills <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/JobExecutor_v1.xml"> 32*c6d7a45dSGunnar Mills <edmx:Include Namespace="JobExecutor"/> 33*c6d7a45dSGunnar Mills </edmx:Reference> 34*c6d7a45dSGunnar Mills 35*c6d7a45dSGunnar Mills <edmx:DataServices> 36*c6d7a45dSGunnar Mills 37*c6d7a45dSGunnar Mills <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobDocument"> 38*c6d7a45dSGunnar Mills <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 39*c6d7a45dSGunnar Mills <Annotation Term="Redfish.Language" String="en"/> 40*c6d7a45dSGunnar Mills 41*c6d7a45dSGunnar Mills <EntityType Name="JobDocument" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 42*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The `JobDocument` schema describes the template for a job with a set of parameters."/> 43*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This resource shall represent a job document for a Redfish implementation."/> 44*c6d7a45dSGunnar Mills <Annotation Term="Capabilities.InsertRestrictions"> 45*c6d7a45dSGunnar Mills <Record> 46*c6d7a45dSGunnar Mills <PropertyValue Property="Insertable" Bool="false"/> 47*c6d7a45dSGunnar Mills </Record> 48*c6d7a45dSGunnar Mills </Annotation> 49*c6d7a45dSGunnar Mills <Annotation Term="Capabilities.UpdateRestrictions"> 50*c6d7a45dSGunnar Mills <Record> 51*c6d7a45dSGunnar Mills <PropertyValue Property="Updatable" Bool="false"/> 52*c6d7a45dSGunnar Mills </Record> 53*c6d7a45dSGunnar Mills </Annotation> 54*c6d7a45dSGunnar Mills <Annotation Term="Capabilities.DeleteRestrictions"> 55*c6d7a45dSGunnar Mills <Record> 56*c6d7a45dSGunnar Mills <PropertyValue Property="Deletable" Bool="true"/> 57*c6d7a45dSGunnar Mills </Record> 58*c6d7a45dSGunnar Mills </Annotation> 59*c6d7a45dSGunnar Mills <Annotation Term="Redfish.Uris"> 60*c6d7a45dSGunnar Mills <Collection> 61*c6d7a45dSGunnar Mills <String>/redfish/v1/JobService/Documents/{JobDocumentId}</String> 62*c6d7a45dSGunnar Mills </Collection> 63*c6d7a45dSGunnar Mills </Annotation> 64*c6d7a45dSGunnar Mills </EntityType> 65*c6d7a45dSGunnar Mills 66*c6d7a45dSGunnar Mills <Action Name="SubmitJob" IsBound="true"> 67*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="Creates a new job based on the contents of this job document and additional parameters."/> 68*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This action shall create a new `Job` resource based on the contents of this job document and additional parameters."/> 69*c6d7a45dSGunnar Mills <Parameter Name="JobDocument" Type="JobDocument.v1_0_0.Actions"/> 70*c6d7a45dSGunnar Mills <Parameter Name="JobCreator" Type="Job.Job"> 71*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The link to the job that is submitting this job."/> 72*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This parameter shall contain a link to a resource of type `Job` that represents the job that is submitting this job."/> 73*c6d7a45dSGunnar Mills </Parameter> 74*c6d7a45dSGunnar Mills <Parameter Name="Parameters" Type="JobDocument.v1_0_0.Parameter" Nullable="false"> 75*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The list of parameters for the new job that are specific to this job document."/> 76*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This parameter shall contain the list of parameters for the new job that are specific to this job document. Services shall reject requests containing parameters that do not meet the requirements specified by the `ParameterMetadata` property."/> 77*c6d7a45dSGunnar Mills </Parameter> 78*c6d7a45dSGunnar Mills <Parameter Name="StartTime" Type="Edm.DateTimeOffset"> 79*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The date and time when the job is scheduled to start."/> 80*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This parameter shall contain the date and time when the job is scheduled to start."/> 81*c6d7a45dSGunnar Mills </Parameter> 82*c6d7a45dSGunnar Mills <Parameter Name="PreferredExecutors" Type="Collection(JobExecutor.JobExecutor)" Nullable="false"> 83*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="An array of links to the preferred executors to run this job."/> 84*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This parameter shall contain an array of links to resources of type `JobExecutor` that represent the preferred executors to run this job."/> 85*c6d7a45dSGunnar Mills </Parameter> 86*c6d7a45dSGunnar Mills <Parameter Name="HidePayload" Type="Edm.Boolean"> 87*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="An indication of whether the contents of the parameters should be hidden from view after the job has been created. If `true`, responses do not return the parameters. If `false`, responses return the parameters. If this parameter is not present when the job is created, the default is `false`."/> 88*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This parameter shall indicate whether the contents of the parameters should be hidden from view after the job has been created. If `true`, responses shall not return the `Parameters` property. If `false`, responses shall return the `Parameters` property. If this parameter is not present when the job is created, the default is `false`."/> 89*c6d7a45dSGunnar Mills </Parameter> 90*c6d7a45dSGunnar Mills </Action> 91*c6d7a45dSGunnar Mills </Schema> 92*c6d7a45dSGunnar Mills 93*c6d7a45dSGunnar Mills <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="JobDocument.v1_0_0"> 94*c6d7a45dSGunnar Mills <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 95*c6d7a45dSGunnar Mills <Annotation Term="Redfish.Release" String="2025.2"/> 96*c6d7a45dSGunnar Mills 97*c6d7a45dSGunnar Mills <EntityType Name="JobDocument" BaseType="JobDocument.JobDocument"> 98*c6d7a45dSGunnar Mills <Property Name="Status" Type="Resource.Status" Nullable="false"> 99*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/> 100*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/> 101*c6d7a45dSGunnar Mills </Property> 102*c6d7a45dSGunnar Mills <Property Name="Links" Type="JobDocument.v1_0_0.Links" Nullable="false"> 103*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 104*c6d7a45dSGunnar Mills <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."/> 105*c6d7a45dSGunnar Mills </Property> 106*c6d7a45dSGunnar Mills <Property Name="Actions" Type="JobDocument.v1_0_0.Actions" Nullable="false"> 107*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The available actions for this resource."/> 108*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> 109*c6d7a45dSGunnar Mills </Property> 110*c6d7a45dSGunnar Mills <Property Name="DocumentType" Type="Edm.String" Nullable="false"> 111*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 112*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The type of job document data associated with this job document."/> 113*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the type of job document data associated with this job document."/> 114*c6d7a45dSGunnar Mills </Property> 115*c6d7a45dSGunnar Mills <Property Name="Version" Type="Edm.String" Nullable="false"> 116*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 117*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The version of this job document."/> 118*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the version of this job document."/> 119*c6d7a45dSGunnar Mills </Property> 120*c6d7a45dSGunnar Mills <Property Name="CreationTime" Type="Edm.DateTimeOffset" Nullable="false"> 121*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 122*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The date and time when this job document resource was created."/> 123*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when this job document resource was created."/> 124*c6d7a45dSGunnar Mills </Property> 125*c6d7a45dSGunnar Mills <Property Name="DocumentData" Type="Edm.String" Nullable="false"> 126*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 127*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The job document data as a Base64-encoded string."/> 128*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain a Base64-encoded string of the job document data. This property shall not be present if `DocumentDataURI` is present."/> 129*c6d7a45dSGunnar Mills </Property> 130*c6d7a45dSGunnar Mills <Property Name="DocumentDataURI" Type="Edm.String" Nullable="false"> 131*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 132*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The URI at which to access the job document data."/> 133*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the URI at which to access the job document data. This property shall not be present if `DocumentData` is present."/> 134*c6d7a45dSGunnar Mills <Annotation Term="OData.IsURL"/> 135*c6d7a45dSGunnar Mills </Property> 136*c6d7a45dSGunnar Mills <Property Name="DocumentDataHash" Type="Edm.String" Nullable="false"> 137*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 138*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The hash of the job document data."/> 139*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the hash of the job document data as a hex-encoded string."/> 140*c6d7a45dSGunnar Mills <Annotation Term="Validation.Pattern" String="^[0-9a-fA-F]+$"/> 141*c6d7a45dSGunnar Mills </Property> 142*c6d7a45dSGunnar Mills <Property Name="ParameterMetadata" Type="Collection(JobDocument.v1_0_0.ParameterMetadata)" Nullable="false"> 143*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The metadata for each of the parameters supported by this job document for the `SubmitJob` action."/> 144*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the metadata for each of the parameters supported by this job document for the `SubmitJob` action."/> 145*c6d7a45dSGunnar Mills </Property> 146*c6d7a45dSGunnar Mills </EntityType> 147*c6d7a45dSGunnar Mills 148*c6d7a45dSGunnar Mills <EnumType Name="DataType"> 149*c6d7a45dSGunnar Mills <Member Name="Boolean"> 150*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="A boolean."/> 151*c6d7a45dSGunnar Mills </Member> 152*c6d7a45dSGunnar Mills <Member Name="Number"> 153*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="A number."/> 154*c6d7a45dSGunnar Mills </Member> 155*c6d7a45dSGunnar Mills <Member Name="String"> 156*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="A string."/> 157*c6d7a45dSGunnar Mills </Member> 158*c6d7a45dSGunnar Mills </EnumType> 159*c6d7a45dSGunnar Mills 160*c6d7a45dSGunnar Mills <ComplexType Name="ParameterMetadata"> 161*c6d7a45dSGunnar Mills <Annotation Term="OData.AdditionalProperties" Bool="false"/> 162*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The metadata for a parameter supported by a job document for the `SubmitJob` action."/> 163*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This type shall contain the metadata a parameter supported by a job document for the `SubmitJob` action."/> 164*c6d7a45dSGunnar Mills <Property Name="AllowableNumbers" Type="Collection(Edm.String)" Nullable="false"> 165*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 166*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The allowable numeric values or duration values, inclusive ranges of values, and incremental step values for this parameter."/> 167*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall indicate the allowable numeric values, inclusive ranges of values, and incremental step values for this parameter, as defined in the 'Allowable values for numbers and durations' clause of the Redfish Specification. This property shall only be present for numeric parameters or string parameters that specify a duration."/> 168*c6d7a45dSGunnar Mills </Property> 169*c6d7a45dSGunnar Mills <Property Name="AllowablePattern" Type="Edm.String" Nullable="false"> 170*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 171*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The allowable pattern for this parameter."/> 172*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain a regular expression that describes the allowable values for this parameter. This property shall only be present for string parameters."/> 173*c6d7a45dSGunnar Mills </Property> 174*c6d7a45dSGunnar Mills <Property Name="AllowableValueDescriptions" Type="Collection(Edm.String)" Nullable="false"> 175*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 176*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="Descriptions of allowable values for this parameter."/> 177*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the descriptions of allowable values for this parameter. The descriptions shall appear in the same array order as the `AllowableValues` property."/> 178*c6d7a45dSGunnar Mills </Property> 179*c6d7a45dSGunnar Mills <Property Name="AllowableValues" Type="Collection(Edm.String)" Nullable="false"> 180*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 181*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The allowable values for this parameter."/> 182*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall indicate the allowable values for this parameter."/> 183*c6d7a45dSGunnar Mills </Property> 184*c6d7a45dSGunnar Mills <Property Name="DataType" Type="JobDocument.v1_0_0.DataType" Nullable="false"> 185*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 186*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The JSON property type for this parameter."/> 187*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the JSON property type for this parameter."/> 188*c6d7a45dSGunnar Mills <Annotation Term="Redfish.Required"/> 189*c6d7a45dSGunnar Mills </Property> 190*c6d7a45dSGunnar Mills <Property Name="Description" Type="Resource.Description" Nullable="false"> 191*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 192*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="A description of the parameter."/> 193*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain a description of the parameter."/> 194*c6d7a45dSGunnar Mills </Property> 195*c6d7a45dSGunnar Mills <Property Name="MaximumValue" Type="Edm.Decimal" Nullable="false"> 196*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 197*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The maximum supported value for this parameter."/> 198*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This integer or number property shall contain the maximum value that this service supports. This property shall not be present for non-integer or number parameters."/> 199*c6d7a45dSGunnar Mills </Property> 200*c6d7a45dSGunnar Mills <Property Name="MinimumValue" Type="Edm.Decimal" Nullable="false"> 201*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 202*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The minimum supported value for this parameter."/> 203*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This integer or number property shall contain the minimum value that this service supports. This property shall not be present for non-integer or number parameters."/> 204*c6d7a45dSGunnar Mills </Property> 205*c6d7a45dSGunnar Mills <Property Name="Required" Type="Edm.Boolean" Nullable="false"> 206*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 207*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="An indication of whether the parameter is required."/> 208*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall indicate whether the parameter is required."/> 209*c6d7a45dSGunnar Mills </Property> 210*c6d7a45dSGunnar Mills <Property Name="Name" Type="Edm.String" Nullable="false"> 211*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 212*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The name of the parameter."/> 213*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the name of the parameter."/> 214*c6d7a45dSGunnar Mills <Annotation Term="Redfish.Required"/> 215*c6d7a45dSGunnar Mills </Property> 216*c6d7a45dSGunnar Mills <Property Name="ValueHint" Type="Edm.String" Nullable="false"> 217*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 218*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="A hint value for the parameter."/> 219*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain a hint value for the parameter."/> 220*c6d7a45dSGunnar Mills </Property> 221*c6d7a45dSGunnar Mills </ComplexType> 222*c6d7a45dSGunnar Mills 223*c6d7a45dSGunnar Mills <ComplexType Name="Parameter"> 224*c6d7a45dSGunnar Mills <Annotation Term="OData.AdditionalProperties" Bool="false"/> 225*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="An object containing a set of parameters for submitting a new job based on a job document."/> 226*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This type shall contain a set of parameters for submitting a new job based on a job document."/> 227*c6d7a45dSGunnar Mills <Annotation Term="Redfish.DynamicPropertyPatterns"> 228*c6d7a45dSGunnar Mills <Collection> 229*c6d7a45dSGunnar Mills <Record> 230*c6d7a45dSGunnar Mills <PropertyValue Property="Pattern" String="^[A-Za-z][A-Za-z0-9_]+$"/> 231*c6d7a45dSGunnar Mills <PropertyValue Property="Type" String="Edm.PrimitiveType"/> 232*c6d7a45dSGunnar Mills </Record> 233*c6d7a45dSGunnar Mills </Collection> 234*c6d7a45dSGunnar Mills </Annotation> 235*c6d7a45dSGunnar Mills </ComplexType> 236*c6d7a45dSGunnar Mills 237*c6d7a45dSGunnar Mills <ComplexType Name="Links"> 238*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 239*c6d7a45dSGunnar Mills <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."/> 240*c6d7a45dSGunnar Mills <Annotation Term="OData.AdditionalProperties" Bool="false"/> 241*c6d7a45dSGunnar Mills <NavigationProperty Name="SupportedExecutors" Type="Collection(JobExecutor.JobExecutor)"> 242*c6d7a45dSGunnar Mills <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 243*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="An array of links to the executors that are capable of running jobs instantiated from this job document."/> 244*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type `JobExecutor` that represent the executors that are capable of running jobs instantiated from this job document."/> 245*c6d7a45dSGunnar Mills <Annotation Term="OData.AutoExpandReferences"/> 246*c6d7a45dSGunnar Mills </NavigationProperty> 247*c6d7a45dSGunnar Mills </ComplexType> 248*c6d7a45dSGunnar Mills 249*c6d7a45dSGunnar Mills <ComplexType Name="Actions"> 250*c6d7a45dSGunnar Mills <Annotation Term="OData.AdditionalProperties" Bool="false"/> 251*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The available actions for this resource."/> 252*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> 253*c6d7a45dSGunnar Mills <Property Name="Oem" Type="JobDocument.v1_0_0.OemActions" Nullable="false"> 254*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 255*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> 256*c6d7a45dSGunnar Mills </Property> 257*c6d7a45dSGunnar Mills </ComplexType> 258*c6d7a45dSGunnar Mills 259*c6d7a45dSGunnar Mills <ComplexType Name="OemActions"> 260*c6d7a45dSGunnar Mills <Annotation Term="OData.AdditionalProperties" Bool="true"/> 261*c6d7a45dSGunnar Mills <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 262*c6d7a45dSGunnar Mills <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> 263*c6d7a45dSGunnar Mills </ComplexType> 264*c6d7a45dSGunnar Mills </Schema> 265*c6d7a45dSGunnar Mills 266*c6d7a45dSGunnar Mills </edmx:DataServices> 267*c6d7a45dSGunnar Mills</edmx:Edmx> 268