{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "attribute.schema.json",
  "title": "EDX Attributes",
  "type": "object",
  "properties": {
    "key": { "type": "string" },
    "value": {
      "type": "array",
      "items": { "type": "string" }
    }
  },
  "required": [ "key", "value" ],
  "additionalProperties": false
}
