{
  "service": "formbricks",
  "displayName": "Formbricks",
  "categories": [
    "Productivity",
    "Data"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Key",
      "placeholder": "FORMBRICKS_API_KEY",
      "description": "Formbricks management API key sent with the x-api-key header. Generate or manage it from the Formbricks API key settings: https://formbricks.com/docs/api-reference/generate-key"
    }
  ],
  "homepageUrl": "https://formbricks.com",
  "actions": [
    {
      "id": "formbricks.create_contact",
      "service": "formbricks",
      "name": "create_contact",
      "description": "Create one Formbricks contact with a workspace-scoped attributes object.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The Formbricks workspace identifier used by this action.",
            "pattern": "\\S"
          },
          "environmentId": {
            "type": "string",
            "minLength": 1,
            "description": "The deprecated environment identifier alias accepted by Formbricks for compatibility.",
            "pattern": "\\S"
          },
          "attributes": {
            "type": "object",
            "properties": {
              "email": {
                "type": "string",
                "description": "The contact email address used by Formbricks as the unique identifier.",
                "format": "email"
              }
            },
            "additionalProperties": {
              "type": "string",
              "description": "One additional string-valued contact attribute stored on the Formbricks contact."
            },
            "description": "The Formbricks contact attributes object. It must include a valid email address."
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId",
          "attributes"
        ],
        "description": "The payload for creating one Formbricks contact."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contact": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "minLength": 1,
                "description": "The Formbricks contact identifier.",
                "pattern": "\\S"
              },
              "createdAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the contact was created.",
                "pattern": "\\S"
              },
              "workspaceId": {
                "type": "string",
                "minLength": 1,
                "description": "The workspace identifier that owns the contact.",
                "pattern": "\\S"
              },
              "environmentId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The deprecated environment identifier alias returned by Formbricks."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "attributes": {
                "type": "object",
                "additionalProperties": {
                  "type": "string",
                  "description": "One contact attribute value."
                },
                "description": "The string-valued contact attributes stored in Formbricks."
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw Formbricks contact payload."
              }
            },
            "additionalProperties": false,
            "description": "A normalized Formbricks contact returned by the connector."
          }
        },
        "additionalProperties": false,
        "description": "The normalized Formbricks contact creation response."
      }
    },
    {
      "id": "formbricks.create_contact_attribute_key",
      "service": "formbricks",
      "name": "create_contact_attribute_key",
      "description": "Create one Formbricks contact attribute key inside a workspace.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The Formbricks workspace identifier used by this action.",
            "pattern": "\\S"
          },
          "environmentId": {
            "type": "string",
            "minLength": 1,
            "description": "The deprecated environment identifier alias accepted by Formbricks for compatibility.",
            "pattern": "\\S"
          },
          "key": {
            "type": "string",
            "minLength": 1,
            "description": "The machine-readable attribute key to create in Formbricks.",
            "pattern": "\\S"
          },
          "name": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The display name for the new Formbricks attribute key.",
                "pattern": "\\S"
              },
              {
                "type": "null"
              }
            ]
          },
          "description": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "The description for the new Formbricks attribute key.",
                "pattern": "\\S"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "additionalProperties": false,
        "required": [
          "workspaceId",
          "key",
          "name",
          "description"
        ],
        "description": "The payload for creating one Formbricks contact attribute key."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKey": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "minLength": 1,
                "description": "The Formbricks contact attribute key identifier.",
                "pattern": "\\S"
              },
              "createdAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was created.",
                "pattern": "\\S"
              },
              "updatedAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was last updated.",
                "pattern": "\\S"
              },
              "isUnique": {
                "type": "boolean",
                "description": "Whether the attribute key is marked as unique across contacts in the workspace."
              },
              "key": {
                "type": "string",
                "minLength": 1,
                "description": "The machine-readable attribute key used in Formbricks.",
                "pattern": "\\S"
              },
              "name": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The display name configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "description": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The description configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "type": {
                "type": "string",
                "enum": [
                  "default",
                  "custom"
                ],
                "description": "Whether Formbricks marks this key as default or custom."
              },
              "workspaceId": {
                "type": "string",
                "minLength": 1,
                "description": "The workspace identifier that owns the attribute key.",
                "pattern": "\\S"
              },
              "environmentId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The deprecated environment identifier alias returned by Formbricks."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw Formbricks contact attribute key payload."
              }
            },
            "additionalProperties": false,
            "description": "A normalized Formbricks contact attribute key."
          }
        },
        "additionalProperties": false,
        "description": "The normalized Formbricks contact attribute key creation response."
      }
    },
    {
      "id": "formbricks.delete_contact_attribute_key",
      "service": "formbricks",
      "name": "delete_contact_attribute_key",
      "description": "Delete one Formbricks contact attribute key by its identifier.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKeyId": {
            "type": "string",
            "minLength": 1,
            "description": "The Formbricks contact attribute key identifier to fetch, update, or delete.",
            "pattern": "\\S"
          }
        },
        "additionalProperties": false,
        "required": [
          "contactAttributeKeyId"
        ],
        "description": "The identifier for one Formbricks contact attribute key."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKey": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "minLength": 1,
                "description": "The Formbricks contact attribute key identifier.",
                "pattern": "\\S"
              },
              "createdAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was created.",
                "pattern": "\\S"
              },
              "updatedAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was last updated.",
                "pattern": "\\S"
              },
              "isUnique": {
                "type": "boolean",
                "description": "Whether the attribute key is marked as unique across contacts in the workspace."
              },
              "key": {
                "type": "string",
                "minLength": 1,
                "description": "The machine-readable attribute key used in Formbricks.",
                "pattern": "\\S"
              },
              "name": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The display name configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "description": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The description configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "type": {
                "type": "string",
                "enum": [
                  "default",
                  "custom"
                ],
                "description": "Whether Formbricks marks this key as default or custom."
              },
              "workspaceId": {
                "type": "string",
                "minLength": 1,
                "description": "The workspace identifier that owns the attribute key.",
                "pattern": "\\S"
              },
              "environmentId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The deprecated environment identifier alias returned by Formbricks."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw Formbricks contact attribute key payload."
              }
            },
            "additionalProperties": false,
            "description": "A normalized Formbricks contact attribute key."
          }
        },
        "additionalProperties": false,
        "description": "The normalized Formbricks contact attribute key deletion response."
      }
    },
    {
      "id": "formbricks.get_contact_attribute_key",
      "service": "formbricks",
      "name": "get_contact_attribute_key",
      "description": "Get one Formbricks contact attribute key by its identifier.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKeyId": {
            "type": "string",
            "minLength": 1,
            "description": "The Formbricks contact attribute key identifier to fetch, update, or delete.",
            "pattern": "\\S"
          }
        },
        "additionalProperties": false,
        "required": [
          "contactAttributeKeyId"
        ],
        "description": "The identifier for one Formbricks contact attribute key."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKey": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "minLength": 1,
                "description": "The Formbricks contact attribute key identifier.",
                "pattern": "\\S"
              },
              "createdAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was created.",
                "pattern": "\\S"
              },
              "updatedAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was last updated.",
                "pattern": "\\S"
              },
              "isUnique": {
                "type": "boolean",
                "description": "Whether the attribute key is marked as unique across contacts in the workspace."
              },
              "key": {
                "type": "string",
                "minLength": 1,
                "description": "The machine-readable attribute key used in Formbricks.",
                "pattern": "\\S"
              },
              "name": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The display name configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "description": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The description configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "type": {
                "type": "string",
                "enum": [
                  "default",
                  "custom"
                ],
                "description": "Whether Formbricks marks this key as default or custom."
              },
              "workspaceId": {
                "type": "string",
                "minLength": 1,
                "description": "The workspace identifier that owns the attribute key.",
                "pattern": "\\S"
              },
              "environmentId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The deprecated environment identifier alias returned by Formbricks."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw Formbricks contact attribute key payload."
              }
            },
            "additionalProperties": false,
            "description": "A normalized Formbricks contact attribute key."
          }
        },
        "additionalProperties": false,
        "description": "The normalized Formbricks contact attribute key detail response."
      }
    },
    {
      "id": "formbricks.get_me",
      "service": "formbricks",
      "name": "get_me",
      "description": "Get the Formbricks organization and workspace context associated with the current API key.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "No input is required for retrieving the current Formbricks API key context."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "organizationId": {
            "type": "string",
            "minLength": 1,
            "description": "The Formbricks organization identifier.",
            "pattern": "\\S"
          },
          "organizationAccess": {
            "type": "object",
            "properties": {
              "accessControl": {
                "type": "object",
                "properties": {
                  "read": {
                    "type": "boolean",
                    "description": "Whether the API key can read organization-level data."
                  },
                  "write": {
                    "type": "boolean",
                    "description": "Whether the API key can write organization-level data."
                  }
                },
                "additionalProperties": false,
                "description": "The read and write access flags for the API key."
              }
            },
            "additionalProperties": false,
            "description": "The organization-level access control returned by Formbricks."
          },
          "workspaces": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "workspaceId": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The Formbricks workspace identifier.",
                  "pattern": "\\S"
                },
                "environmentId": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The deprecated environment identifier alias when returned by Formbricks."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "environmentType": {
                  "type": "string",
                  "enum": [
                    "production",
                    "development"
                  ],
                  "description": "The Formbricks environment type for the workspace."
                },
                "permission": {
                  "type": "string",
                  "enum": [
                    "read",
                    "write",
                    "manage"
                  ],
                  "description": "The permission level granted to this API key for the workspace."
                },
                "projectId": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The Formbricks project identifier that owns the workspace.",
                  "pattern": "\\S"
                },
                "projectName": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The Formbricks project name that owns the workspace.",
                  "pattern": "\\S"
                }
              },
              "additionalProperties": false,
              "description": "One Formbricks workspace summary returned by /me."
            },
            "description": "The workspaces accessible to the API key."
          },
          "environments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "workspaceId": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The Formbricks workspace identifier.",
                  "pattern": "\\S"
                },
                "environmentId": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The deprecated environment identifier alias when returned by Formbricks."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "environmentType": {
                  "type": "string",
                  "enum": [
                    "production",
                    "development"
                  ],
                  "description": "The Formbricks environment type for the workspace."
                },
                "permission": {
                  "type": "string",
                  "enum": [
                    "read",
                    "write",
                    "manage"
                  ],
                  "description": "The permission level granted to this API key for the workspace."
                },
                "projectId": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The Formbricks project identifier that owns the workspace.",
                  "pattern": "\\S"
                },
                "projectName": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The Formbricks project name that owns the workspace.",
                  "pattern": "\\S"
                }
              },
              "additionalProperties": false,
              "description": "One Formbricks workspace summary returned by /me."
            },
            "description": "The deprecated environments alias returned by Formbricks when present."
          }
        },
        "additionalProperties": false,
        "description": "The Formbricks /me payload normalized by the connector."
      }
    },
    {
      "id": "formbricks.list_contact_attribute_keys",
      "service": "formbricks",
      "name": "list_contact_attribute_keys",
      "description": "List Formbricks contact attribute keys with optional pagination, sorting, date filters, and workspace scoping.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "workspaceId": {
            "type": "string",
            "minLength": 1,
            "description": "The Formbricks workspace identifier used by this action.",
            "pattern": "\\S"
          },
          "environmentId": {
            "type": "string",
            "minLength": 1,
            "description": "The deprecated environment identifier alias accepted by Formbricks for compatibility.",
            "pattern": "\\S"
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 250,
            "description": "The maximum number of attribute keys to return."
          },
          "skip": {
            "type": "integer",
            "minimum": 0,
            "description": "The number of attribute keys to skip before returning results."
          },
          "sortBy": {
            "type": "string",
            "enum": [
              "createdAt",
              "updatedAt"
            ],
            "description": "The Formbricks field used to sort the returned attribute keys."
          },
          "order": {
            "type": "string",
            "enum": [
              "asc",
              "desc"
            ],
            "description": "The sort order for the returned Formbricks attribute keys."
          },
          "startDate": {
            "type": "string",
            "description": "An optional start-date filter passed through to Formbricks exactly as provided."
          },
          "endDate": {
            "type": "string",
            "description": "An optional end-date filter passed through to Formbricks exactly as provided."
          },
          "filterDateField": {
            "type": "string",
            "enum": [
              "createdAt",
              "updatedAt"
            ],
            "description": "The Formbricks date field used for start/end filtering."
          }
        },
        "additionalProperties": false,
        "description": "Optional filters for listing Formbricks contact attribute keys."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKeys": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The Formbricks contact attribute key identifier.",
                  "pattern": "\\S"
                },
                "createdAt": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The ISO timestamp when the attribute key was created.",
                  "pattern": "\\S"
                },
                "updatedAt": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The ISO timestamp when the attribute key was last updated.",
                  "pattern": "\\S"
                },
                "isUnique": {
                  "type": "boolean",
                  "description": "Whether the attribute key is marked as unique across contacts in the workspace."
                },
                "key": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The machine-readable attribute key used in Formbricks.",
                  "pattern": "\\S"
                },
                "name": {
                  "anyOf": [
                    {
                      "type": "string",
                      "minLength": 1,
                      "description": "The display name configured for the attribute key.",
                      "pattern": "\\S"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "description": {
                  "anyOf": [
                    {
                      "type": "string",
                      "minLength": 1,
                      "description": "The description configured for the attribute key.",
                      "pattern": "\\S"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": {
                  "type": "string",
                  "enum": [
                    "default",
                    "custom"
                  ],
                  "description": "Whether Formbricks marks this key as default or custom."
                },
                "workspaceId": {
                  "type": "string",
                  "minLength": 1,
                  "description": "The workspace identifier that owns the attribute key.",
                  "pattern": "\\S"
                },
                "environmentId": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The deprecated environment identifier alias returned by Formbricks."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "raw": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "The raw Formbricks contact attribute key payload."
                }
              },
              "additionalProperties": false,
              "description": "A normalized Formbricks contact attribute key."
            },
            "description": "The contact attribute keys returned by Formbricks."
          },
          "meta": {
            "type": "object",
            "properties": {
              "total": {
                "type": "integer",
                "minimum": 0,
                "description": "The total number of matching Formbricks attribute keys."
              },
              "limit": {
                "type": "integer",
                "minimum": 0,
                "description": "The number of attribute keys Formbricks returned per page."
              },
              "offset": {
                "type": "integer",
                "minimum": 0,
                "description": "The offset Formbricks applied to this result page."
              }
            },
            "additionalProperties": false,
            "description": "Pagination metadata returned for Formbricks contact attribute key lists."
          }
        },
        "additionalProperties": false,
        "description": "The normalized Formbricks contact attribute key list response."
      }
    },
    {
      "id": "formbricks.update_contact_attribute_key",
      "service": "formbricks",
      "name": "update_contact_attribute_key",
      "description": "Update one existing Formbricks contact attribute key.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKeyId": {
            "type": "string",
            "minLength": 1,
            "description": "The Formbricks contact attribute key identifier to fetch, update, or delete.",
            "pattern": "\\S"
          },
          "key": {
            "type": "string",
            "minLength": 1,
            "description": "An updated machine-readable attribute key.",
            "pattern": "\\S"
          },
          "name": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "An updated display name for the attribute key.",
                "pattern": "\\S"
              },
              {
                "type": "null"
              }
            ]
          },
          "description": {
            "anyOf": [
              {
                "type": "string",
                "minLength": 1,
                "description": "An updated description for the attribute key.",
                "pattern": "\\S"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "additionalProperties": false,
        "required": [
          "contactAttributeKeyId"
        ],
        "description": "The partial update payload for one Formbricks contact attribute key.",
        "anyOf": [
          {
            "required": [
              "key"
            ]
          },
          {
            "required": [
              "name"
            ]
          },
          {
            "required": [
              "description"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contactAttributeKey": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "minLength": 1,
                "description": "The Formbricks contact attribute key identifier.",
                "pattern": "\\S"
              },
              "createdAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was created.",
                "pattern": "\\S"
              },
              "updatedAt": {
                "type": "string",
                "minLength": 1,
                "description": "The ISO timestamp when the attribute key was last updated.",
                "pattern": "\\S"
              },
              "isUnique": {
                "type": "boolean",
                "description": "Whether the attribute key is marked as unique across contacts in the workspace."
              },
              "key": {
                "type": "string",
                "minLength": 1,
                "description": "The machine-readable attribute key used in Formbricks.",
                "pattern": "\\S"
              },
              "name": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The display name configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "description": {
                "anyOf": [
                  {
                    "type": "string",
                    "minLength": 1,
                    "description": "The description configured for the attribute key.",
                    "pattern": "\\S"
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "type": {
                "type": "string",
                "enum": [
                  "default",
                  "custom"
                ],
                "description": "Whether Formbricks marks this key as default or custom."
              },
              "workspaceId": {
                "type": "string",
                "minLength": 1,
                "description": "The workspace identifier that owns the attribute key.",
                "pattern": "\\S"
              },
              "environmentId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The deprecated environment identifier alias returned by Formbricks."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "raw": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "The raw Formbricks contact attribute key payload."
              }
            },
            "additionalProperties": false,
            "description": "A normalized Formbricks contact attribute key."
          }
        },
        "additionalProperties": false,
        "description": "The normalized Formbricks contact attribute key update response."
      }
    }
  ]
}
