{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-entity-resolution/refs/heads/main/json-schema/amazon-entity-resolution-matching-workflow-summary-schema.json",
"title": "MatchingWorkflowSummary",
"description": "A list of MatchingWorkflowSummary objects, each of which contain the fields WorkflowName, WorkflowArn, CreatedAt, UpdatedAt.",
"type": "object",
"properties": {
"createdAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The timestamp of when the workflow was created."
}
]
},
"updatedAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The timestamp of when the workflow was last updated."
}
]
},
"workflowArn": {
"allOf": [
{
"$ref": "#/components/schemas/MatchingWorkflowArn"
},
{
"description": "The ARN (Amazon Resource Name) that Entity Resolution generated for the MatchingWorkflow."
}
]
},
"workflowName": {
"allOf": [
{
"$ref": "#/components/schemas/EntityName"
},
{
"description": "The name of the workflow."
}
]
}
},
"required": [
"createdAt",
"updatedAt",
"workflowArn",
"workflowName"
]
}