Input ValueDocumentation Index
Fetch the complete documentation index at: https://docs.apinizer.com/llms.txt
Use this file to discover all available pages before exploring further.
You can add new key expressions to JSON data and remove existing key expressions. This page includes an example of adding and removing keys using remove and default operations together.
Input ValueDocumentation Index
Fetch the complete documentation index at: https://docs.apinizer.com/llms.txt
Use this file to discover all available pages before exploring further.
{
"Rating": 1,
"SecondaryRatings": {
"Design": 4,
"Price": 2,
"RatingDimension3": 1
}
}
Rating field is removed with remove operation, then the NewlyAddedField field is added with default operation.[
{
"operation": "remove",
"spec": {
"Rating": ""
}
},
{
"operation": "default",
"spec": {
"NewlyAddedField": "123"
}
}
]
{
"SecondaryRatings" : {
"Design" : 4,
"Price" : 2,
"RatingDimension3" : 1
},
"NewlyAddedField" : "123"
}
Was this page helpful?