Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Create config.schema.json #110

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"pluginAlias": "Fritz!Box",
"pluginType": "platform",
"singular": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"required": true
},
"username": {
"title": "User name",
"type": "string",
"required": true,
"description": "Your Fritz!Box user name."
},
"password": {
"title": "Password",
"type": "string",
"required": true,
"description": "Your Fritz!Box password"
},
"url": {
"title": "URL",
"type": "string",
"required" : true,
"default": "http://fritz.box",
"description": "URL of your Fritz!Box"
},
"interval": {
"title": "Interval",
"type": "integer",
"default": 60,
"description": "Interval"
},
"options": {
"title": "Options",
"type": "boolean",
"description": "Use StrictSSL of your Fritz!Box"
}
}
}
}