action apple_apps_prices_get_to_many_related { label: "apps-prices-get_to_many_related" provider: apple method: GET path: "/v1/apps/{id}/prices" encoding: json input: { type: "object" properties: { "fields[appPriceTiers]": { type: "array" items: { type: "string" enum: ["pricePoints"] } } "fields[appPrices]": { type: "array" items: { type: "string" enum: ["app", "priceTier"] } } "fields[apps]": { type: "array" items: { type: "string" enum: ["appInfos", "appStoreVersions", "availableInNewTerritories", "availableTerritories", "betaAppLocalizations", "betaAppReviewDetail", "betaGroups", "betaLicenseAgreement", "betaTesters", "builds", "bundleId", "contentRightsDeclaration", "endUserLicenseAgreement", "gameCenterEnabledVersions", "inAppPurchases", "isOrEverWasMadeForKids", "name", "perfPowerMetrics", "preOrder", "preReleaseVersions", "prices", "primaryLocale", "sku"] } } include: { type: "array" items: { type: "string" enum: ["app", "priceTier"] } } limit: { type: "integer" } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "array" items: { type: "object" required: ["links", "id", "type"] properties: { id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } relationships: { type: "object" properties: { app: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["apps"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } priceTier: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appPriceTiers"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } } } type: { type: "string" enum: ["appPrices"] } } } } links: { type: "object" required: ["self"] properties: { first: { type: "string" format: "uri-reference" } next: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } meta: { type: "object" required: ["paging"] properties: { paging: { type: "object" required: ["limit", "total"] properties: { limit: { type: "integer" } total: { type: "integer" } } } } } } } }