{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-appflow/refs/heads/main/json-schema/appflow-unregister-connector-request-schema.json",
"title": "UnregisterConnectorRequest",
"description": "UnregisterConnectorRequest schema from Amazon AppFlow API",
"type": "object",
"properties": {
"connectorLabel": {
"type": "string",
"maxLength": 256,
"example": "MyCustomConnector",
"description": "The label of the connector. The label is unique for each ConnectorRegistration in your Amazon Web Services account."
},
"forceDelete": {
"type": "boolean",
"example": false,
"description": "Indicates whether Amazon AppFlow should unregister the connector, even if it is currently in use in one or more connector profiles."
}
},
"required": [
"connectorLabel"
]
}