We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a JSON Developer I can merge a JSON instance into another JSON instance to create a single instance
Acceptance Criteria
Definitions:
Primary
Secondary
primary
JSONObject properties
secondary
Accept Secondary
Accept Primary
Append
[key name]_append
JSONArray items
Insert Before
Insert After
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As a JSON Developer I can merge a JSON instance into another JSON instance to create a single instance
Acceptance Criteria
Definitions:
Primary
: The JSON instance that will be used as the base instance for comparisonSecondary
: The JSON instance the contains data to be pulled into theprimary
instance.JSONObject properties
primary
andsecondary
instances, i.e., , the data from thesecondary
instance is pulled into theprimary
Accept Secondary
: The value of thesecondary
instance overrides theprimary
instanceAccept Primary
: The value of theprimary
instance remainsAppend
: Append the value of thesecondary
using a new key (named[key name]_append
)JSONArray items
Insert Before
: Insert the conflict item in thesecondary
array into theprimary
just before the item in the current positionInsert After
: Insert the conflict item from thesecondary
array into theprimary
just after the item in the current positionAppend
: Append the conflict item from thesecondary
array to the end of theprimary
arrayThe text was updated successfully, but these errors were encountered: