Adding role to author information

main
Michael Cullum 12 years ago committed by Jordi Boggiano
parent 4e24ab659f
commit 0edc94cdce

@ -145,6 +145,7 @@ Each author object can have following properties:
* **name:** The author's name. Usually his real name.
* **email:** The author's email address.
* **homepage:** An URL to the author's website.
* **role:** The authors role in the project (for e.g. developer or translator)
An example:
@ -153,12 +154,14 @@ An example:
{
"name": "Nils Adermann",
"email": "naderman@naderman.de",
"homepage": "http://www.naderman.de"
"homepage": "http://www.naderman.de",
"role": "Developer"
},
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
"homepage": "http://seld.be",
"role": "Developer"
}
]
}

@ -66,6 +66,10 @@
"type": "string",
"description": "Homepage URL for the author.",
"format": "uri"
},
"role": {
"type": "string",
"description": "Author's Role in development."
}
}
}

Loading…
Cancel
Save