jsonresume / resume-schema

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

Missing Specification for Certifications #479

Closed Go-Cybersec closed 4 months ago

Go-Cybersec commented 4 months ago

Certifications are not part of the standard, and being how pervasive they are within many industries, they should be a separate entity from education. As part of this specification I would expect something like:

...
"certs" : [
    {
        "name" : "abc",
        "issuer" : "def",
        "issued" : "2024/1/1",
        "expires" : "2024/1/1",
        "link" : "https://link-to-badge.example.com" ,
        "description" : "jkl"
        "keywords" : [ "a","bv","X"]
    },
   ...
] 
...
Go-Cybersec commented 4 months ago

Closed due to me not reading the schema properly