Skip to content
YAML

Tags

Explicit type tags for custom resolution.

#tag#type#custom

Code

yaml
# Built-in tags force a specific type
not_a_string: !!str 123
not_a_date: !!str 2024-01-01
explicit_int: !!int "42"
explicit_bool: !!bool "yes"

# Local custom tags
shape: !circle
  radius: 5
color: !rgb "ff00ff"