feat: Add new schema files (no-changelog) (#13062)

This commit is contained in:
Jon
2025-02-05 12:48:45 +00:00
committed by GitHub
parent 32f2ac6773
commit 2a33d07aa0
30 changed files with 4742 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
{
"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"
]
}