action apple_app_store_review_attachments_create_instance { label: "appStoreReviewAttachments-create_instance" provider: apple method: POST path: "/v1/appStoreReviewAttachments" encoding: json input: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["attributes", "relationships", "type"] properties: { attributes: { type: "object" required: ["fileName", "fileSize"] properties: { fileName: { type: "string" } fileSize: { type: "integer" } } } relationships: { type: "object" required: ["appStoreReviewDetail"] properties: { appStoreReviewDetail: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appStoreReviewDetails"] } } } } } } } type: { type: "string" enum: ["appStoreReviewAttachments"] } } } } } 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: { appStoreReviewDetail: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appStoreReviewDetails"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } } } type: { type: "string" enum: ["appStoreReviewAttachments"] } } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }