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

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Zignature committed Nov 29, 2021
1 parent 60470f2 commit db9abe3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions system/user/addons/json/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,27 @@ The data will be the Unix timestamp, accurate to milliseconds. This is because t
your_date_field: 1385661660000
```

##### File Grid

The data will include an array of File Grid rows, including the row_id, the url to the file and the column names:

```
"your_grid_field": [
{
"row_id": 1,
"file": "the-url-to-your-file",
"my_col_name": "foo",
"other_col_name": "bar"
},
{
"row_id": 2,
"file": "the-url-to-your-file",
"my_col_name": "baz",
"other_col_name": "qux"
}
]
```

##### Fluid

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

0 comments on commit db9abe3

Please sign in to comment.