Uuid

The Uuid type is for a text input which contains an uuid value.

Settings

Name Type Default Required
integer 30
integer 4
boolean true

size

size
Type
integer
Default
30

Size for the input field. Min value is 10 and max value is 50.

version

version
Type
integer
Default
4

Version for the uuid. Please have a look at the Symphony Documentation for more information.

enableCopyToClipboard

enableCopyToClipboard
Type
boolean
Default
true

If set to false, the button for copying the uuid into the clipboard will not be rendered.

Examples

Minimal

name: example/uuid
fields:
  - identifier: uuid
    type: Uuid
Copied!

Advanced / use case

name: example/uuid
fields:
  - identifier: uuid
    type: Uuid
    size: 50
    version: 7
    enableCopyToClipboard: false
Copied!