CrystalJson (SnowBank.Data.Json)
CrystalJson is a high-performance, allocation-conscious JSON stack. It is not System.Text.Json or Newtonsoft -
the type names look familiar (JsonObject, JsonArray, ...) but the API is different. The namespace is
SnowBank.Data.Json. Add using SnowBank.Data.Json;.
There are two layers, used together:
- The DOM -
JsonValueand its subtypes. A mutable-or-immutable tree you build, parse, navigate, and serialize. Use it for schemaless / dynamic JSON (config, arbitrary documents, change records). - The source generator -
[CrystalJsonConverter]+[CrystalSerializable(typeof(T))]generate fast, reflection-free, AOT-friendly converters for your POCOs, plus typed read-only / writable proxies over the DOM. Use it for your domain types.
CrystalJson (static class) is the entry point for serialize/parse/deserialize regardless of layer.
1. The JsonValue DOM
JsonValue is the abstract base. Concrete types and their JsonType:
| Type | JsonType |
Notes |
|---|---|---|
JsonObject |
Object |
key -> value map; mutable or read-only |
JsonArray |
Array |
ordered list; mutable or read-only |
JsonString |
String |
immutable |
JsonNumber |
Number |
immutable; small ints cached |
JsonBoolean |
Boolean |
immutable; only True/False singletons |
JsonDateTime |
DateTime |
immutable; serialized as an ISO string |
JsonNull |
Null |
three distinct singletons (below) |
The three nulls - this trips people up:
JsonNull.Null- an explicit null that was present in the JSON ({"x": null}).JsonNull.Missing- a field that was not there (obj["absent"]) or an out-of-range array read.JsonNull.Error- result of an invalid access (e.g. indexing a non-array).
All three report value.IsNull == true. Distinguish them with value.IsNullOrMissing(), value.IsMissing(),
value.IsError(), or ReferenceEquals(value, JsonNull.Missing). Parsing an empty/whitespace/null input gives
JsonNull.Missing; parsing the literal "null" gives JsonNull.Null.
Other useful singletons: JsonBoolean.True/False, JsonNumber.Zero/One, JsonObject.ReadOnly.Empty,
JsonArray.ReadOnly.Empty.
2. Read-only vs mutable - the core mental model
This is the most important concept. JsonObject and JsonArray can each be mutable or read-only
(value.IsReadOnly). Scalars (string/number/bool/null/datetime) are always read-only.
- Mutating a read-only container throws
InvalidOperationException("Cannot mutate ... because it is marked as read-only"). - A read-only value is safe to cache and share across threads.
- Conversions:
value.ToReadOnly()- returns self if already read-only, else a deep read-only copy.value.ToMutable()- returns a mutable copy (minimal copying); use before editing a possibly-frozen value.value.Copy(deep: true, readOnly: false)- explicit copy.value.Freeze()- freezes in place (only on values you exclusively own).
Build mutable, then optionally freeze; or build read-only directly with the ReadOnly factory.
using SnowBank.Data.Json;
// mutable, with the Create factories (the default pattern; implicit conversions cover scalars)
var obj = JsonObject.Create([
("name", "Alice"),
("age", 30),
("tags", JsonArray.Create("admin", "user")),
("point", JsonObject.Create([ ("x", 1), ("y", 2) ])),
]);
var arr = JsonArray.Create(1, 2, 3);
// (the collection-initializer form `new JsonObject { ["name"] = "Alice" }` compiles too, but the
// factories read identically in their mutable and ReadOnly forms, so prefer them)
// read-only directly (good for cached/shared constants): the ReadOnly twin, same call shape
var ro = JsonObject.ReadOnly.Create([
("name", "Alice"),
("age", 30),
("tags", JsonArray.ReadOnly.Create(["admin", "user"])),
]);
// from a CLR value (POCO, collection, primitive)
JsonValue v = JsonValue.FromValue(myPoco); // mutable
JsonValue rov = JsonValue.ReadOnly.FromValue(myPoco); // read-only
obj.ToReadOnly(); // freeze for caching
ro.ToMutable(); // get a mutable copy to edit
3. Reading and navigating
Indexers never throw on a missing key/index - they return JsonNull.Missing (or JsonNull.Error), so you can chain
safely:
JsonValue city = obj["user"]["address"]["city"]; // Missing if any hop is absent; no NRE
bool present = !obj["user"].IsNullOrMissing();
Read + convert in one step (the everyday API):
// Get<T>: optional with default, or required (throws JsonBindingException if null/missing/incompatible)
int age = obj.Get<int>("age", 0); // default if absent
string name = obj.Get<string>("name"); // throws if absent/null
Guid id = obj.Get<Guid>("id");
// TryGet
if (obj.TryGet<string>("email", out var email)) { /* ... */ }
// typed children
JsonObject child = obj.GetObjectOrEmpty("meta"); // never null; empty read-only object if absent
JsonArray items = obj.GetArray("items"); // throws if not an array
if (obj.TryGetObject("meta", out var meta)) { /* ... */ }
// arrays
int count = items.Count;
string first = items.Get<string>(0);
foreach (var item in items) { /* JsonValue */ }
foreach (var o in items.AsObjects()) { /* JsonObject items only */ }
Convert a JsonValue to a CLR type (when you already hold the value):
string? s = jv.As<string>(); // default(T) (null) if the value is null/missing
int n = jv.As<int>(-1); // custom default if null/missing
string r = jv.Required<string>(); // throws if null/missing
As<T> / Get<T> support primitives, Guid/Uuid*, DateTime/DateTimeOffset/DateOnly/TimeSpan,
NodaTime Instant/Duration, Uri, byte[]/Slice, arrays/List<T>, and your POCOs. Numbers/dates use
InvariantCulture.
4. CrystalJson: serialize / parse / deserialize
using SnowBank.Data.Json;
// SERIALIZE a CLR value -> JSON
string json = CrystalJson.Serialize(value); // formatted, single line
string compact= CrystalJson.Serialize(value, CrystalJsonSettings.JsonCompact);
string pretty = CrystalJson.Serialize(value, CrystalJsonSettings.JsonIndented);
Slice bytes = CrystalJson.ToSlice(value, CrystalJsonSettings.JsonCompact); // UTF-8
byte[] raw = CrystalJson.ToBytes(value);
CrystalJson.SerializeTo(textWriterOrStream, value); // streaming
// PARSE text/bytes -> DOM: parse through the DOM types, not through CrystalJson.*
JsonValue any = JsonValue.Parse(json); // string, Slice, ReadOnlySpan<char/byte>
JsonObject o = JsonObject.Parse(json); // throws if it is not an object
JsonArray a = JsonArray.Parse(json); // throws if it is not an array
// READ-ONLY (cache-safe) twin of each: the nested ReadOnly class, same entry points
JsonValue roDom = JsonValue.ReadOnly.Parse(json); // also JsonObject.ReadOnly.Parse, etc.
// DESERIALIZE text/bytes -> POCO (parse + bind)
Book book = CrystalJson.Deserialize<Book>(json); // throws if the JSON is null
Book? maybe= CrystalJson.Deserialize<Book>(json, defaultValue: null); // null instead of throwing
// Serialize a JsonValue back to text/bytes
string s2 = value.ToJsonText(); // or ToJsonText(settings)
Slice b2 = value.ToJsonSlice(CrystalJsonSettings.JsonCompact);
Parse (DOM) vs Deserialize (POCO): Parse returns a JsonValue tree you navigate; Deserialize<T> binds straight
to your type. A null/empty/missing input deserializes to null -> throws for a non-nullable T unless you pass a
defaultValue.
The intended split: CrystalJson.* serves the POCO route (Serialize, Deserialize, ToSlice), the DOM
parses through the DOM types (JsonValue.Parse, JsonObject.Parse, JsonArray.Parse, each a new static
returning the derived type, throwing when the payload has another shape). Pick JsonObject.Parse when a non-object
payload is a bug (let it throw); pick JsonValue.Parse plus a type test when it is an ordinary case to handle.
(CrystalJsonDomWriter.ParseObject(value) is unrelated: it goes the other way, CLR value -> DOM.)
CrystalJsonSettings
Settings are immutable and cached; start from a preset and compose with fluent methods.
Presets: CrystalJsonSettings.Json (default), .JsonCompact, .JsonIndented, .JsonReadOnly (parse a read-only DOM),
.JsonStrict, .JsonIgnoreCase (case-insensitive field matching), and JavaScript* variants.
Common fluent options (chainable, e.g. CrystalJsonSettings.Json.Compacted().CamelCased()):
- Layout:
.Compacted(),.Indented(),.Formatted() - Naming:
.CamelCased(),.PascalCased() - Nulls/defaults:
.WithoutNullMembers()(default),.WithNullMembers(),.WithoutDefaultValues() - Enums:
.WithEnumAsStrings()(the default since 7.4.3),.WithEnumAsNumbers()- see Enums in the output in section 9 for what changed and the recipes that restore numbers - Dates:
.WithIso8601Dates()(default),.WithMicrosoftDates()(emits"\/Date(ms)\/"; reading that legacy format always works, with or without this setting) - Durations:
.WithNumericDurations()(default:TimeSpanas a number of seconds),.WithIso8601Durations()(emits the legacy"P1DT2H3M4.005S"duration string; reading both forms always works) (7.4.3+) - Dictionaries:
.WithDictionariesAsMaps()(default,{"k":v}),.WithDictionariesAsPairArrays()(emits the legacy[{"Key":k,"Value":v}]shape; again, reading both shapes always works) (7.4.3+) - Read-only result:
.AsReadOnly()
Parsing leniency (deserialization only; none of these change what you emit). The parser is deliberately permissive by default, which is wrong for untrusted input:
| Option | Default | Tighten with | Loosen with |
|---|---|---|---|
JavaScript comments (// ..., /* ... */) |
accepted | .WithoutComments() |
.WithComments() |
trailing commas ([1, 2, ]) |
accepted | .WithoutTrailingCommas() |
.WithTrailingCommas() |
| content after the top-level value | rejected | .WithoutTrailingData() |
.WithTrailingData() |
| duplicate field names | last one wins | .ThrowOnDuplicateFields() |
.FlattenDuplicateFields() |
⚠️ The property is settings.AllowTrailingData; the fluent method that sets it is .WithTrailingData().
There is no .AllowTrailingData() method. Same shape for the others: read a bool property, set it with a
With* / Without* method.
CrystalJsonSettings.JsonStrict is the shorthand for the first two rows (no comments, no trailing commas). It
does not touch duplicate fields, so add .ThrowOnDuplicateFields() yourself if a repeated key must be an
error rather than a silent overwrite.
To read several consecutive documents out of one buffer, use CrystalJson.ParseFragment or the streaming
reader instead of .WithTrailingData(), which parses the first value and silently drops the rest.
5. The source generator (your domain types)
For POCOs, prefer the generator over the DOM: it emits a fast, reflection-free, AOT-friendly converter and typed read-only/writable proxies. (This is how the document-collection layers built on this stack store their documents.)
Declare
Put [CrystalSerializable(typeof(T))] (one per root type) on a public static partial class marked
[CrystalJsonConverter]. Nested types are discovered automatically. Use [JsonProperty("name")] to rename a field.
using SnowBank.Data.Json;
public sealed record Book
{
[JsonProperty("id")]
public required string Id { get; init; }
[JsonProperty("title")]
public required string Title { get; init; }
[JsonProperty("year")]
public int Year { get; init; }
public Author? Author { get; init; } // nested type: auto-discovered
}
[CrystalJsonConverter] // or [CrystalJsonConverter(CrystalJsonSerializerDefaults.Web)] for camelCase + ignore-case
[CrystalSerializable(typeof(Book))]
public static partial class AcmeSerializers { } // generated members land here
The container vocabulary (7.4.4+)
[CrystalJsonConverter] is a mono-format alias: it means "this class hosts generated code" plus
"produce the JSON format, with these parameters". The two halves also exist separately, which is what a
container producing several formats needs:
| Attribute | Namespace | Role |
|---|---|---|
[CrystalConverter] |
SnowBank.Data |
the container marker; says nothing about the formats |
[CrystalSerializable(typeof(T))] |
SnowBank.Data |
registers a root type; repeatable; feeds every output format |
[CrystalJsonOutput(...)] |
SnowBank.Data.Json |
requests the JSON format (profile, naming policy, case-insensitivity) |
[CrystalXmlOutput(...)] |
SnowBank.Data.Xml |
requests the XML format (see Documentation/CrystalXml.md) |
[CrystalJsonConverter(...)] |
SnowBank.Data.Json |
alias: [CrystalConverter] + [CrystalJsonOutput], JSON only |
[CrystalXmlConverter(...)] |
SnowBank.Data.Xml |
alias: [CrystalConverter] + [CrystalXmlOutput], XML only |
Rules the compiler enforces: a [CrystalConverter] naming no output format is refused (CRYS0001);
a mono-format alias next to an output attribute is refused (CRYS0002 - use [CrystalConverter] with
explicit output attributes instead); several container markers on one class are refused (CRYS0003).
// a container that produces BOTH formats from one set of registered types
[CrystalConverter]
[CrystalJsonOutput(CrystalJsonSerializerDefaults.Web)]
[CrystalXmlOutput]
[CrystalSerializable(typeof(Book))]
public static partial class CatalogSerializers { }
[CrystalJsonSerializable(typeof(T))] is the former spelling of [CrystalSerializable]: still working
and byte-identical, but [Obsolete] (registration never was JSON-specific).
Self-serializable types: the entity IS its own container (7.4.3+)
The container above (AcmeSerializers) is one way to register a type. The other is to let the type carry its own
generated code, which is what you want when a layer owns a vocabulary and should not force every consuming
application to also declare a JSON container.
[CrystalJsonSelfSerializable] is a meta-attribute: you put it on one of your own attribute classes, and
every type decorated with that attribute is opted into generation.
// the layer declares its vocabulary ONCE
[CrystalJsonSelfSerializable]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
public sealed class MyEntityAttribute : Attribute { }
// the application just declares an entity - no container, no [CrystalSerializable]
[MyEntity]
public sealed partial record Widget
{
public required string Name { get; init; }
public Author? Author { get; init; } // referenced types are still picked up
}
Everything generated lands inside one nested static class named Json, so the entity reserves exactly one
member name:
Widget.Json.Default // the converter (the container mode's AcmeSerializers.Widget)
Widget.Json.ReadOnly // read-only proxy
Widget.Json.Writable // writable proxy
Widget.Json.PropertyNames // property-name constants
Widget.Json.GetResolver() // the per-container resolver, same as the container mode
Widget.Json.ToJsonText(w) // the static helpers live there too
Referenced types nest inside that same scope under their plain names: Author's converter is
Widget.Json.Author.Default. Inside the scope they cannot shadow the referenced type in the entity's own
source, which is what the single reserved name buys.
The one-name rule is the design, not an implementation detail: a future generator for another format claims a
sibling scope (Widget.Cbor) without renegotiating anything. It also means the Json scope is entirely
generated code, so it carries the generated-code attributes (GeneratedCode, DebuggerNonUserCode,
ExcludeFromCodeCoverage, DynamicallyAccessedMembers) that could not be put on the entity partial, since
that partial is your source.
This is how a document-collection attribute works in a layer built on this stack: the application writes one attribute on the entity, and the JSON converter, both proxies and the layer's own generated schema all fall out of it.
Things to know before you use it:
- The entity must be
partial, non-generic, and not nested. The generator rejects the others withCJSON0004/CJSON0005. - Your entity may not declare a member named
Json. That isCJSON0006, an error, reported at the entity declaration in your own source. The message carries the remedies: rename the member and keep its serialized name with[JsonProperty("json")], or move the type to a[CrystalJsonConverter]container instead. - A referenced type named like a scope member (
Default,ReadOnly,Writable,PropertyNames, …) isCJSON0007, a warning. That type is excluded from generation and falls back to runtime serialization, so it still works, just without a generated converter. - Hint names are namespace-qualified in this mode, because entity names collide across namespaces far more often than container names do.
- The
[CrystalJsonConverter]+[CrystalSerializable]container path is untouched and still correct. Prefer the container when you register third-party types you cannot annotate, or a set of unrelated types; prefer self mode when the type is yours and a layer already marks it.
csproj wiring (the part most often gotten wrong)
Reference the generator project/package as an analyzer, and ensure C# 9+:
<PropertyGroup>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="path/to/SnowBank.Serialization.Json.CodeGen.csproj"
OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
(If consuming via NuGet, the analyzer ships with SnowBank.Core / its codegen package.)
The language floor is C# 9, and the generator checks it explicitly: below C# 9 it reports SYSLIB1221
("language version not supported by the source generator") and generates nothing. latest clears the gate with
margin, but the actual requirement is only >= 9 — the classic trigger is a ported legacy project still pinning
a netfx-era <LangVersion>7.3</LangVersion>. No other project setting is required: the generated files fully
qualify every name (they work without ImplicitUsings) and are warning-free under #nullable enable, including
for members declared in nullable-oblivious code.
Use
// POCO <-> JSON text
string json = AcmeSerializers.Book.ToJsonText(book);
Book back = AcmeSerializers.Book.Deserialize(json);
// POCO <-> JsonValue (DOM)
JsonValue packed = AcmeSerializers.Book.Pack(book);
Book from = AcmeSerializers.Book.Unpack(jsonObject);
// runtime resolver (pass to CrystalJson APIs and to layers that must resolve your converters)
ICrystalJsonTypeResolver resolver = AcmeSerializers.GetResolver();
Read-only / writable proxies (zero-copy typed views over the DOM)
AcmeSerializers.Book.ReadOnly ro = AcmeSerializers.Book.ToReadOnly(book); // typed read-only view over a JsonValue
string title = ro.Title; // typed property read
JsonValue dom = ro.ToJsonValue(); // underlying (read-only) JsonValue
Book poco = ro.ToValue(); // materialize the POCO
// edit via copy-on-write: the original proxy is unchanged, you get a new frozen proxy
AcmeSerializers.Book.ReadOnly edited = ro.With(m => { m.Year = 2025; });
// or an explicit mutable proxy
AcmeSerializers.Book.Writable w = ro.ToMutable();
w.Year = 2025;
Absence propagates through a proxy the way it does through the DOM: a chain across a missing inner object keeps
navigating (proxy.Metadata.IsNullOrMissing() tells you), an optional member reads as its default, and a
required member absent from the document throws JsonBindingException, never a NullReferenceException
(pinned by Test_JsonReadOnlyProxy_With_Empty_Object in SnowBank.Serialization.Json.CodeGen.Tests).
(7.4.5+) A type that decides its own format (IJson* interfaces, or a container hook, section 7) gets NO
generated proxies, with a CJSON0025 warning: the generator cannot describe a shape it does not produce.
Note: .With(...) (copy-on-write edit) is a method on the GENERATED typed proxies shown here, not on a raw DOM
JsonObject/JsonArray. For a plain DOM value there is no .With(...): freeze with value.ToReadOnly() and edit a
copy with value.ToMutable() (section 2), then set fields via the indexer.
6. Mutating JSON: MutableJsonValue (and ObservableJsonValue)
MutableJsonValue is a mutation proxy used inside "write" closures (document updates in a collection layer, the doc.Write(root => ...) closures of a reactive layer).
ObservableJsonValue is the read side that tracks which fields were read (for reactive views). You usually interact via
the root handed to a write callback:
doc.Write(root =>
{
root["status"].Set("online"); // set a scalar field
root.Set("count", 42); // typed set (auto-converts the CLR value)
root["point"]["x"].Set(123); // nested set (intermediate objects auto-created via GetOrCreateObject)
root.Set(JsonPath.Create("a.b[0]"), "deep"); // path-based set
root["items"].Add("newItem"); // APPEND to the array at root["items"]
});
Footgun - Add means different things on objects vs arrays:
root.Add("field", value)adds a field to the object (throws if the field already exists).root["field"].Add(value)appends to the array atroot["field"].
They are not interchangeable. Re-creating an existing field with Add throws; to append, index into the array first.
Don't hold a child proxy across a parent mutation - it goes stale. Re-get it, or do it in one chain:
// stale:
var s = root["settings"]; root["settings"].Set(newSettings); s["k"].Set(v); // BUG: s is stale
// good:
root["settings"]["k"].Set(v);
7. Custom (de)serialization: the IJson* interfaces
When the generator can't cover a type (e.g. a hand-tuned encoding), implement these directly:
public interface IJsonSerializable { void JsonSerialize(CrystalJsonWriter writer); }
public interface IJsonPackable { JsonValue JsonPack(CrystalJsonSettings settings, ICrystalJsonTypeResolver resolver); }
public interface IJsonDeserializable<TSelf> { static abstract TSelf JsonDeserialize(JsonValue value, ICrystalJsonTypeResolver? resolver); }
By convention the concrete JsonDeserialize implementation declares the resolver with a default (ICrystalJsonTypeResolver? resolver = null)
so callers can omit it; that still satisfies the interface. JsonPack (to DOM) and JsonDeserialize (from DOM) must be inverses - round-trip them in a test. Build values with
JsonString.Return(...), JsonNumber.Return(...), JsonArray.ReadOnly.Create(...). Handle null/missing defensively in
JsonDeserialize. (Example in the wild: a compact id type packed as a JsonArray of its parts.)
Generated converters call a registered type's own IJson* implementations (7.4.5+)
For a type that implements one of the three interfaces AND is registered with a [CrystalConverter]
container, the generated converter calls the type's own method for each interface it implements, and
generates the remaining methods from the members. Before 7.4.5 the generated converter ignored the
interfaces and built the output from the members, so the generated and reflection paths produced
different output for the same type. The type's format takes precedence over the container's profile
settings.
To force the old member-based output for one type, opt it out where it is registered:
[CrystalSerializable(typeof(LegacyRecord), IgnoreCustomSerialization = true)]
Two limits: the opt-out cannot help a type the generator cannot construct from members (required
members with no parameterless constructor), and it cannot be applied to a type discovered through
another type (a type reached through another type's member is registered automatically, and no
attribute can be applied to it).
Overriding a generated converter with a hand-written method (7.4.5+)
The per-type scope a container generates is partial. An author can declare a Serialize, Pack, or
Unpack method in their own part, and the generated converter routes that facet to it while keeping
the IJsonConverter<T> implementation, the null check, the circular-reference check, and the
read-only conversion. The null check runs BEFORE the author's method: a null instance serializes as
JSON null and the method is never called with one, so it takes a non-nullable parameter and needs no
null branch.
This override is per container, and takes precedence over the type's own IJson* methods, so two
containers can serialize one type differently. A scope is named after the type it serves, so inside the container
that name refers to the SCOPE: qualify the serialized type in the registration and the hook signatures.
[CrystalConverter]
[CrystalJsonOutput]
[CrystalSerializable(typeof(Telemetry.SensorReading))]
public static partial class TelemetrySerializers
{
public static partial class SensorReading
{
// replaces the generated Pack body for this container only; the generated code
// handles a null instance before this method runs, so there is no null case here
public static JsonValue Pack(Telemetry.SensorReading instance, CrystalJsonSettings? settings = default, ICrystalJsonTypeResolver? resolver = default)
=> JsonArray.Create(JsonString.Return(instance.Sensor), JsonNumber.Return(instance.Value));
}
}
The names Serialize, Pack, and Unpack are reserved inside a generated scope: one of them with an
incompatible signature is a hard error (CJSON0024) naming the expected shape, never a silent fallback.
For a hooked polymorphic type, the generator does not write the type discriminator: the hook must
write it itself (the constants PropertyNames._TypeDiscriminatorProperty_ /
PropertyEncodedNames._TypeDiscriminatorValue_ are public in the scope for that purpose).
Member converters: converting ONE member, not the whole type (7.4.3+)
The interfaces above take over an entire type. When you only need to change how one member is written, attach the behaviour to that member instead - and reach for a built-in attribute before writing any code.
Start here: the built-in, [JsonBooleanLiterals]
Booleans written as "0"/"1" (or 0/1) are the common legacy case, and there is nothing to implement:
[JsonBooleanLiterals("0", "1")] // strings; tolerant read
[JsonBooleanLiterals("0", "1", StrictLiterals = true)] // rejects genuine true/false
[JsonBooleanLiterals(0, 1)] // numbers
[JsonBooleanLiterals(null, "1")] // true -> "1", false -> member ABSENT
[JsonBooleanLiterals(null, true)] // true -> true, false -> member ABSENT
public bool Enabled { get; set; }
A null first argument means the member is not emitted at all when the value is false, for a consumer that
expects either the member absent or the true literal. [JsonBooleanLiterals(null, true)] is the idiom for
"emit true, or emit nothing": the output stays ordinary JSON booleans and the only thing the attribute changes is
the omission, which says the intent in C# better than a condition whose "default" the reader has to decode as
false. It is exactly equivalent to [JsonBooleanLiterals("0","1")] plus
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)] (pinned byte-identical by a test), and
[JsonIgnore(Condition = ...)] remains the general mechanism for every other member type. [JsonBooleanLiterals(false, true)]
is legal and does nothing: both literals are what a bool serializes to anyway.
Arguments accept a string, a bool, or a numeric value, and the two do not have to match
([JsonBooleanLiterals("0", 1)] is legal, because legacy formats are not always consistent). Anything else is
refused: the reflection path throws when the contract is built, the generator reports CJSON0017, same
message. The parameters are typed object so that null can carry the omit meaning, which is why that check
exists at all: it replaces the compiler check the old typed constructors gave you.
With no false literal, a present JSON false reads as false even under StrictLiterals: absence already
means false in that shape, so an explicit false is the same state spelled out. Strict still rejects anything
that is not a configured literal. That combination is incoherent though, so the generator warns (CJSON0018).
Why that one is generator-only, when the other diagnostics exist on both paths: CJSON0015 and CJSON0016
refuse constructs that would otherwise behave differently on the two paths, so they have to exist on both, and
the reflection path throws the identical message at contract build. CJSON0018 changes no behaviour at all: it is
advice about a pointless combination, and a compile-time nudge is the whole feature. There is no sensible moment
to emit a warning during contract build, and throwing would be wildly out of proportion.
Reads are tolerant by default (the configured literals, case-insensitively, and genuine true/false), so a
modernized producer needs no redeploy; an unknown literal is a JsonBindingException, never a silent false. Applying
it to a non-boolean member fails loudly (reflection: at metadata build; generator: error CJSON0009).
When no built-in covers it: a member converter
For anything else (a domain scalar as a string, a packed identifier), write a converter. Recognition is per facet: a
converter is honored for whichever of IJsonPacker<T> (writing) and IJsonDeserializer<T> (reading) it implements, so
a write-only or read-only type implements one side. IJsonMemberConverter<T> is the convenience bundle for the
symmetric case, never a requirement:
public interface IJsonMemberConverter<T> : IJsonPacker<T>, IJsonDeserializer<T> { } // zero new members
// shown on a bool purely because it is the shortest possible body -
// for THIS behaviour use [JsonBooleanLiterals] above and write no converter at all
public sealed class BoolAsBitStringConverter : IJsonMemberConverter<bool>
{
public JsonValue Pack(bool v, CrystalJsonSettings? s = null, ICrystalJsonTypeResolver? r = null) => JsonString.Return(v ? "1" : "0");
public bool Unpack(JsonValue v, ICrystalJsonTypeResolver? r) => /* tolerant read */;
}
[JsonConvertWith(typeof(BoolAsBitStringConverter))] // CrystalJson's own attribute - preferred
public bool Enabled { get; set; } // output: "1" / "0", both paths, both directions
Converters never see null: null and missing are handled before the converter runs (and a converter written for T
lifts over a T? member for free). Using the missing direction fails loudly, naming the facet to add - there is no
silent fallback to the default path. A source-generated IJsonConverter<T> implements both parents, so a generated
whole-type converter can be named on a member with no adapter.
Nullable members (7.4.3+): a converter may be declared for the nullable form itself
(IJsonMemberConverter<DateTime?> on a DateTime? member). The probe order is exact form first, then the lift, on
both paths, so a T? declaration takes over every present value and can answer "no value" for a
present-but-unreadable input ("", an unparseable token) - distinctly from default(T), which stays a real value, and
from JSON null/missing, which stay the pipeline's on both sides. The T? declaration transfers the read side only:
Pack still never sees null, and the null-member format follows the settings (WithNullMembers() etc.), so a member
converter cannot represent absence for a nullable member whose absent form is not JSON null, unless it is declared for
the nullable type itself - and even then only when reading. A T? converter named on a NON-nullable member is refused
loudly (reflection: at metadata build; generator: CJSON0010).
Three spellings, in precedence order - all feed the same per-member slot, honored by the reflection path and the
generator (including the generated proxies). Precedence is the order the runtime resolves them, not a recommendation:
prefer a built-in when one fits, then [JsonConvertWith].
| Spelling | When to use it | Names a type with neither facet |
|---|---|---|
[JsonConvertWith(typeof(X))] |
your own converter; CrystalJson's own attribute, which System.Text.Json never inspects | fails loudly (reflection: on metadata build; generator: error CJSON0010) |
[JsonBooleanLiterals("0", "1")] |
prefer this for booleans - built in, no converter to write | n/a |
STJ / Newtonsoft [JsonConverter(typeof(X))] |
only when the named type is a real dual-shape converter both serializers can execute | silently ignored (keeps a half-migrated DTO serializable; starts working once X gains a facet) |
Both spellings also work on a type, covering standalone values, DTO members and collection elements on all paths; a
type-level converter wins over the duck-typed JsonSerialize/JsonPack methods and the IJson* interfaces.
Generator diagnostics
| Id | Level | Meaning |
|---|---|---|
CJSON0004 / CJSON0005 |
error | self-serializable entity is generic, nested, or not partial (section 5) |
CJSON0006 |
error | the entity declares a member named Json, colliding with the generated scope (section 5) |
CJSON0007 |
warning | a referenced type is named like a scope member; excluded from generation, falls back to runtime |
CJSON0008 |
error | an unconditional [JsonIgnore] on a member that also carries [DataMember], [JsonInclude] or [JsonProperty]: a dual-output DTO is not supported - split it, one DTO per serializer (the reflection path throws the same refusal at contract build). The [IgnoreDataMember] sibling shape stays a warning |
CJSON0009 |
error | [JsonBooleanLiterals] on a non-boolean member |
CJSON0010 |
error | [JsonConvertWith] names a type implementing neither converter facet |
CJSON0012 |
warning (suppressible) | an internal member with no include/exclude signal: serialized by generated converters, invisible to reflection; pin the intent with [JsonInclude] or [JsonIgnore] |
CJSON0015 |
error | a serialization callback ([OnSerializing] and friends) declares the legacy StreamingContext parameter; drop it, or replace it with JsonValue/JsonObject/JsonArray. The reflection path throws the same message at contract build |
CJSON0016 |
error | a type declares [OnDeserializing] alongside a required or init-only member. The pre-populate callback must observe an unpopulated instance, so members are assigned after construction, which neither of those allows; the message names the member and the remedy for its specific construct |
CJSON0017 |
error | a [JsonBooleanLiterals] argument has a type with no JSON format form; use a string, a bool, or a numeric value. The reflection path throws the same message when the contract is built |
CJSON0018 |
warning (suppressible) | StrictLiterals combined with a null false literal: strict mode enforces the configured literals, and with no false literal there is nothing on the false side to enforce. Generator-only on purpose, because it changes no behaviour (see below) |
CJSON0013 |
error | a format profile (DataContractCompat) combined with a naming policy (camelCase and friends); use the dual-container pattern instead. PropertyNameCaseInsensitive is NOT a trigger: it is a read-side tolerance for incoming member names and changes nothing about what the profile writes |
CJSON0024 |
error | (7.4.5+) a method named Serialize/Pack/Unpack in a generated per-type scope has an incompatible signature; the message names the expected one. Correct it or rename the method |
CJSON0025 |
warning | (7.4.5+) no ReadOnly/Writable proxy for a type that decides its own format (IJson* interfaces or a container hook): the generator cannot describe a shape it does not produce. The converter itself is unaffected |
CJSON0026 |
error | (7.4.5+) a registration resolves to a static class, usually an unqualified typeof(X) inside a container whose scope shadows the type name; the message names the qualification fix |
8. JsonPath
JsonPath addresses a nested location with dot/bracket notation:
var p = JsonPath.Create("user.address.city");
var q = JsonPath.Create("items[0]");
var last = JsonPath.Create(^1); // last item; ^0 is the append position
JsonValue v = obj.GetPathValueOrDefault(p);
root.Set(p, "new value"); // on a MutableJsonValue
9. Attributes: what each path honors (and legacy interop)
There are two independent (de)serialization paths, with different attribute vocabularies. Getting this wrong silently changes the output, so check the matrix before annotating a DTO:
- Reflection (
CrystalJsonTypeResolver) - whatCrystalJson.Serialize/Deserialize<T>/JsonValue.FromValueuse for a type with no generated converter. - Source generator - what
[CrystalJsonConverter]+[CrystalSerializable(typeof(T))]emit.
| Attribute | Reflection | Source generator |
|---|---|---|
[JsonProperty("x")] (SnowBank; also DefaultValue, EnumFormat, NumberFormat) |
YES (all four) | YES (all four) (EnumFormat and NumberFormat since 7.4.3, proxy setters included) |
[JsonProperty(NumberFormat = JsonNumberFormat.String)] (7.4.3+) |
YES - the member's numbers write as strings (the exact numeric literal, decimal scale included; protects 64-bit values from JavaScript precision loss); reads always accept both forms | YES, all write routes (converter, Pack, proxy setters), byte-parity pinned |
STJ [JsonPropertyName("x")] |
YES | YES |
STJ [JsonIgnore] / [JsonIgnore(Condition = ...)] |
YES, full STJ semantics (7.4.3+) | YES, full STJ semantics (7.4.3+) |
[IgnoreDataMember] |
YES (7.4.3+) - excludes the member on a non-[DataContract] type; on a [DataContract] type the [DataMember] opt-in still governs (DCJS's own precedence) |
counts as an ignore signal (7.4.3+) |
STJ [JsonInclude] (non-public members/accessors) |
YES (7.4.3+), a superset of STJ | YES (7.4.3+) - reached through accessor thunks ([UnsafeAccessor] where the TFM has it, reflection accessors downlevel); SYSLIB1038 is retired. An internal member with NO include/exclude signal still diverges (generated-only inclusion, kept for format compatibility) and gets the suppressible warning CJSON0012 nudging an explicit [JsonInclude] or [JsonIgnore] |
STJ [JsonPolymorphic] + [JsonDerivedType] |
YES (discriminator name and values are free-form) | YES |
[JsonConvertWith(typeof(X))] (SnowBank), members and types |
YES (7.4.3+) | YES (7.4.3+) |
[JsonBooleanLiterals] (SnowBank) |
YES (7.4.3+) | YES (7.4.3+) |
STJ / Newtonsoft [JsonConverter(typeof(X))], members and types |
YES (7.4.3+) when X implements a converter facet; silently ignored otherwise (see section 7) |
YES (7.4.3+), same posture, facet checked at compile time |
| Enum custom literals: `[JsonString |
…(truncated)