action apple_app_infos_app_info_localizations_get_to_many_related { label: "appInfos-appInfoLocalizations-get_to_many_related" provider: apple method: GET path: "/v1/appInfos/{id}/appInfoLocalizations" encoding: json input: { type: "object" properties: { "fields[appInfoLocalizations]": { type: "array" items: { type: "string" enum: ["appInfo", "locale", "name", "privacyPolicyText", "privacyPolicyUrl", "subtitle"] } } "fields[appInfos]": { type: "array" items: { type: "string" enum: ["ageRatingDeclaration", "app", "appInfoLocalizations", "appStoreAgeRating", "appStoreState", "brazilAgeRating", "kidsAgeBand", "primaryCategory", "primarySubcategoryOne", "primarySubcategoryTwo", "secondaryCategory", "secondarySubcategoryOne", "secondarySubcategoryTwo"] } } "filter[locale]": { type: "array" items: { type: "string" } } include: { type: "array" items: { type: "string" enum: ["appInfo"] } } limit: { type: "integer" } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "array" items: { type: "object" required: ["links", "id", "type"] properties: { attributes: { type: "object" properties: { locale: { type: "string" } name: { type: "string" } privacyPolicyText: { type: "string" } privacyPolicyUrl: { type: "string" } subtitle: { type: "string" } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } relationships: { type: "object" properties: { appInfo: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appInfos"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } } } type: { type: "string" enum: ["appInfoLocalizations"] } } } } 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" } } } } } } } }