// yaml
YAML Statistics.
Inspect a YAML document: total keys, max depth, counts of strings, numbers, booleans, arrays, and objects.
Client-sideCountsNo upload
YAML input
Statistics
FAQ
Why does max depth count from 0?
A scalar at the root has depth 0; a map one level deep has depth 1. The top-level array of endpoints is depth 1, and an array inside an array would be depth 2.
Does it count commented-out keys?
No. Statistics are computed on the parsed YAML structure, so only valid keys that survived parsing are counted.