{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-migration-hub/refs/heads/main/json-schema/migration-hub-api-created-artifact-schema.json", "title": "CreatedArtifact", "description": "An ARN of the AWS cloud resource target receiving the migration (e.g., AMI, EC2 instance, RDS instance, etc.).", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/CreatedArtifactName" }, { "description": "An ARN that uniquely identifies the result of a migration task." } ] }, "Description": { "allOf": [ { "$ref": "#/components/schemas/CreatedArtifactDescription" }, { "description": "A description that can be free-form text to record additional detail about the artifact for clarity or for later reference." } ] } }, "required": [ "Name" ] }