schemas.schema-form.json Maven / Gradle / Ivy
{
"type": "object",
"title": "http",
"properties": {
"url": {
"title": "URL",
"description": "Url to the file you want to fetch",
"type": "string"
},
"useSystemProxy": {
"title": "Use system proxy",
"description": "Use the system proxy configured by your administrator.",
"type": "boolean"
},
"autoFetch": {
"title": "Auto Fetch",
"description": "Trigger periodic update",
"type": "boolean",
"default": false
},
"fetchCron": {
"title": "Update frequency",
"description": "Define update frequency using Crontab pattern.
Note: Platform administrator may have configure a max frequency that you cannot exceed",
"type": "string"
}
},
"required": [
"url"
],
"if": {
"properties": {
"autoFetch": { "const": true }
}
},
"then": { "required": ["fetchCron"] }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy