blob: e328ba4e0e4ec12838faf0d2417d8d67e6292275 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LSP Image Resource Mapping contributions to package.json",
"type": "object",
"properties": {
"contributes": {
"type": "object",
"properties": {
"netbeans.iconMapping" : {
"type" : "array",
"description" : "Defines replacements for image URIs for vscode-provided product icons",
"items": {
"type" : "object",
"properties": {
"uriExpression" : {
"type" : "string",
"description": "Regular expression that must fully match the resource URI"
},
"valueMatch" : {
"type" : "array",
"description": "Additional value(s) required for the replacement to match.",
"items": {
"type" : "string",
"description": "Regular expression that describes the required value"
}
},
"iconPath" : {
"type" : "string",
"description" : "Path to the replacement icon"
},
"codeicon" : {
"type" : "string",
"description" : "codeicon identifier that will be used instead of the server-provided image"
}
}
}
}
}
}
}
}