{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-get-application-revision-input-structure.json", "name": "GetApplicationRevisionInput", "description": "Represents the input of a GetApplicationRevision operation.", "type": "object", "properties": { "applicationName": { "allOf": [ { "$ref": "#/components/schemas/ApplicationName" }, { "description": "The name of the application that corresponds to the revision." } ] }, "revision": { "allOf": [ { "$ref": "#/components/schemas/RevisionLocation" }, { "description": "Information about the application revision to get, including type and location." } ] } }, "required": [ "applicationName", "revision" ] }