2022-02-14 04:56:34 +01:00
|
|
|
export default {
|
2022-04-04 04:54:06 +02:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"icon": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"text": {},
|
|
|
|
"href": {
|
|
|
|
"type": "string"
|
2022-02-14 04:56:34 +01:00
|
|
|
},
|
2022-04-04 04:54:06 +02:00
|
|
|
"newTab": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"requirements": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"enum": [
|
|
|
|
"iframe",
|
|
|
|
"no-iframe",
|
|
|
|
"no-welcome-message",
|
|
|
|
"welcome-message"
|
|
|
|
],
|
2022-02-14 04:56:34 +01:00
|
|
|
"type": "string"
|
2022-04-04 04:54:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"href"
|
|
|
|
],
|
|
|
|
"definitions": {
|
|
|
|
"AndOrTagConfigJson": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"and": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"anyOf": [
|
|
|
|
{
|
|
|
|
"$ref": "#/definitions/AndOrTagConfigJson"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"or": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"anyOf": [
|
|
|
|
{
|
|
|
|
"$ref": "#/definitions/AndOrTagConfigJson"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-14 04:56:34 +01:00
|
|
|
}
|
2022-04-04 04:54:06 +02:00
|
|
|
},
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
2022-02-14 04:56:34 +01:00
|
|
|
}
|