forked from cw-ozaki/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcronjob.json
19 lines (19 loc) · 937 Bytes
/
cronjob.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"$schema": "http://json-schema.org/schema#",
"type": "object",
"description": "CronJob represents the configuration of a single cron job.",
"properties": {
"status": {
"description": "Status is a structure describing current status of a job. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
"$ref": "_definitions.json#/definitions/v2alpha1.CronJobStatus"
},
"spec": {
"description": "Spec is a structure defining the expected behavior of a job, including the schedule. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#spec-and-status",
"$ref": "_definitions.json#/definitions/v2alpha1.CronJobSpec"
},
"metadata": {
"description": "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata",
"$ref": "_definitions.json#/definitions/v1.ObjectMeta"
}
}
}