From 0edc94cdcefbe9164038659afb0cadccc601dae6 Mon Sep 17 00:00:00 2001 From: Michael Cullum Date: Sat, 28 Apr 2012 15:26:47 +0100 Subject: [PATCH] Adding role to author information --- doc/04-schema.md | 7 +++++-- res/composer-schema.json | 4 ++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/04-schema.md b/doc/04-schema.md index b9552061e..fb7ef7376 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -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" } ] } diff --git a/res/composer-schema.json b/res/composer-schema.json index c11ed953e..1d1ddfadf 100644 --- a/res/composer-schema.json +++ b/res/composer-schema.json @@ -66,6 +66,10 @@ "type": "string", "description": "Homepage URL for the author.", "format": "uri" + }, + "role": { + "type": "string", + "description": "Author's Role in development." } } }