action apple_routing_app_coverages_get_instance { label: "routingAppCoverages-get_instance" provider: apple method: GET path: "/v1/routingAppCoverages/{id}" encoding: json input: { type: "object" properties: { "fields[routingAppCoverages]": { type: "array" items: { type: "string" enum: ["appStoreVersion", "assetDeliveryState", "fileName", "fileSize", "sourceFileChecksum", "uploadOperations", "uploaded"] } } include: { type: "array" items: { type: "string" enum: ["appStoreVersion"] } } } 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" } } } } } } fileName: { type: "string" } fileSize: { 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: { appStoreVersion: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appStoreVersions"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } } } type: { type: "string" enum: ["routingAppCoverages"] } } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }