# Implicit typing. Nothing here is quoted, so every value is whatever the resolver decides it
# is — and the resolvers disagree. Each key names the trap it carries.
version_trailing_zero: 1.10
version_quoted: "1.10"

sexagesimal_time: 22:22
sexagesimal_duration: 1:30:00
time_quoted: "22:22"

# A leading zero is the nastiest of these, because BOTH resolvers return a number and they
# return DIFFERENT numbers: YAML 1.1 reads 0755 as octal (493), YAML 1.2's core schema reads
# it as plain decimal (755). Neither gives you back the text you wrote.
octal_yaml_1_1: 0755
octal_yaml_1_2: 0o755
leading_zero_identifier: 012345
# 9 is not an octal digit, so YAML 1.1 leaves this a string while YAML 1.2 makes it 900.
build_number_leading_zero: 0900
hexadecimal: 0x1F
binary_yaml_1_1: 0b1011

big_integer: 9007199254740993
float_precision: 0.1
exponent: 1e3
plus_signed: +42

date_only: 2026-01-15
date_time: 2026-01-15T09:30:00Z
date_quoted: "2026-01-15"

infinity: .inf
negative_infinity: -.inf
not_a_number: .nan

version_string_looks_numeric: 2.0
