Standard Tags (for YAML 1.2 JSON Schema)
- There are standard tags that actually are implicit
- So the following documents are equal
---sequence: !!seq - a - bmapping: !!map a: 1 b: 2null value: !!null nullboolean true: !!bool trueboolean false: !!bool falseinteger: !!int 42string: !!str string
---sequence: - a - bmapping: a: 1 b: 2null value: nullboolean true: trueboolean false: falseinteger: 42string: string