schemas.urn:jsonschema:io:gravitee:policy:xslt:configuration:XSLTTransformationPolicyConfiguration.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gravitee-policy-xslt Show documentation
Show all versions of gravitee-policy-xslt Show documentation
Description of the XSLT Gravitee Policy
{
"type" : "object",
"id" : "urn:jsonschema:io:gravitee:policy:xslt:configuration:XSLTTransformationPolicyConfiguration",
"properties" : {
"stylesheet" : {
"title": "XSLT stylesheet",
"type" : "string",
"x-schema-form": {
"type": "textarea",
"placeholder": "Place your XSLT stylesheet here"
}
},
"parameters" : {
"type" : "array",
"title": "XSLT parameters",
"items" : {
"type" : "object",
"id" : "urn:jsonschema:io:gravitee:policy:xslt:configuration:XSLTParameter",
"title": "Parameter",
"properties" : {
"name" : {
"title": "Name",
"type" : "string"
},
"value" : {
"title": "Value",
"type" : "string"
}
},
"required": [
"name",
"value"
]
}
}
},
"required": [
"stylesheet"
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy