mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
chore: Add new schemas (no-changelog) (#13215)
This commit is contained in:
35
packages/nodes-base/nodes/Aws/Comprehend/__schema__/v1.0.0/text/detectSentiment.json
vendored
Normal file
35
packages/nodes-base/nodes/Aws/Comprehend/__schema__/v1.0.0/text/detectSentiment.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Sentiment": {
|
||||
"type": "string"
|
||||
},
|
||||
"SentimentScore": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"Mixed": {
|
||||
"type": "number"
|
||||
},
|
||||
"Negative": {
|
||||
"type": "number"
|
||||
},
|
||||
"Neutral": {
|
||||
"type": "number"
|
||||
},
|
||||
"Positive": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Mixed",
|
||||
"Negative",
|
||||
"Neutral",
|
||||
"Positive"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"Sentiment",
|
||||
"SentimentScore"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user