DEV Community · Schema

ArticleFlareTag

Flare tag of the article

Developer CommunityArticlesBloggingSocialContentOpen Source

Properties

Name Type Description
name string
bg_color_hex string Background color (hexadecimal)
text_color_hex string Text color (hexadecimal)
View JSON Schema on GitHub

JSON Schema

articleflaretag.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ArticleFlareTag",
  "description": "Flare tag of the article",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "bg_color_hex": {
      "description": "Background color (hexadecimal)",
      "type": "string",
      "nullable": true
    },
    "text_color_hex": {
      "description": "Text color (hexadecimal)",
      "type": "string",
      "nullable": true
    }
  }
}