## yaml string type not reserved Types of numeric strings in yaml will be erased after conversion. ```yaml number_string: "123456" ``` after convertion: ```json { "number_string": 123456 } ``` ## empty array and map not reserved ```yaml empty_array: [] ``` after convertion: ```json { "empty_array": null } ```