|
34 | 34 | "description": "Property of the relationship to use for weighting. If not specified, all relationships are treated equally.", |
35 | 35 | }, |
36 | 36 | "sourceNodes": { |
37 | | - "description": "The nodes or node-bias pairs to use for computing Personalized Article Rank. To use different bias for different source nodes, use the syntax: [[node1, bias1], [node2, bias2], ...]", |
38 | | - "anyOf": [ |
39 | | - {"type": "string", "description": "Single node"}, |
40 | | - { |
41 | | - "type": "array", |
42 | | - "items": {"type": "string"}, |
43 | | - "description": "List of nodes", |
44 | | - }, |
45 | | - { |
46 | | - "type": "array", |
47 | | - "items": { |
48 | | - "type": "array", |
49 | | - "prefixItems": [{"type": "string"}, {"type": "number"}], |
50 | | - "minItems": 2, |
51 | | - "maxItems": 2, |
52 | | - }, |
53 | | - "description": "List of [node, bias] pairs", |
54 | | - }, |
55 | | - ], |
| 37 | + "description": "The nodes to use for computing Personalized Article Rank.", |
| 38 | + "type": "array", |
| 39 | + "items": {"type": "string"}, |
56 | 40 | }, |
57 | 41 | "scaler": { |
58 | 42 | "type": "string", |
|
249 | 233 | "nodeLabels": { |
250 | 234 | "type": "array", |
251 | 235 | "items": {"type": "string"}, |
252 | | - "description": "The node labels used to project and run Degree Centrality on. Nodes with different node labels will be ignored. Do not specify to run for all nodes", |
| 236 | + "description": "The node labels used to project and run Degree Centrality on. This is used to filter the graph to run the algorithm on. Nodes with other node labels will be hidden and ignored. Include all node labels for nodes that you want to run the algorithm on.", |
253 | 237 | }, |
254 | 238 | "relTypes": { |
255 | 239 | "type": "array", |
|
314 | 298 | "description": "Property of the relationship to use for weighting. If not specified, all relationships are treated equally.", |
315 | 299 | }, |
316 | 300 | "sourceNodes": { |
317 | | - "description": "The nodes or node-bias pairs to use for computing Personalized Eigenvector Centrality. To use different bias for different source nodes, use the syntax: [[node1, bias1], [node2, bias2], ...]", |
318 | | - "anyOf": [ |
319 | | - {"type": "string", "description": "Single node"}, |
320 | | - { |
321 | | - "type": "array", |
322 | | - "items": {"type": "string"}, |
323 | | - "description": "List of nodes", |
324 | | - }, |
325 | | - { |
326 | | - "type": "array", |
327 | | - "items": { |
328 | | - "type": "array", |
329 | | - "prefixItems": [{"type": "string"}, {"type": "number"}], |
330 | | - "minItems": 2, |
331 | | - "maxItems": 2, |
332 | | - }, |
333 | | - "description": "List of [node, bias] pairs", |
334 | | - }, |
335 | | - ], |
| 301 | + "description": "The nodes to use for computing Personalized Eigenvector Centrality.", |
| 302 | + "type": "array", |
| 303 | + "items": {"type": "string"}, |
336 | 304 | }, |
337 | 305 | "scaler": { |
338 | 306 | "type": "string", |
|
381 | 349 | "description": "Minimum change in scores between iterations. If all scores change less than the tolerance value the result is considered stable and the algorithm returns.", |
382 | 350 | }, |
383 | 351 | "sourceNodes": { |
384 | | - "description": "The nodes or node-bias pairs to use for computing Personalized PageRank. To use different bias for different source nodes, use the syntax: [[node1, bias1], [node2, bias2], ...]", |
385 | | - "anyOf": [ |
386 | | - {"type": "string", "description": "Single node"}, |
387 | | - { |
388 | | - "type": "array", |
389 | | - "items": {"type": "string"}, |
390 | | - "description": "List of nodes", |
391 | | - }, |
392 | | - { |
393 | | - "type": "array", |
394 | | - "items": { |
395 | | - "type": "array", |
396 | | - "prefixItems": [{"type": "string"}, {"type": "number"}], |
397 | | - "minItems": 2, |
398 | | - "maxItems": 2, |
399 | | - }, |
400 | | - "description": "List of [node, bias] pairs", |
401 | | - }, |
402 | | - ], |
| 352 | + "description": "The nodes to use for computing Personalized PageRank.", |
| 353 | + "type": "array", |
| 354 | + "items": {"type": "string"}, |
403 | 355 | }, |
404 | 356 | }, |
405 | 357 | "required": [], |
|
0 commit comments