get_org_package
Retrieve a specific package from an organization by specifying the organization name, package type, and package name. Works with npm, maven, rubygems, docker, nuget, and container packages.
Instructions
Get a package for an organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
org | Yes | Organization name | |
package_name | Yes | The name of the package | |
package_type | Yes | The type of package |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"org": {
"description": "Organization name",
"type": "string"
},
"package_name": {
"description": "The name of the package",
"type": "string"
},
"package_type": {
"description": "The type of package",
"enum": [
"npm",
"maven",
"rubygems",
"docker",
"nuget",
"container"
],
"type": "string"
}
},
"required": [
"org",
"package_type",
"package_name"
],
"type": "object"
}