JSONify array
Version updated for yakubique/jsonify-array to version v1.1.
- This action is used across all versions by ? repositories.
Go to the GitHub Marketplace to find the latest changes.
Release notes
JSONify array
Full Changelog: https://github.com/yakubique/jsonify-array/compare/v1...v1.1 Replace field in JSON with its JSON.stringify() version
Usage
- name: JSONify array
uses: yakubique/jsonify-array@v1
with:
input: |
[ { "obj": {"id": 1 } } ]
type: "nested-json"
key: "obj"
# [ { "obj": "{\"id\":1}" } ]
Inputs
INPUT | TYPE | REQUIRED | DEFAULT | DESCRIPTION |
---|---|---|---|---|
input | string | true | JSON to modify | |
type | string | false | "flat-json" | Type of input data ["flat-json", "nested-json"] (default: “flat-json”) |
key | string | false | If type="nested-json" - which key should be used | |
from_file | string | false | "false" | Load json from file |
to_file | string | false | "false" | Save result to file |
Outputs
OUTPUT | TYPE | DESCRIPTION |
---|---|---|
result | string | Filepath or JSON |