1
0
Fork 0

Adding role to author information

pull/279/merge
Michael Cullum 2012-04-28 15:26:47 +01:00 committed by Jordi Boggiano
parent 4e24ab659f
commit 0edc94cdce
2 changed files with 9 additions and 2 deletions

View File

@ -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"
}
]
}

View File

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