FilterByKey
Keep or remove object keys by name
Input
{
"users": [
{
"id": 1,
"name": " Alice ",
"email": "alice@example.com",
"status": "active",
"score": 82,
"orders": [
{
"id": "o-1",
"total": 120,
"createdAt": "2024-01-01T10:00:00Z",
"shippedAt": "2024-01-03T10:00:00Z"
},
{
"id": "o-2",
"total": 40,
"createdAt": "2024-01-05T09:00:00Z",
"shippedAt": "2024-01-06T09:30:00Z"
}
],
"tags": [
"vip",
"newsletter",
"vip"
]
},
{
"id": 2,
"name": "Bob",
"email": "bob@example.com",
"status": "inactive",
"score": 67,
"orders": [
{
"id": "o-3",
"total": 20,
"createdAt": "2024-02-01T12:00:00Z",
"shippedAt": "2024-02-01T14:00:00Z"
}
],
"tags": [
"trial"
]
}
],
"metrics": {
"revenue": 160.5,
"vat": 0.24
},
"meta": {
"generatedAt": "2024-03-01T08:00:00Z",
"region": "eu"
}
}Config
{
"mode": "keep",
"keys": [
"users",
"meta"
]
}Output
{
"users": [
{
"id": 1,
"name": " Alice ",
"email": "alice@example.com",
"status": "active",
"score": 82,
"orders": [
{
"id": "o-1",
"total": 120,
"createdAt": "2024-01-01T10:00:00Z",
"shippedAt": "2024-01-03T10:00:00Z"
},
{
"id": "o-2",
"total": 40,
"createdAt": "2024-01-05T09:00:00Z",
"shippedAt": "2024-01-06T09:30:00Z"
}
],
"tags": [
"vip",
"newsletter",
"vip"
]
},
{
"id": 2,
"name": "Bob",
"email": "bob@example.com",
"status": "inactive",
"score": 67,
"orders": [
{
"id": "o-3",
"total": 20,
"createdAt": "2024-02-01T12:00:00Z",
"shippedAt": "2024-02-01T14:00:00Z"
}
],
"tags": [
"trial"
]
}
],
"meta": {
"generatedAt": "2024-03-01T08:00:00Z",
"region": "eu"
}
}