jfrog_get_specific_project
Retrieve detailed information about a specific project in the JFrog platform by providing the unique project key for streamlined project management and analysis.
Instructions
Get detailed information about a specific project in the JFrog platform
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_key | Yes | The unique key of the project to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"project_key": {
"description": "The unique key of the project to retrieve",
"type": "string"
}
},
"required": [
"project_key"
],
"type": "object"
}