Adding role to author information
parent
4e24ab659f
commit
0edc94cdce
|
@ -145,6 +145,7 @@ Each author object can have following properties:
|
||||||
* **name:** The author's name. Usually his real name.
|
* **name:** The author's name. Usually his real name.
|
||||||
* **email:** The author's email address.
|
* **email:** The author's email address.
|
||||||
* **homepage:** An URL to the author's website.
|
* **homepage:** An URL to the author's website.
|
||||||
|
* **role:** The authors role in the project (for e.g. developer or translator)
|
||||||
|
|
||||||
An example:
|
An example:
|
||||||
|
|
||||||
|
@ -153,12 +154,14 @@ An example:
|
||||||
{
|
{
|
||||||
"name": "Nils Adermann",
|
"name": "Nils Adermann",
|
||||||
"email": "naderman@naderman.de",
|
"email": "naderman@naderman.de",
|
||||||
"homepage": "http://www.naderman.de"
|
"homepage": "http://www.naderman.de",
|
||||||
|
"role": "Developer"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Jordi Boggiano",
|
"name": "Jordi Boggiano",
|
||||||
"email": "j.boggiano@seld.be",
|
"email": "j.boggiano@seld.be",
|
||||||
"homepage": "http://seld.be"
|
"homepage": "http://seld.be",
|
||||||
|
"role": "Developer"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,6 +66,10 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Homepage URL for the author.",
|
"description": "Homepage URL for the author.",
|
||||||
"format": "uri"
|
"format": "uri"
|
||||||
|
},
|
||||||
|
"role": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Author's Role in development."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue