action apple_profiles_bundle_id_get_to_one_related { label: "profiles-bundleId-get_to_one_related" provider: apple method: GET path: "/v1/profiles/{id}/bundleId" encoding: json input: { type: "object" properties: { "fields[bundleIds]": { type: "array" items: { type: "string" enum: ["app", "bundleIdCapabilities", "identifier", "name", "platform", "profiles", "seedId"] } } } additionalProperties: false } output: { type: "object" required: ["data", "links"] properties: { data: { type: "object" required: ["id", "links", "type"] properties: { attributes: { type: "object" properties: { identifier: { type: "string" } name: { type: "string" } platform: { type: "string" enum: ["IOS", "MAC_OS"] } seedId: { type: "string" } } } id: { type: "string" } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } relationships: { type: "object" properties: { app: { type: "object" properties: { data: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["apps"] } } } links: { type: "object" properties: { related: { type: "string" format: "uri-reference" } self: { type: "string" format: "uri-reference" } } } } } bundleIdCapabilities: { type: "object" properties: { data: { type: "array" items: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["bundleIdCapabilities"] } } } } links: { type: "object" properties: { related: { 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" } } } } } } } profiles: { type: "object" properties: { data: { type: "array" items: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["profiles"] } } } } links: { type: "object" properties: { related: { 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" } } } } } } } } } type: { type: "string" enum: ["bundleIds"] } } } included: { type: "array" items: { type: "object" } } links: { type: "object" required: ["self"] properties: { self: { type: "string" format: "uri-reference" } } } } } }