-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintegration.yaml
More file actions
48 lines (45 loc) · 867 Bytes
/
integration.yaml
File metadata and controls
48 lines (45 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
"format:head":
- desc: returns a subset of the input data
pipeline: format:head 2
input:
- x: 1
- y: 2
- z: 3
output:
- x: 1
- y: 2
"format:fields":
- desc: returns the fields of an object
pipeline: format:fields
input:
x: 1
y: 2
z: 3
output:
- fields: [ x, y, z ]
"format:list":
- desc: can extract fields
pipeline: format:list name
input:
- name: geddy
- name: neil
- name: alex
output:
- body: alex, geddy, neil
"format:table":
- desc: generates a table string
pipeline: format:table x y
input:
- x: one
y: two
- x: uno
y: dos
output:
- body: |
+-----+-----+
| x | y |
+-----+-----+
| one | two |
| uno | dos |
+-----+-----+