Skip to main content
Validate description box component

Properties

  • text (string) - minLength: 10 (required)
  • cardStyle (object - style component reference)

Used in Categories

This component is used in the following categories:

Schema

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {},
  "title": "Description box component",
  "description": "Validate description box component",
  "type": "object",
  "required": [
    "text"
  ],
  "additionalProperties": false,
  "properties": {
    "text": {
      "type": "string",
      "minLength": 10
    },
    "cardStyle": {
      "$ref": "style/card.json"
    }
  }
}