home Homebuild Toolsbug_report Errorsmenu_book Guideslightbulb Tipssmart_toy Promptsextension Extensionsfolder_open Resourcesinfo About
search
transform JSON → Apex

              
            

How It Works

data_object

Parse JSON structure

Analyzes key names, value types, nested objects, and arrays recursively.

code

Map to Apex types

Maps JSON types to Apex: string → String, number → Integer/Decimal, boolean → Boolean, object → inner class.

auto_fix_high

Generate typed class

Outputs a clean Apex wrapper class with inner classes, proper types, and a deserialization method.

Type Mapping Reference

JSON Type Apex Type Example
stringString"hello"
integerInteger42
decimalDecimal3.14
booleanBooleantrue
objectInner Class{"key": "val"}
arrayList<T>[1, 2, 3]
nullObjectnull