{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-scheduler/refs/heads/main/json-schema/amazon-eventbridge-scheduler-schedule-summary-schema.json", "title": "ScheduleSummary", "description": "The details of a schedule.", "type": "object", "properties": { "Arn": { "allOf": [ { "$ref": "#/components/schemas/ScheduleArn" }, { "description": "The Amazon Resource Name (ARN) of the schedule." } ] }, "CreationDate": { "allOf": [ { "$ref": "#/components/schemas/CreationDate" }, { "description": "The time at which the schedule was created." } ] }, "GroupName": { "allOf": [ { "$ref": "#/components/schemas/ScheduleGroupName" }, { "description": "The name of the schedule group associated with this schedule." } ] }, "LastModificationDate": { "allOf": [ { "$ref": "#/components/schemas/LastModificationDate" }, { "description": "The time at which the schedule was last modified." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "The name of the schedule." } ] }, "State": { "allOf": [ { "$ref": "#/components/schemas/ScheduleState" }, { "description": "Specifies whether the schedule is enabled or disabled." } ] }, "Target": { "allOf": [ { "$ref": "#/components/schemas/TargetSummary" }, { "description": "The schedule's target details." } ] } } }