action apple_app_encryption_declarations_builds_create_to_many_relationship { label: "appEncryptionDeclarations-builds-create_to_many_relationship" provider: apple method: POST path: "/v1/appEncryptionDeclarations/{id}/relationships/builds" encoding: json input: { type: "object" required: ["data"] properties: { data: { type: "array" items: { type: "object" required: ["id", "type"] properties: { id: { type: "string" } type: { type: "string" enum: ["builds"] } } } } } } output: { type: "object" additionalProperties: true } }