@@ -46,9 +46,9 @@ class Schema:
4646 root_node: The top-level node representing the entire Schema object in the original source file
4747
4848 # JSON Schema Core Keywords (2020-12)
49- schema_ : The $schema keyword - URI of the meta-schema
50- id_ : The $id keyword - URI that identifies the schema resource
51- ref_ : The $ref keyword - URI reference to another schema
49+ schema : The $schema keyword - URI of the meta-schema
50+ id : The $id keyword - URI that identifies the schema resource
51+ ref : The $ref keyword - URI reference to another schema
5252 anchor: The $anchor keyword - Plain name fragment for identification
5353 dynamic_ref: The $dynamicRef keyword - Dynamic reference to another schema
5454 dynamic_anchor: The $dynamicAnchor keyword - Dynamic anchor for identification
@@ -146,9 +146,9 @@ class Schema:
146146 root_node : yaml .Node
147147
148148 # Core Keywords
149- id_ : FieldSource [str ] | None = fixed_field (metadata = {"yaml_name" : "$id" })
150- schema_ : FieldSource [str ] | None = fixed_field (metadata = {"yaml_name" : "$schema" })
151- ref_ : FieldSource [str ] | None = fixed_field (metadata = {"yaml_name" : "$ref" })
149+ id : FieldSource [str ] | None = fixed_field (metadata = {"yaml_name" : "$id" })
150+ schema : FieldSource [str ] | None = fixed_field (metadata = {"yaml_name" : "$schema" })
151+ ref : FieldSource [str ] | None = fixed_field (metadata = {"yaml_name" : "$ref" })
152152 comment : FieldSource [str ] | None = fixed_field (metadata = {"yaml_name" : "$comment" })
153153 defs : FieldSource [dict [KeySource [str ], NestedSchema ]] | None = fixed_field (
154154 metadata = {"yaml_name" : "$defs" }
0 commit comments