action apple_app_info_localizations_create_instance { label: "appInfoLocalizations-create_instance" provider: apple method: POST path: "/v1/appInfoLocalizations" encoding: json input: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["attributes", "relationships", "type"] properties: { attributes: { type: "object" required: ["locale"] properties: { locale: { type: "string" } name: { type: "string" } privacyPolicyText: { type: "string" } privacyPolicyUrl: { type: "string" } subtitle: { type: "string" } } } relationships: { type: "object" required: ["appInfo"] properties: { appInfo: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["appInfos"] } } } } } } } type: { type: "string" enum: ["appInfoLocalizations"] } } } } } 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" } } } } } }