get_layer_info
Retrieve comprehensive metadata for a specific layer in GeoServer by providing the workspace and layer name. Returns a dictionary with detailed layer information for analysis or integration.
Instructions
Get detailed information about a layer.
Args:
workspace: The workspace containing the layer
layer: The name of the layer
Returns:
Dict with layer metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
layer | Yes | ||
workspace | Yes |
Input Schema (JSON Schema)
{
"properties": {
"layer": {
"title": "Layer",
"type": "string"
},
"workspace": {
"title": "Workspace",
"type": "string"
}
},
"required": [
"workspace",
"layer"
],
"title": "get_layer_infoArguments",
"type": "object"
}