[Project]

    JSON을 규칙적으로 사용해보자 - Google JSON Style Guide

    가이드 라인을 참고하여 작성하였습니다. General Guidelines 주석 JSON은 주석을 포함하지 않는다. correct { "propertyName": "propertyValue" } wrong { // You may see comments in the examples below, // But don't include comments in your JSON. "propertyName": "propertyValue" } 쌍따옴표 모든 propertyName은 쌍따옴표로 둘러싸여 있어야 한다. 모든 propertyValue는 쌍따옴표로 둘러싸여 있어야 한다. 단, boolean이나 number는 안해도된다. correct { "propertyName": "propertyValue", "numberP..