/code-lists/{id}/editions/{edition}

GET

Get information about an edition of a code list

Parameters

Name Type Description
id path The ID of a code list
edition path The edition of the code list

Responses

200: Json object containing information about the code list

Example value
{
  "type": "object",
  "properties": {
    "edition": {
      "description": "The edition",
      "type": "string"
    },
    "label": {
      "description": "A label used by the edition",
      "type": "string"
    },
    "links": {
      "type": "object",
      "properties": {
        "codes": {
          "type": "object",
          "properties": {
            "href": {
              "description": "The URL to the resource",
              "type": "string"
            }
          }
        },
        "editions": {
          "type": "object",
          "properties": {
            "href": {
              "description": "The URL to the resource",
              "type": "string"
            }
          }
        },
        "self": {
          "type": "object",
          "properties": {
            "href": {
              "description": "The URL to the resource",
              "type": "string"
            },
            "id": {
              "description": "The id of the resource",
              "type": "string"
            }
          }
        }
      }
    }
  }
}

404: Edition not found

Example value
null

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

Example value
null