action apple_builds_icons_get_to_many_related { label: "builds-icons-get_to_many_related" provider: apple method: GET path: "/v1/builds/{id}/icons" encoding: json input: { type: "object" properties: { "fields[buildIcons]": { type: "array" items: { type: "string" enum: ["iconAsset", "iconType"] } } 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: { iconAsset: { type: "object" properties: { height: { type: "integer" } templateUrl: { type: "string" } width: { type: "integer" } } } iconType: { type: "string" enum: ["APP_STORE", "MESSAGES_APP_STORE", "WATCH_APP_STORE", "TV_OS_HOME_SCREEN", "TV_OS_TOP_SHELF"] } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } type: { type: "string" enum: ["buildIcons"] } } } } 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" } } } } } } } }