mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
chore: NODE-2547 - Generate Schema Files (no-changelog) (#13873)
This commit is contained in:
51
packages/nodes-base/nodes/HomeAssistant/__schema__/v1.0.0/service/call.json
vendored
Normal file
51
packages/nodes-base/nodes/HomeAssistant/__schema__/v1.0.0/service/call.json
vendored
Normal 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
|
||||
}
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user