Skip to content

open-contracting-extensions/ocds_organizationClassification_extension

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Organization classification

Adds an array of classification objects to an organization's details, in order to categorize it.

Examples

An organization categorized as a social protection business.

{
  "parties": [
    {
      "id": "1",
      "details": {
        "classifications": [
          {
            "id": "10",
            "scheme": "TED_CA_ACTIVITY",
            "description": "Social protection"
          }
        ]
      }
    }
  ]
}

An organization classified as a women-owned small business by the Small Business Administration in the USA.

{
  "parties": [
    {
      "id": "1",
      "details": {
        "classifications": [
          {
            "id": "WOSB",
            "scheme": "USA-SBA",
            "description": "Woman-Owned Small Business",
            "uri": "https://www.ecfr.gov/current/title-13/chapter-I/part-127/subpart-B"
          }
        ]
      }
    }
  ]
}

For a longer example, see the organization classifications guidance in the OCDS documentation.

Issues

Report issues for this extension in the ocds-extensions repository, putting the extension's name in the issue's title.

Changelog

2024-05-22

  • Add 'eu-buyer-legal-type' to the +itemClassificationScheme.csv codelist.

2023-08-01

  • Add 'eu-buyer-contracting-type' and 'eu-main-activity' to the +itemClassificationScheme.csv codelist.

2020-04-24

  • Add minProperties, minItems and/or minLength properties.

This extension was originally discussed as part of the OCDS for EU profile, in pull requests and in open-contracting/standard#711.