{ "type": "object", "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-structure/amazon-step-functions-activity-list-item-structure.json", "name": "ActivityListItem", "description": "Contains details about an activity.", "properties": { "activityArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) that identifies the activity." } ] }, "name": { "allOf": [ { "$ref": "#/components/schemas/Name" }, { "description": "

The name of the activity.

A name must not contain:

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

" } ] }, "creationDate": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date the activity is created." } ] } }, "required": [ "activityArn", "name", "creationDate" ] }