Azure Container Apps · JSON Structure
Azure Container Apps Job Structure
Job schema from Azure Container Apps API
Type: object
Properties: 6
AzureContainersDaprKubernetesMicroservicesServerless
Job is a JSON Structure definition published by Azure Container Apps, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
id
name
type
location
tags
properties
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/json-structure/azure-container-apps-job-structure.json",
"description": "Job schema from Azure Container Apps API",
"type": "object",
"properties": {
"id": {
"type": "string",
"readOnly": true
},
"name": {
"type": "string",
"readOnly": true
},
"type": {
"type": "string",
"readOnly": true
},
"location": {
"type": "string"
},
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"properties": {
"type": "object",
"properties": {
"provisioningState": {
"type": "string",
"readOnly": true,
"enum": [
"InProgress",
"Succeeded",
"Failed",
"Canceled",
"Deleting"
]
},
"environmentId": {
"type": "string"
},
"workloadProfileName": {
"type": "string"
},
"configuration": {
"type": "object",
"properties": {
"secrets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Secret"
}
},
"triggerType": {
"type": "string",
"enum": [
"Schedule",
"Event",
"Manual"
]
},
"replicaTimeout": {
"type": "int32"
},
"replicaRetryLimit": {
"type": "int32"
},
"manualTriggerConfig": {
"type": "object",
"properties": {
"replicaCompletionCount": {
"type": "int32"
},
"parallelism": {
"type": "int32"
}
}
},
"scheduleTriggerConfig": {
"type": "object",
"properties": {
"cronExpression": {
"type": "string"
},
"replicaCompletionCount": {
"type": "int32"
},
"parallelism": {
"type": "int32"
}
}
},
"eventTriggerConfig": {
"type": "object",
"properties": {
"replicaCompletionCount": {
"type": "int32"
},
"parallelism": {
"type": "int32"
},
"scale": {
"type": "object",
"properties": {
"minExecutions": {
"type": "int32"
},
"maxExecutions": {
"type": "int32"
},
"pollingInterval": {
"type": "int32"
},
"rules": {
"type": "array",
"items": {
"type": "object"
}
}
}
}
}
},
"registries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"server": {
"type": "string"
},
"username": {
"type": "string"
},
"passwordSecretRef": {
"type": "string"
},
"identity": {
"type": "string"
}
}
}
}
}
},
"template": {
"$ref": "#/components/schemas/JobExecutionTemplate"
},
"outboundIpAddresses": {
"type": "array",
"readOnly": true,
"items": {
"type": "string"
}
},
"eventStreamEndpoint": {
"type": "string",
"readOnly": true
}
}
}
},
"name": "Job"
}