open-contracting / extension_registry

A registry of extensions to the Open Contracting Data Standard
Apache License 2.0
0 stars 3 forks source link

Add contactPoint to extensions data #97

Closed odscjames closed 5 years ago

odscjames commented 6 years ago

This spun off from #85

Should the format allow multiple authors, something like:


{
    "authors": [{
            "name": "James",
            "email": "james@example.com "
        },
        {
            "name": "Bob",
            "email": "bob@example.com"
        }
    ]
}

Fields fully optional so existing extensions aren't suddenly marked as broken. Also do we want to support people giving a name but no email?

jpmckinney commented 6 years ago

I prefer a single point of contact, as otherwise people may contact one and not another, leading to confusion, etc. Since we want a contact point, rather than e.g. author attribution, we could have, e.g.:

{
  "contactPoint": {
    "name": "J",
    "email": "j@example.com"
  }
}
jpmckinney commented 6 years ago

Noting that this issue likely belongs on https://github.com/open-contracting/ocds-extensions/issues, as the contact information is anticipated to be added to each extension, rather than centrally controlled by the registry.

jpmckinney commented 5 years ago

Moved to https://github.com/open-contracting/ocds-extensions/issues/78