![JAR search and dependency download from the Maven repository](/logo.png)
schema.xmlProvider.schema.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ta-sdk-spi Show documentation
Show all versions of ta-sdk-spi Show documentation
a tool to help a developer to create and build a middleware data collection plug-in, \
which can be used to gather the information of an application deployed on a middleware server,\
and provide modernization help and recommendations
The newest version!
{
"$id": "xmlProvider.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "IUssue match criteria used for xml file",
"type": "object",
"properties": {
"ruleType": {
"const": "xml"
},
"criteria": {
"anyOf":
[{"$ref": "#/definitions/detectDTDDef"},
{"$ref": "#/definitions/detectAttributeDef"},
{"$ref": "#/definitions/detectElementDef"}]
},
"occurrenceAttr": {
"type": "object"
}
},
"required": [
"ruleType",
"criteria",
"occurrenceAttr"
],
"definitions": {
"detectDTDDef": {
"type": "object",
"properties": {
"detectDTD":{
"type": "object",
"properties": {
"dtdName": {
"type": "array",
"items": {
"type": "string"
}
},
"xmlFile": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"dtdName",
"xmlFile"
]
}
},
"required":["detectDTD"]
},
"detectAttributeDef": {
"type": "object",
"properties": {
"detectAttribute":{
"type": "object",
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"attributeName": {
"type": "string"
},
"attributeValue": {
"type": "string"
},
"xmlFile": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"tags",
"xmlFile",
"attributeName"
]
}
},
"required": ["detectAttribute"]
},
"detectElementDef": {
"type": "object",
"properties": {
"detectElement":{
"type":"object",
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"xmlFile": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"tags",
"xmlFile"
]
}
},
"required": ["detectElement"]
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy