{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-job-details-schema.json", "title": "JobDetails", "description": "Specifies whether any one-time or recurring classification jobs are configured to analyze data in an S3 bucket, and, if so, the details of the job that ran most recently.", "type": "object", "properties": { "isDefinedInJob": { "allOf": [ { "$ref": "#/components/schemas/IsDefinedInJob" }, { "description": "

Specifies whether any one-time or recurring jobs are configured to analyze data in the bucket. Possible values are:

" } ] }, "isMonitoredByJob": { "allOf": [ { "$ref": "#/components/schemas/IsMonitoredByJob" }, { "description": "

Specifies whether any recurring jobs are configured to analyze data in the bucket. Possible values are:

" } ] }, "lastJobId": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "description": "

The unique identifier for the job that ran most recently and is configured to analyze data in the bucket, either the latest run of a recurring job or the only run of a one-time job.

This value is typically null if the value for the isDefinedInJob property is FALSE or UNKNOWN.

" } ] }, "lastJobRunTime": { "allOf": [ { "$ref": "#/components/schemas/__timestampIso8601" }, { "description": "

The date and time, in UTC and extended ISO 8601 format, when the job (lastJobId) started. If the job is a recurring job, this value indicates when the most recent run started.

This value is typically null if the value for the isDefinedInJob property is FALSE or UNKNOWN.

" } ] } } }