action nlpcloud_read_sentence_dependencies_v1_en_core_web_sm_sentence_dependenci { label: "Read Sentence Dependencies" provider: nlpcloud method: POST path: "/v1/en_core_web_sm/sentence-dependencies" encoding: json input: { type: "object" required: ["text"] properties: { text: { type: "string" } } } output: { type: "object" required: ["sentence_dependencies"] properties: { sentence_dependencies: { type: "array" items: { type: "object" required: ["sentence", "dependencies"] properties: { dependencies: { type: "object" required: ["words", "arcs"] properties: { arcs: { type: "array" items: { type: "object" required: ["start", "end", "label", "text", "dir"] properties: { dir: { type: "string" } end: { type: "integer" } label: { type: "string" } start: { type: "integer" } text: { type: "string" } } } } words: { type: "array" items: { type: "object" required: ["text", "tag"] properties: { tag: { type: "string" } text: { type: "string" } } } } } } sentence: { type: "string" } } } } } } }