chore: NODE-2547 - Generate Schema Files (no-changelog) (#13873)

This commit is contained in:
Jon
2025-03-18 15:19:10 +00:00
committed by GitHub
parent e0fd50554d
commit 31c0575999
819 changed files with 27463 additions and 15590 deletions

View File

@@ -0,0 +1,51 @@
{
"type": "object",
"properties": {
"entity_id": {
"type": "string"
},
"state": {
"type": "string"
},
"attributes": {
"type": "object",
"properties": {
"friendly_name": {
"type": "string"
}
},
"required": [
"friendly_name"
]
},
"last_changed": {
"type": "string"
},
"last_reported": {
"type": "string"
},
"last_updated": {
"type": "string"
},
"context": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"parent_id": {
"type": "null"
},
"user_id": {
"type": "string"
}
},
"required": [
"id",
"parent_id",
"user_id"
]
}
},
"version": 1
}

View File

@@ -13,14 +13,14 @@
"friendly_name": {
"type": "string"
},
"state_class": {
"type": "string"
},
"unit_of_measurement": {
"type": "string"
},
"device_class": {
"type": "string"
},
"state_class": {
"type": "string"
}
},
"required": [
@@ -57,5 +57,6 @@
"last_changed",
"last_updated",
"context"
]
],
"version": 1
}

View File

@@ -22,12 +22,6 @@
"type": "string"
}
},
"user_id": {
"type": "string"
},
"friendly_name": {
"type": "string"
},
"latitude": {
"type": "number"
},
@@ -39,6 +33,15 @@
},
"source": {
"type": "string"
},
"user_id": {
"type": "string"
},
"friendly_name": {
"type": "string"
},
"entity_picture": {
"type": "string"
}
},
"required": [
@@ -82,5 +85,6 @@
"last_reported",
"last_updated",
"context"
]
],
"version": 1
}

View File

@@ -1,48 +1,49 @@
{
"type": "object",
"properties": {
"entity_id": {
"type": "string"
},
"state": {
"type": "string"
},
"last_changed": {
"type": "string"
},
"last_reported": {
"type": "string"
},
"last_updated": {
"type": "string"
},
"context": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"parent_id": {
"type": "null"
},
"user_id": {
"type": "string"
}
},
"required": [
"id",
"parent_id",
"user_id"
]
}
},
"required": [
"entity_id",
"state",
"attributes",
"last_changed",
"last_reported",
"last_updated",
"context"
]
"type": "object",
"properties": {
"entity_id": {
"type": "string"
},
"state": {
"type": "string"
},
"last_changed": {
"type": "string"
},
"last_reported": {
"type": "string"
},
"last_updated": {
"type": "string"
},
"context": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"parent_id": {
"type": "null"
},
"user_id": {
"type": "string"
}
},
"required": [
"id",
"parent_id",
"user_id"
]
}
},
"required": [
"entity_id",
"state",
"attributes",
"last_changed",
"last_reported",
"last_updated",
"context"
],
"version": 1
}