parse_reference
Extract components like registry, repository, tag, and digest from a container reference string, enabling structured analysis of container image details.
Instructions
Parse a reference string into its components of registry, repository, tag, and digest.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reference | Yes | reference string |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"reference": {
"description": "reference string",
"type": "string"
}
},
"required": [
"reference"
],
"type": "object"
}