When you paste JSON into a ticket, chat, or public issue, remove secrets and personal data first. Keep the structure so others can still debug.
Use consistent placeholders:
{
"email": "REDACTED_EMAIL",
"token": "REDACTED_TOKEN",
"address": {
"line1": "REDACTED",
"zip": "REDACTED"
}
}
If you need the same value to match across multiple places, use stable placeholders:
{
"userId": "USER_001",
"ownerId": "USER_001"
}
If a field is numeric, keep it numeric if the type matters:
{
"accountId": 123456,
"accountId_redacted": 111111
}
token, secret, authorization, cookieRelated: Privacy & safety tips