| Name | JsonSchemaType | Description |
|---|---|---|
| commandLine | string | Platform depend command line that will be put into script file and executed. |
| currentDirectory | string | Working directory for script file. |
{
"title": "Era.Common.DataDefinition.Task.OS.RunCommand",
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"required": [
"Era.Common.DataDefinition.Task.OS.RunCommand"
],
"properties": {
"Era.Common.DataDefinition.Task.OS.RunCommand": {
"$ref": "#/definitions/RunCommand"
}
},
"definitions": {
"RunCommand": {
"additionalProperties": false,
"required": [
"commandLine"
],
"type": "object",
"properties": {
"commandLine": {
"type": "string"
},
"currentDirectory": {
"type": "string"
}
}
}
}
}