{
  "service": "webflow",
  "displayName": "Webflow",
  "categories": [
    "Design & Media",
    "Marketing"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Token",
      "placeholder": "WEBFLOW_API_TOKEN",
      "description": "Webflow Data API token sent as a Bearer token. Create or manage API tokens from Webflow Apps & Integrations: https://app.webflow.com/dashboard/apps.",
      "extraFields": []
    }
  ],
  "homepageUrl": "https://webflow.com",
  "actions": [
    {
      "id": "webflow.create_collection_item",
      "service": "webflow",
      "name": "create_collection_item",
      "description": "Create a draft or live item in a Webflow CMS collection.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow collection identifier."
          },
          "fieldData": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "CMS field values keyed by Webflow field slug. Include the fields required by the collection."
          },
          "isArchived": {
            "type": "boolean",
            "description": "Whether the new item should be archived."
          },
          "isDraft": {
            "type": "boolean",
            "description": "Whether the new item should remain a draft."
          },
          "cmsLocaleId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow CMS locale identifier."
          },
          "live": {
            "type": "boolean",
            "description": "Whether to create the item on the live site."
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId",
          "fieldData"
        ],
        "description": "Input parameters for creating a Webflow CMS collection item."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "item": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The unique CMS item identifier."
              },
              "cmsLocaleId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The CMS locale identifier for this item."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastPublished": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent publish timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastUpdated": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent update timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "createdOn": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The creation timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "isArchived": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the item is archived."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "isDraft": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the item is a draft."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "fieldData": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "Raw object data returned by Webflow."
              }
            },
            "additionalProperties": true,
            "description": "A Webflow CMS item."
          }
        },
        "additionalProperties": false,
        "required": [
          "item"
        ],
        "description": "The created CMS item."
      }
    },
    {
      "id": "webflow.delete_collection_item",
      "service": "webflow",
      "name": "delete_collection_item",
      "description": "Delete a draft CMS item from a Webflow collection.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow collection identifier."
          },
          "itemId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow CMS item identifier."
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId",
          "itemId"
        ],
        "description": "Input parameters for deleting a Webflow CMS collection item."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "itemId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow CMS item identifier."
          },
          "deleted": {
            "type": "boolean",
            "description": "Whether the connector completed the delete request."
          }
        },
        "additionalProperties": false,
        "required": [
          "itemId",
          "deleted"
        ],
        "description": "The deleted CMS item identifier."
      }
    },
    {
      "id": "webflow.get_collection",
      "service": "webflow",
      "name": "get_collection",
      "description": "Get a Webflow CMS collection including its field definitions.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow collection identifier."
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId"
        ],
        "description": "Input parameters for fetching a Webflow CMS collection."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "collection": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The unique collection identifier."
              },
              "displayName": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The collection display name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "singularName": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The singular collection item name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "slug": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The collection URL slug."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastUpdated": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent update timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "A Webflow CMS collection summary."
          },
          "fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The unique collection field identifier."
                },
                "displayName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The field display name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "slug": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The field slug used in fieldData."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The Webflow field type."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "required": {
                  "anyOf": [
                    {
                      "type": "boolean",
                      "description": "Whether Webflow marks the field as required."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "A Webflow CMS collection field summary."
            },
            "description": "CMS fields defined on the collection."
          }
        },
        "additionalProperties": false,
        "required": [
          "collection",
          "fields"
        ],
        "description": "The requested CMS collection and field definitions."
      }
    },
    {
      "id": "webflow.get_collection_item",
      "service": "webflow",
      "name": "get_collection_item",
      "description": "Get a single item from a Webflow CMS collection.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow collection identifier."
          },
          "itemId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow CMS item identifier."
          },
          "cmsLocaleId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow CMS locale identifier."
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId",
          "itemId"
        ],
        "description": "Input parameters for fetching a Webflow CMS collection item."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "item": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The unique CMS item identifier."
              },
              "cmsLocaleId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The CMS locale identifier for this item."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastPublished": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent publish timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastUpdated": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent update timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "createdOn": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The creation timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "isArchived": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the item is archived."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "isDraft": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the item is a draft."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "fieldData": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "Raw object data returned by Webflow."
              }
            },
            "additionalProperties": true,
            "description": "A Webflow CMS item."
          }
        },
        "additionalProperties": false,
        "required": [
          "item"
        ],
        "description": "The requested CMS item."
      }
    },
    {
      "id": "webflow.get_site",
      "service": "webflow",
      "name": "get_site",
      "description": "Get details for a single Webflow site.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "siteId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow site identifier."
          }
        },
        "additionalProperties": false,
        "required": [
          "siteId"
        ],
        "description": "Input parameters for fetching a Webflow site."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "site": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The unique site identifier."
              },
              "displayName": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The site display name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "shortName": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The site short name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "previewUrl": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The site preview image URL when returned by Webflow."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "workspaceId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The workspace identifier that owns the site."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastPublished": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent publish timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastUpdated": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent update timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "A Webflow site summary."
          }
        },
        "additionalProperties": false,
        "required": [
          "site"
        ],
        "description": "The requested Webflow site."
      }
    },
    {
      "id": "webflow.list_collection_items",
      "service": "webflow",
      "name": "list_collection_items",
      "description": "List items in a Webflow CMS collection.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow collection identifier."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100,
            "description": "Maximum number of records to return."
          },
          "offset": {
            "type": "integer",
            "minimum": 0,
            "description": "Number of records to skip before returning results."
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId"
        ],
        "description": "Input parameters for listing Webflow CMS collection items."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The unique CMS item identifier."
                },
                "cmsLocaleId": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The CMS locale identifier for this item."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "lastPublished": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The most recent publish timestamp when returned."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "lastUpdated": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The most recent update timestamp when returned."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "createdOn": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The creation timestamp when returned."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "isArchived": {
                  "anyOf": [
                    {
                      "type": "boolean",
                      "description": "Whether the item is archived."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "isDraft": {
                  "anyOf": [
                    {
                      "type": "boolean",
                      "description": "Whether the item is a draft."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "fieldData": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "Raw object data returned by Webflow."
                }
              },
              "additionalProperties": true,
              "description": "A Webflow CMS item."
            },
            "description": "CMS items in the collection."
          },
          "pagination": {
            "type": "object",
            "properties": {
              "limit": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Maximum number of records returned by Webflow."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "offset": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Number of records skipped by Webflow."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "total": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Total number of records available when returned by Webflow."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": false,
            "description": "Pagination metadata returned by Webflow."
          }
        },
        "additionalProperties": false,
        "required": [
          "items",
          "pagination"
        ],
        "description": "CMS items returned by Webflow."
      }
    },
    {
      "id": "webflow.list_collections",
      "service": "webflow",
      "name": "list_collections",
      "description": "List CMS collections for a Webflow site.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "siteId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow site identifier."
          }
        },
        "additionalProperties": false,
        "required": [
          "siteId"
        ],
        "description": "Input parameters for listing Webflow CMS collections."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "collections": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The unique collection identifier."
                },
                "displayName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The collection display name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "singularName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The singular collection item name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "slug": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The collection URL slug."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "lastUpdated": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The most recent update timestamp when returned."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "A Webflow CMS collection summary."
            },
            "description": "CMS collections for the site."
          }
        },
        "additionalProperties": false,
        "required": [
          "collections"
        ],
        "description": "CMS collections returned by Webflow."
      }
    },
    {
      "id": "webflow.list_sites",
      "service": "webflow",
      "name": "list_sites",
      "description": "List Webflow sites available to the connected token.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "No input is required to list Webflow sites."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "sites": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "The unique site identifier."
                },
                "displayName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The site display name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "shortName": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The site short name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "previewUrl": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The site preview image URL when returned by Webflow."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "workspaceId": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The workspace identifier that owns the site."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "lastPublished": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The most recent publish timestamp when returned."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "lastUpdated": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "The most recent update timestamp when returned."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "A Webflow site summary."
            },
            "description": "Webflow sites returned by the API."
          }
        },
        "additionalProperties": false,
        "required": [
          "sites"
        ],
        "description": "Sites available to the connected Webflow token."
      }
    },
    {
      "id": "webflow.publish_collection_items",
      "service": "webflow",
      "name": "publish_collection_items",
      "description": "Publish one or more Webflow CMS collection items.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow collection identifier."
          },
          "itemIds": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A Webflow CMS item identifier."
            },
            "description": "Collection item identifiers to publish.",
            "minItems": 1
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId",
          "itemIds"
        ],
        "description": "Input parameters for publishing Webflow CMS collection items."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "result": {
            "type": "object",
            "properties": {
              "publishedItemIds": {
                "type": "array",
                "items": {
                  "type": "string",
                  "description": "A published CMS item identifier."
                },
                "description": "CMS item identifiers that Webflow reported as published."
              },
              "errors": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {},
                  "additionalProperties": true,
                  "description": "Raw object data returned by Webflow."
                },
                "description": "Publish errors returned by Webflow."
              }
            },
            "additionalProperties": true,
            "description": "The Webflow publish response."
          }
        },
        "additionalProperties": false,
        "required": [
          "result"
        ],
        "description": "The normalized CMS item publish result."
      }
    },
    {
      "id": "webflow.publish_site",
      "service": "webflow",
      "name": "publish_site",
      "description": "Publish a Webflow site to all domains or selected custom domains and return Webflow's publish result.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "siteId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow site identifier."
          },
          "customDomains": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "description": "A Webflow custom domain identifier."
            },
            "description": "Optional custom domain identifiers to publish. Omit to publish all domains.",
            "minItems": 1
          },
          "publishToWebflowSubdomain": {
            "type": "boolean",
            "description": "Whether to publish to the default Webflow subdomain."
          }
        },
        "additionalProperties": false,
        "required": [
          "siteId"
        ],
        "description": "Input parameters for publishing a Webflow site."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "result": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "Raw object data returned by Webflow."
          }
        },
        "additionalProperties": false,
        "required": [
          "result"
        ],
        "description": "The normalized Webflow site publish result."
      }
    },
    {
      "id": "webflow.update_collection_item",
      "service": "webflow",
      "name": "update_collection_item",
      "description": "Update a draft or live item in a Webflow CMS collection.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow collection identifier."
          },
          "itemId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow CMS item identifier."
          },
          "fieldData": {
            "type": "object",
            "properties": {},
            "additionalProperties": true,
            "description": "CMS field values keyed by Webflow field slug. Include the fields required by the collection."
          },
          "isArchived": {
            "type": "boolean",
            "description": "Whether the item should be archived."
          },
          "isDraft": {
            "type": "boolean",
            "description": "Whether the item should remain a draft."
          },
          "cmsLocaleId": {
            "type": "string",
            "minLength": 1,
            "description": "The unique Webflow CMS locale identifier."
          },
          "live": {
            "type": "boolean",
            "description": "Whether to update the item on the live site."
          }
        },
        "additionalProperties": false,
        "required": [
          "collectionId",
          "itemId",
          "fieldData"
        ],
        "description": "Input parameters for updating a Webflow CMS collection item."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "item": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "The unique CMS item identifier."
              },
              "cmsLocaleId": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The CMS locale identifier for this item."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastPublished": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent publish timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "lastUpdated": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The most recent update timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "createdOn": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "The creation timestamp when returned."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "isArchived": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the item is archived."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "isDraft": {
                "anyOf": [
                  {
                    "type": "boolean",
                    "description": "Whether the item is a draft."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "fieldData": {
                "type": "object",
                "properties": {},
                "additionalProperties": true,
                "description": "Raw object data returned by Webflow."
              }
            },
            "additionalProperties": true,
            "description": "A Webflow CMS item."
          }
        },
        "additionalProperties": false,
        "required": [
          "item"
        ],
        "description": "The updated CMS item."
      }
    }
  ]
}
