/code-lists/{id}/editions

GET

Get a list of editions associated with a code list

Parameters

Name Type Description
id path The ID of a code list
limit query Maximum number of items that will be returned. A value of zero will return zero items. The default value is 20 and the maximum allowed is 1000.
offset query Starting index of the items array that will be returned. By default it is zero, meaning that the returned items will start from the beginning.

Responses

200: Json object containing an array of editions

Example value
{
  "count": "string",
  "items": [
    {
      "edition": "string",
      "label": "string",
      "links": {
        "codes": {
          "href": "string"
        },
        "editions": {
          "href": "string"
        },
        "self": {
          "href": "string",
          "id": "string"
        }
      }
    }
  ],
  "limit": "string",
  "offset": "string",
  "total_count": "string"
}

404: Code list editions not found

500: Failed to process the request due to an internal error