{
"$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-get-matching-workflow-output-schema.json",
"title": "GetMatchingWorkflowOutput",
"description": "GetMatchingWorkflowOutput schema from AWS EntityResolution",
"type": "object",
"properties": {
"createdAt": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The timestamp of when the workflow was created."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "A description of the workflow."
}
]
},
"incrementalRunConfig": {
"allOf": [
{
"$ref": "#/components/schemas/IncrementalRunConfig"
},
{
"description": "An object which defines an incremental run type and has only incrementalRunType as a field."
}
]
},
"inputSourceConfig": {
"allOf": [
{
"$ref": "#/components/schemas/InputSourceConfig"
},
{
"description": "A list of InputSource objects, which have the fields InputSourceARN and SchemaName."
}
]
},
"outputSourceConfig": {
"allOf": [
{
"$ref": "#/components/schemas/OutputSourceConfig"
},
{
"description": "A list of OutputSource objects, each of which contains fields OutputS3Path, ApplyNormalization, and Output."
}
]
},
"resolutionTechniques": {
"allOf": [
{
"$ref": "#/components/schemas/ResolutionTechniques"
},
{
"description": "An object which defines the resolutionType and the ruleBasedProperties "
}
]
},
"roleArn": {
"allOf": [
{
"$ref": "#/components/schemas/String"
},
{
"description": "The Amazon Resource Name (ARN) of the IAM role. AWS Entity Resolution assumes this role to access resources on your behalf."
}
]
},
"tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagMap"
},
{
"description": "The tags used to organize, track, or control access for this resource."
}
]
},
"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",
"inputSourceConfig",
"outputSourceConfig",
"resolutionTechniques",
"roleArn",
"updatedAt",
"workflowArn",
"workflowName"
]
}