forked from SmartThingsCommunity/SmartThingsPublic
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SmartThingsCommunity#36508 from SmartThingsCommuni…
…ty/acceptance Rolling up acceptance to production for deploy
- Loading branch information
Showing
17 changed files
with
491 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
...rtthings/smartweather-station-tile.src/capability.stsmartweather.apparentTemperature.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"name": "Apparent Temperature", | ||
"attributes": { | ||
"feelsLike": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"title": "TemperatureValue", | ||
"type": "number", | ||
"minimum": -460, | ||
"maximum": 10000 | ||
}, | ||
"unit": { | ||
"type": "string", | ||
"enum": [ | ||
"F", | ||
"C" | ||
] | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value", | ||
"unit" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
91 changes: 91 additions & 0 deletions
91
...smartthings/smartweather-station-tile.src/capability.stsmartweather.astronomicalData.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"name": "Astronomical Data", | ||
"attributes": { | ||
"localSunrise": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"localSunset": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"sunriseDate": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"sunsetDate": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"city": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"timeZoneOffset": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...es/smartthings/smartweather-station-tile.src/capability.stsmartweather.precipitation.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "Precipitation", | ||
"attributes": { | ||
"percentPrecip": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"title": "IntegerPercent", | ||
"type": "integer", | ||
"minimum": 0, | ||
"maximum": 100 | ||
}, | ||
"unit": { | ||
"type": "string", | ||
"enum": [ | ||
"%" | ||
], | ||
"default": "%" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...pes/smartthings/smartweather-station-tile.src/capability.stsmartweather.smartWeather.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "Smart Weather", | ||
"attributes": { | ||
"lastUpdate": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...hings/smartweather-station-tile.src/capability.stsmartweather.ultravioletDescription.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "Ultraviolet Description", | ||
"attributes": { | ||
"uvDescription": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
...pes/smartthings/smartweather-station-tile.src/capability.stsmartweather.weatherAlert.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"name": "Weather Alert", | ||
"attributes": { | ||
"alert": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"alertKeys": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
63 changes: 63 additions & 0 deletions
63
.../smartthings/smartweather-station-tile.src/capability.stsmartweather.weatherForecast.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
{ | ||
"name": "Weather Forecast", | ||
"attributes": { | ||
"forecastIcon": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"forecastToday": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"forecastTonight": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"forecastTomorrow": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
35 changes: 35 additions & 0 deletions
35
...s/smartthings/smartweather-station-tile.src/capability.stsmartweather.weatherSummary.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"name": "Weather Summary", | ||
"attributes": { | ||
"weather": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
}, | ||
"weatherIcon": { | ||
"schema": { | ||
"type": "object", | ||
"properties": { | ||
"value": { | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"value" | ||
] | ||
} | ||
} | ||
}, | ||
"commands": { | ||
} | ||
} |
Oops, something went wrong.