mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat(editor): Display schema preview for unexecuted nodes (#12901)
This commit is contained in:
@@ -1,110 +1,51 @@
|
||||
{
|
||||
"type": "object",
|
||||
"value": [
|
||||
{
|
||||
"key": "account",
|
||||
"type": "Object",
|
||||
"value": [
|
||||
{
|
||||
"key": "accountUrl",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.accountUrl"
|
||||
"properties": {
|
||||
"account": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"accountUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "createdTimestamp",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.createdTimestamp"
|
||||
"createdTimestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "id",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.id"
|
||||
"updatedTimestamp": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "links",
|
||||
"type": "Object",
|
||||
"value": [
|
||||
{
|
||||
"key": "accountContacts",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.links.accountContacts"
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"accountContacts": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "accountCustomFieldData",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.links.accountCustomFieldData"
|
||||
"accountCustomFieldData": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "contactEmails",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.links.contactEmails"
|
||||
"contactEmails": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "emailActivities",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.links.emailActivities"
|
||||
"emailActivities": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "notes",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.links.notes"
|
||||
"notes": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "owner",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.links.owner"
|
||||
},
|
||||
{
|
||||
"key": "required",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.links.required"
|
||||
"owner": {
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"path": ".account.links"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key": "name",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.name"
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
{
|
||||
"key": "owner",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.owner"
|
||||
},
|
||||
{
|
||||
"key": "updatedTimestamp",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.updatedTimestamp"
|
||||
},
|
||||
{
|
||||
"key": "required",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".account.required"
|
||||
"owner": {
|
||||
"type": "string"
|
||||
}
|
||||
],
|
||||
"path": ".account"
|
||||
},
|
||||
{
|
||||
"key": "required",
|
||||
"type": "string",
|
||||
"value": "",
|
||||
"path": ".required"
|
||||
}
|
||||
}
|
||||
],
|
||||
"path": ""
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,47 +1,36 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspaces": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"name",
|
||||
"resource_type"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"gid",
|
||||
"email",
|
||||
"name",
|
||||
"photo",
|
||||
"resource_type",
|
||||
"workspaces"
|
||||
]
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"email": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
},
|
||||
"workspaces": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"gid": {
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"resource_type": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["gid", "name", "resource_type"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["gid", "email", "name", "photo", "resource_type", "workspaces"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user