├── .gitignore ├── Contributing.md ├── JSONAdditions.fmp12 ├── LICENSE ├── README.md ├── docs.md └── functions ├── JSON.ArrayConcat.fmfn ├── JSON.ArrayFromRelated.fmfn ├── JSON.ArrayLength.fmfn ├── JSON.ArraySort.fmfn ├── JSON.ContainsProperty.fmfn ├── JSON.FilterByExpression.fmfn ├── JSON.Format.fmfn ├── JSON.GetValuesAtPath.fmfn ├── JSON.IsValid.fmfn ├── JSON.Merge.fmfn ├── JSON.Pluck.From.fmfn ├── JSON.Pluck.Prop.fmfn ├── JSON.Pluck.fmfn ├── JSON.Push.fmfn ├── JSON.Transform.ISODates.fmfn ├── JSON.Transform.This.fmfn ├── JSON.Transform.fmfn └── JSON.Transformation.fmfn /.gitignore: -------------------------------------------------------------------------------- 1 | import.log 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/Contributing.md -------------------------------------------------------------------------------- /JSONAdditions.fmp12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/JSONAdditions.fmp12 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/README.md -------------------------------------------------------------------------------- /docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/docs.md -------------------------------------------------------------------------------- /functions/JSON.ArrayConcat.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.ArrayConcat.fmfn -------------------------------------------------------------------------------- /functions/JSON.ArrayFromRelated.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.ArrayFromRelated.fmfn -------------------------------------------------------------------------------- /functions/JSON.ArrayLength.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.ArrayLength.fmfn -------------------------------------------------------------------------------- /functions/JSON.ArraySort.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.ArraySort.fmfn -------------------------------------------------------------------------------- /functions/JSON.ContainsProperty.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.ContainsProperty.fmfn -------------------------------------------------------------------------------- /functions/JSON.FilterByExpression.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.FilterByExpression.fmfn -------------------------------------------------------------------------------- /functions/JSON.Format.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Format.fmfn -------------------------------------------------------------------------------- /functions/JSON.GetValuesAtPath.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.GetValuesAtPath.fmfn -------------------------------------------------------------------------------- /functions/JSON.IsValid.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.IsValid.fmfn -------------------------------------------------------------------------------- /functions/JSON.Merge.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Merge.fmfn -------------------------------------------------------------------------------- /functions/JSON.Pluck.From.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Pluck.From.fmfn -------------------------------------------------------------------------------- /functions/JSON.Pluck.Prop.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Pluck.Prop.fmfn -------------------------------------------------------------------------------- /functions/JSON.Pluck.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Pluck.fmfn -------------------------------------------------------------------------------- /functions/JSON.Push.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Push.fmfn -------------------------------------------------------------------------------- /functions/JSON.Transform.ISODates.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Transform.ISODates.fmfn -------------------------------------------------------------------------------- /functions/JSON.Transform.This.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Transform.This.fmfn -------------------------------------------------------------------------------- /functions/JSON.Transform.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Transform.fmfn -------------------------------------------------------------------------------- /functions/JSON.Transformation.fmfn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/fm-json-additions/HEAD/functions/JSON.Transformation.fmfn --------------------------------------------------------------------------------