defaultsJsonSchemaDialect static method

bool defaultsJsonSchemaDialect(
  1. String version
)

Whether tool schemas emitted to the negotiated version should carry an explicit $schema: <2020-12> default annotation (SEP-1613). Applied for 2025-11-25 and later peers; older peers keep prior output.

Implementation

static bool defaultsJsonSchemaDialect(String version) =>
    _isAtLeast(version, v2025_11_25);