verify_namespace
Check if a GitLab namespace path exists to ensure proper project organization and access before creating repositories or managing permissions.
Instructions
Verify if a namespace path exists
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Namespace path to verify |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Namespace path to verify",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}