DEV Community · Schema

FollowedTag

Representation of a followed tag

Developer CommunityArticlesBloggingSocialContentOpen Source

Properties

Name Type Description
id integer Tag id
name string
points number
View JSON Schema on GitHub

JSON Schema

followedtag.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FollowedTag",
  "description": "Representation of a followed tag",
  "type": "object",
  "properties": {
    "id": {
      "description": "Tag id",
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "points": {
      "type": "number",
      "format": "float"
    }
  },
  "required": [
    "id",
    "name",
    "points"
  ]
}