Outline · Schema

DataAttributeOptions

Additional options for certain data attribute types.

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
icon string An icon representing the data attribute from the outline-icons package.
options array Valid options for list data type.
View JSON Schema on GitHub

JSON Schema

dataattributeoptions.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DataAttributeOptions",
  "type": "object",
  "description": "Additional options for certain data attribute types.",
  "properties": {
    "icon": {
      "type": "string",
      "description": "An icon representing the data attribute from the outline-icons package."
    },
    "options": {
      "type": "array",
      "description": "Valid options for list data type.",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "description": "The label/value of the option."
          },
          "color": {
            "type": "string",
            "description": "Optional color for the option."
          }
        }
      }
    }
  }
}