| name | data type | description |
|---|---|---|
| jobCategory | JobCategoryEnum | Job category |
| jobTemplate | string | Job template |
| code | string | Cod |
| description | string | Description |
| followingJob | string | Following job to execute |
| parameter | string | Parameter to job execution |
| active | boolean | Is job active |
| customFields | CustomFieldsDto | Custom fields |
| timerCode | string | Job scheduling timer code |
Properties inherited from BusinessDto |
||
| updatedCode | string | |
Example
{
"jobCategory" : "DWH",
"jobTemplate" : "...",
"code" : "...",
"description" : "...",
"followingJob" : "...",
"parameter" : "...",
"active" : true,
"customFields" : {
"customField" : [ {
"code" : "...",
"valueDate" : 12345,
"valuePeriodStartDate" : 12345,
"valuePeriodEndDate" : 12345,
"valuePeriodPriority" : 12345,
"stringValue" : "...",
"dateValue" : 12345,
"longValue" : 12345,
"doubleValue" : 12345.0,
"value" : [ { }, { } ],
"mapValue" : {
"property1" : { },
"property2" : { }
},
"entityReferenceValue" : { },
"indexType" : "INDEX"
}, {
"code" : "...",
"valueDate" : 12345,
"valuePeriodStartDate" : 12345,
"valuePeriodEndDate" : 12345,
"valuePeriodPriority" : 12345,
"stringValue" : "...",
"dateValue" : 12345,
"longValue" : 12345,
"doubleValue" : 12345.0,
"value" : [ { }, { } ],
"mapValue" : {
"property1" : { },
"property2" : { }
},
"entityReferenceValue" : { },
"indexType" : "STORE_ONLY"
} ]
},
"timerCode" : "...",
"updatedCode" : "..."
}