action apple_app_info_localizations_get_instance { label: "appInfoLocalizations-get_instance" provider: apple method: GET path: "/v1/appInfoLocalizations/{id}" encoding: json input: { type: "object" properties: { "fields[appInfoLocalizations]": { type: "array" items: { type: "string" enum: ["appInfo", "locale", "name", "privacyPolicyText", "privacyPolicyUrl", "subtitle"] } } include: { type: "array" items: { type: "string" enum: ["appInfo"] } } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "object" required: ["id", "links", "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: { self: { type: "string" format: "uri-reference" } } } } } }