-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe how to disclose structured data about beneficiaries #235
Comments
Yes to 3, but why is location an array? |
I was misremembering the structure of the location extension, I've updated the issue description. |
Looks good! |
CoST Honduras confirmed the information is known at the planning stage. |
Looking at Honduras' draft data, I think we need to add an "benefits": [
{
"id": "",
"description": "Uno de los objetivos fundamentales de este proyecto...",
"beneficiaries": [
{
"id": "10301",
"address": {
"region": "Francisco Morazán",
"locality": "Tegucigalpa"
}
} Alternatively, we could stick with using just
"location": {
"description": "Tegucigalpa, Francisco Morazán"
"location": {
"gazetteer": {
"scheme": "GEONAMES",
"identifiers": "3600949" However, option 1 makes it harder for users to filter on departments/regions. Similarly, option 2 requires users to look up the identifier against an external list to get the name and also won't work if department and municipality are free-text fields. So, practically, I think using @jpmckinney what do you think? |
Sounds good to me. The location extension similarly has delivery address and location as sibling fields on the item object. |
Note that a similar extension was drafted here for OCDS open-contracting/standard#1388 (comment) |
CoST Honduras collect structured data on the beneficiaries of PPP projects in SISOCS APP and they want to include this in their OCDS for PPPs data.
The closest element in OCDS for PPPs is I.4 Project economic and social benefits, defined in the World Bank framework as:
However, OCDS for PPPs provides only for this information to be published as a document, rather than as structured data.
Example
The following example is machine translated (original version in Spanish):
Note that departments are administrative divisions of Honduras and the benefit column is truncated for brevity.
Other standards
I couldn't find any relevant models in linked open vocabularies.
360Giving uses beneficaryLocation, which differs from the OCDS location model, to describe the location of the beneficiaries of grants.
IATI uses results, which are closer in nature to the OCDS metrics extension, to describe the benefits or intended benefits of an activity.
Modelling options
I need to confirm what stage of the contracting process this information is from, but I think it's likely to be from the planning stage, so the following options could be properties of the
planning
object:1. Local extension
The simplest option is to model the beneficiaries table as an array of objects with property names from the SISOCS data, however this does not serve the purpose of standardization:
2. Generic model
Map benefit to 'description' and reuse the OCDS location extension to describe the location of the beneficiary:
3. Benefits array
It seems more semantically correct to model beneficiaries as a property of benefits and, in fact, this is reflected in the example shared by CoST Honduras, where the same text appears in the benefit column for all beneficiaries.
Map benefit to
benefits/description
and reuse the location extension to describe the location of the beneficiary:Other options
I considered listing beneficiaries in parties section and referencing them from a
beneficiaries
array, but I don't think that beneficiaries can be considered parties to the contracting process.Discussion
I perfer option 3 for semantic accuracy and ease of reuse by other publishers who might structure their data differently.
@jpmckinney - what do you think?
cc @EvelynDinora
The text was updated successfully, but these errors were encountered: