action apple_app_screenshots_get_instance { label: "appScreenshots-get_instance" provider: apple method: GET path: "/v1/appScreenshots/{id}" encoding: json input: { type: "object" properties: { "fields[appScreenshots]": { type: "array" items: { type: "string" enum: ["appScreenshotSet", "assetDeliveryState", "assetToken", "assetType", "fileName", "fileSize", "imageAsset", "sourceFileChecksum", "uploadOperations", "uploaded"] } } include: { type: "array" items: { type: "string" enum: ["appScreenshotSet"] } } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "object" required: ["id", "links", "type"] properties: { attributes: { type: "object" properties: { assetDeliveryState: { type: "object" properties: { errors: { type: "array" items: { type: "object" properties: { code: { type: "string" } description: { type: "string" } } } } state: { type: "string" enum: ["AWAITING_UPLOAD", "UPLOAD_COMPLETE", "COMPLETE", "FAILED"] } warnings: { type: "array" items: { type: "object" properties: { code: { type: "string" } description: { type: "string" } } } } } } assetToken: { type: "string" } assetType: { type: "string" } fileName: { type: "string" } fileSize: { type: "integer" } imageAsset: { type: "object" properties: { height: { type: "integer" } templateUrl: { type: "string" } width: { type: "integer" } } } sourceFileChecksum: { type: "string" } uploadOperations: { type: "array" items: { type: "object" properties: { length: { type: "integer" } method: { type: "string" } offset: { type: "integer" } requestHeaders: { type: "array" items: { type: "object" properties: { name: { type: "string" } value: { type: "string" } } } } url: { type: "string" } } } } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } relationships: { type: "object" properties: { appScreenshotSet: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appScreenshotSets"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } } } type: { type: "string" enum: ["appScreenshots"] } } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }