jfrog_set_folder_property
Define custom properties for a folder in Artifactory, with optional recursive application to sub-folders. Use this tool to organize and manage folder metadata effectively.
Instructions
Set properties on a folder in Artifactory, with optional recursive application
Input Schema
Name | Required | Description | Default |
---|---|---|---|
folderPath | Yes | Path to the folder where properties should be set | |
properties | Yes | Key-value pairs of properties to set | |
recursive | No | Whether to apply properties recursively to sub-folders |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"folderPath": {
"description": "Path to the folder where properties should be set",
"type": "string"
},
"properties": {
"additionalProperties": {
"type": "string"
},
"description": "Key-value pairs of properties to set",
"type": "object"
},
"recursive": {
"default": false,
"description": "Whether to apply properties recursively to sub-folders",
"type": "boolean"
}
},
"required": [
"folderPath",
"properties"
],
"type": "object"
}