action apple_app_price_points_territory_get_to_one_related { label: "appPricePoints-territory-get_to_one_related" provider: apple method: GET path: "/v1/appPricePoints/{id}/territory" encoding: json input: { type: "object" properties: { "fields[territories]": { type: "array" items: { type: "string" enum: ["currency"] } } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "object" required: ["id", "links", "type"] properties: { attributes: { type: "object" properties: { currency: { type: "string" } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } type: { type: "string" enum: ["territories"] } } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }