Samsung · Schema
Scene
A SmartThings scene (saved device state configuration).
Consumer ElectronicsDeveloper PlatformIoTMobileSmart HomeSmart TVWearables
Properties
| Name | Type | Description |
|---|---|---|
| sceneId | string | Unique scene identifier. |
| sceneName | string | Scene name. |
| sceneIcon | string | Scene icon identifier. |
| sceneColor | string | Scene color theme. |
| locationId | string | Location this scene belongs to. |
| createdBy | string | User ID who created the scene. |
| createdDate | string | Scene creation timestamp. |
| lastUpdatedDate | string | Scene last updated timestamp. |
| lastExecutedDate | string | Timestamp of last scene execution. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Scene",
"title": "Scene",
"type": "object",
"description": "A SmartThings scene (saved device state configuration).",
"properties": {
"sceneId": {
"type": "string",
"description": "Unique scene identifier."
},
"sceneName": {
"type": "string",
"description": "Scene name."
},
"sceneIcon": {
"type": "string",
"description": "Scene icon identifier."
},
"sceneColor": {
"type": "string",
"description": "Scene color theme."
},
"locationId": {
"type": "string",
"format": "uuid",
"description": "Location this scene belongs to."
},
"createdBy": {
"type": "string",
"description": "User ID who created the scene."
},
"createdDate": {
"type": "string",
"format": "date-time",
"description": "Scene creation timestamp."
},
"lastUpdatedDate": {
"type": "string",
"format": "date-time",
"description": "Scene last updated timestamp."
},
"lastExecutedDate": {
"type": "string",
"format": "date-time",
"description": "Timestamp of last scene execution."
}
}
}