mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
52
packages/nodes-base/nodes/Microsoft/OneDrive/__schema__/v1.0.0/file/share.json
vendored
Normal file
52
packages/nodes-base/nodes/Microsoft/OneDrive/__schema__/v1.0.0/file/share.json
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"@odata.context": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"roles": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"shareId": {
|
||||
"type": "string"
|
||||
},
|
||||
"hasPassword": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"link": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"webUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"scope": {
|
||||
"type": "string"
|
||||
},
|
||||
"preventsDownload": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"type",
|
||||
"webUrl"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"@odata.context",
|
||||
"id",
|
||||
"roles",
|
||||
"shareId",
|
||||
"hasPassword",
|
||||
"link"
|
||||
]
|
||||
}
|
||||
44
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/contact/get.json
vendored
Normal file
44
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/contact/get.json
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"@odata.context": {
|
||||
"type": "string"
|
||||
},
|
||||
"@odata.etag": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"emailAddresses": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"type": "string"
|
||||
},
|
||||
"address": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"name",
|
||||
"address"
|
||||
]
|
||||
}
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"businessPhones": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"@odata.context"
|
||||
]
|
||||
}
|
||||
13
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/sendAndWait.json
vendored
Normal file
13
packages/nodes-base/nodes/Microsoft/Outlook/__schema__/v2.0.0/message/sendAndWait.json
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"data": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"text": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
42
packages/nodes-base/nodes/Microsoft/Teams/__schema__/v2.0.0/channel/get.json
vendored
Normal file
42
packages/nodes-base/nodes/Microsoft/Teams/__schema__/v2.0.0/channel/get.json
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"@odata.context": {
|
||||
"type": "string"
|
||||
},
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"createdDateTime": {
|
||||
"type": "string"
|
||||
},
|
||||
"displayName": {
|
||||
"type": "string"
|
||||
},
|
||||
"tenantId": {
|
||||
"type": "string"
|
||||
},
|
||||
"webUrl": {
|
||||
"type": "string"
|
||||
},
|
||||
"membershipType": {
|
||||
"type": "string"
|
||||
},
|
||||
"isArchived": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"@odata.context",
|
||||
"id",
|
||||
"createdDateTime",
|
||||
"displayName",
|
||||
"description",
|
||||
"isFavoriteByDefault",
|
||||
"email",
|
||||
"tenantId",
|
||||
"webUrl",
|
||||
"membershipType",
|
||||
"isArchived"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user