{
  "title": "codedValue",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "A set of valid coded values with unique names.",
  "properties": {
    "code": {
      "type": [
        "number",
        "string"
      ],
      "description": "The value stored in the feature attribute."
    },
    "name": {
      "type": "string",
      "description": "User-friendly name for what the code means."
    }
  },
  "required": [
    "code",
    "name"
  ],
  "additionalProperties": false
}
