mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 11:02:17 +00:00
30 lines
531 B
JSON
30 lines
531 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://betternas.local/schemas/cloud-profile.schema.json",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"id",
|
|
"exportId",
|
|
"provider",
|
|
"baseUrl",
|
|
"path"
|
|
],
|
|
"properties": {
|
|
"id": {
|
|
"type": "string"
|
|
},
|
|
"exportId": {
|
|
"type": "string"
|
|
},
|
|
"provider": {
|
|
"const": "nextcloud"
|
|
},
|
|
"baseUrl": {
|
|
"type": "string"
|
|
},
|
|
"path": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|