Netskope MCP Server

validateName

Input Schema

NameRequiredDescriptionDefault
nameYes
resourceTypeYesTypes of resources that can be validated
tagTypeNoTypes of resources that can be tagged

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "name": { "type": "string" }, "resourceType": { "description": "Types of resources that can be validated", "enum": [ "publisher", "private_app", "policy", "policy_group", "upgrade_profile" ], "type": "string" }, "tagType": { "description": "Types of resources that can be tagged", "enum": [ "publisher", "private_app" ], "type": "string" } }, "required": [ "resourceType", "name" ], "type": "object" }