{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://schema.entrecode.de/schema-data/tag",
  "type": "object",
  "required": [
    "tag",
    "count"
  ],
  "properties": {
    "tag": {
      "type": "string",
      "pattern": "^[A-Za-z0-9äüöß_\\-:]+$"
    },
    "count": {
      "type": "integer",
      "minimum": 1
    },
    "_links": {
      "$ref": "https://schema.entrecode.de/schema-data/hal#/definitions/baseResource/properties/_links"
    }
  }
}