Lowdefy
v3.17.2/display/Descriptions/

Descriptions

Display multiple read-only fields in groups. Commonly used to display a detailed set of data.

Item One1Item Two2Item Three3
Item Four4
id: block_id
type: Descriptions
properties:
  items:
    - label: Item One
      value: 1
      span: null
      style: null
    - label: Item Two
      value: 2
      span: null
      style: null
    - label: Item Three
      value: 3
      span: null
      style: null
    - label: Item Four
      value: 4
      span: 3
      style: null

properties:
Render items in a table.
Include a colon in item labels.
Select column type
The number of description items in a row.
Select items type
items:
  • Item label.
    Number of columns for this item to span.
    Css style object to applied to item.
    Value of item.
  • Item label.
    Number of columns for this item to span.
    Css style object to applied to item.
    Value of item.
  • Item label.
    Number of columns for this item to span.
    Css style object to applied to item.
    Value of item.
  • Item label.
    Number of columns for this item to span.
    Css style object to applied to item.
    Value of item.
Put values next to or below their labels.
Size of the block.
The title of the description block, placed at the top.
Object data example
LocationSouth AfricaTemperature22Date2021-02-02T00:00:00.000Z
id: object_example
type: Descriptions
properties:
  bordered: true
  items:
    Location: South Africa
    Temperature: 22
    Date: '2021-02-02T00:00:00.000Z'

type: object
properties:
  properties:
    additionalProperties: false
    properties:
      bordered:
        default: false
        description: Render items in a table.
        type: boolean
      colon:
        default: true
        description: Include a colon in item labels.
        type: boolean
      column:
        default: 3
        oneOf:
          - description: The number of description items in a row.
            type: number
          - properties:
              lg:
                description: The number of description items in a row for 'lg' media size.
                type: integer
              md:
                description: The number of description items in a row for 'md' media size.
                type: integer
              sm:
                description: The number of description items in a row for 'sm' media size.
                type: integer
              xl:
                description: The number of description items in a row for 'xl' media size.
                type: integer
              xs:
                description: The number of description items in a row for 'xs' media size.
                type: integer
            type: object
      items:
        oneOf:
          - description: List of items to display
            items:
              properties:
                label:
                  description: Item label.
                  type: string
                span:
                  description: Number of columns for this item to span.
                  type: integer
                style:
                  description: Css style object to applied to item.
                  type: object
                value:
                  description: Value of item.
                  type: string
              required:
                - label
              type: object
            type: array
          - description: Object of key value pairs to display
            type: object
      layout:
        default: horizontal
        description: Put values next to or below their labels.
        enum:
          - horizontal
          - vertical
        type: string
      size:
        default: default
        description: Size of the block.
        enum:
          - default
          - small
        type: string
      title:
        description: The title of the description block, placed at the top.
        type: string
    type: object