GET - Job management properties
Use the GET method to retrieve properties in JobService resource for Redfish service
Request URL
GET https://<BMC_IPADDR>/redfish/v1/JobService
Request body
None
Response body
Field  | Type  | Description  | |
|---|---|---|---|
Description  | String  | The resource is used to represent the Job Service that allows scheduling of operations.  | |
DateTime  | String  | The current DateTime setting of the Service with offset from UTC. Format: YYYY-MM-DDThh:mm:ss[+-]HH:MM  | |
Id  | String  | Fixed string “JobService”  | |
Jobs  | Link  | References to the Job collection.  | |
Name  | String  | Fixed string “Job Service”  | |
ServiceCapabilities  | Object  | This type shall contain properties which describe the capabilities or supported features of this implementation of JobService.  | |
MaxJobs  | Integer  | Maximum number of Jobs supported. Value is 50.  | |
MaxSteps  | Integer Null  | Maximum number of Job Steps supported. Value is 50.  | |
Scheduling  | Boolean  | The value of this property shall indicate the support of scheduling of Jobs using the Schedule object within the Job resource.  | |
ServiceEnabled  | Boolean  | The value of this property shall be a boolean indicating whether this service is enabled.  | |
Status  | Object  | This property shall specify a valid odata or Redfish property.  | |
Health  | String  | This represents the health state of this resource in the absence of its dependent resources.  | |
HealthRollup  | String  | This represents the overall health state from the view of this resource.  | |
State  | String  | This indicates the known state of the resource, such as if it is enabled.  | |
Status code
| HTTP Status Code | Error Message ID | 
|---|---|
| 500 | InternalError | 
Example
The following example JSON response is returned:
{
    "@odata.context": "/redfish/v1/$metadata#JobService.JobService",
    "@odata.etag": "\"535A8108\"",
    "@odata.id": "/redfish/v1/JobService",
    "@odata.type": "#JobService.v1_0_4.JobService",
    "DateTime": "2024-12-04T05:25:52+00:00",
    "Description": "The resource is used to represent the Job Service that allows scheduling of operations.",
    "Id": "JobService",
    "Jobs": {
        "@odata.id": "/redfish/v1/JobService/Jobs"
    },
    "Name": "Job Service",
    "ServiceCapabilities": {
        "MaxJobs": 16,
        "MaxSteps": 30,
        "Scheduling": true
    },
    "ServiceEnabled": true,
    "Status": {
        "Health": "OK",
        "State": "Enabled"
    }
}