jsonresume / resume-schema

JSON-Schema is used here to define and validate our proposed resume json
http://jsonresume.org
MIT License
2.15k stars 277 forks source link

Add postal code and street to location #77

Closed ocram closed 10 years ago

ocram commented 10 years ago

I think there could be no objections against adding the postal code and the street (both as optional fields) to the location object:

"location": {
    "type": "object",
    "properties": {
        "postalCode": {
            "type": "string",
            "description": "http://en.wikipedia.org/wiki/Postal_code"
        },
        "street": {
            "type": "string"
        }
    }
}
danvideo commented 10 years ago

thanks mwaclawek, that's what I was thinking in #76, but condensed a bit too much together

ocram commented 10 years ago

Has been implemented: https://github.com/jsonresume/resume-schema/pull/110