{ "$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-application-state-schema.json", "title": "ApplicationState", "description": "The state of an application discovered through Migration Hub import, the AWS Agentless Discovery Connector, or the AWS Application Discovery Agent.", "type": "object", "properties": { "ApplicationId": { "allOf": [ { "$ref": "#/components/schemas/ApplicationId" }, { "description": "The configurationId from the Application Discovery Service that uniquely identifies an application." } ] }, "ApplicationStatus": { "allOf": [ { "$ref": "#/components/schemas/ApplicationStatus" }, { "description": "The current status of an application." } ] }, "LastUpdatedTime": { "allOf": [ { "$ref": "#/components/schemas/UpdateDateTime" }, { "description": "The timestamp when the application status was last updated." } ] } } }