📋 JSON Biçimlendirici ve Doğrulayıcı

JSON verilerini sözdizimi analizi ile biçimlendirin, doğrulayın ve güzelleştirin — tamamen istemci tarafında.

JSON Nedir?

JSON (JavaScript Object Notation), insanların okuması ve yazması kolay olan hafif bir veri değişim formatıdır. API'ler ve yapılandırma dosyaları için fiili standarttır.

Yaygın JSON Hataları

  • Sondaki virgüller: JSON, son öğeden sonra virgüle izin vermez JSON does not allow trailing commas after the last element in arrays or objects.
  • Tek tırnaklar: JSON, dizeler ve anahtarlar için çift tırnak gerektirir JSON requires double quotes for strings, not single quotes.
  • Tırnaksız anahtarlar: JSON'daki tüm anahtarlar tırnaklı dize olmalıdır All keys in JSON must be enclosed in double quotes.
  • Yorumlar: JSON, yorumları desteklemez (// veya /* */) JSON does not support comments (// or /* */).

Sıkça Sorulan Sorular

Geçersiz JSON'a ne sebep olur?

Yaygın sorunlar: sondaki virgüller, tek tırnaklar (çift kullanın), tırnaksız anahtarlar, öğeler arasında eksik virgüller ve yanlış iç içe geçme.

Verilerim güvende mi?

Evet. Bu araç JSON'u tamamen tarayıcınızda işler. Hiçbir veri sunucuya gönderilmez.

Parses, formats, and validates JSON data with proper indentation, syntax error detection, and tree view for complex structures.

Key Facts

  • JSON is language-independent despite JavaScript origin
  • 70%+ of public APIs use JSON
  • Supports 6 data types: string, number, object, array, boolean, null
  • Formalized in RFC 7159 (2014)

Frequently Asked Questions

What is JSON?

JavaScript Object Notation — lightweight data interchange format. Standard for web APIs, configs, and data storage.

How to validate JSON?

Must start with { or [, use double quotes, no trailing commas, properly nested. Paste here to validate.

JSON vs XML?

JSON is more compact, readable, and faster to parse. JSON standard for REST APIs, XML for SOAP services.