Skip to content
This repository was archived by the owner on Nov 26, 2023. It is now read-only.

Commit db9abe3

Browse files
committed
Update README.md
1 parent 60470f2 commit db9abe3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

system/user/addons/json/README.md

+21
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,27 @@ The data will be the Unix timestamp, accurate to milliseconds. This is because t
185185
your_date_field: 1385661660000
186186
```
187187

188+
##### File Grid
189+
190+
The data will include an array of File Grid rows, including the row_id, the url to the file and the column names:
191+
192+
```
193+
"your_grid_field": [
194+
{
195+
"row_id": 1,
196+
"file": "the-url-to-your-file",
197+
"my_col_name": "foo",
198+
"other_col_name": "bar"
199+
},
200+
{
201+
"row_id": 2,
202+
"file": "the-url-to-your-file",
203+
"my_col_name": "baz",
204+
"other_col_name": "qux"
205+
}
206+
]
207+
```
208+
188209
##### Fluid
189210

190211
The data will include an array of custom fields ordered by Fluid field order.

0 commit comments

Comments
 (0)