# Panel (ruian_address)
Pick single RUIAN address and store it into output variable
# Description
You can enable fulltext search for addresses in RUIAN database via API
# Screenshots
# Config
ruian_address:
config:
# Required | Type: string | Default: null
# DSN string with API URL and credentials
#
### Examples
### - https://user:pass@ruian.ispalliance.cz/api
connection: "https://username:password@host"
# Required | Type: string | Default: null
# Name of variable in which selected data should be stored
output: "myvar"
# Picker
picker:
# Optional | Type: bool | Default: true
# Whether to show picker or not
enabled: true
# Optional | Type: int | Default: 5
# Number of addresses which will be shown below the search input
limit: 5
# Optional | Type: string | Default: null
# Default query to be filled when panel is displayed
default_query: "Praha"
# Form
form:
# Optional | Type: bool | Default: null
# Whether to allow changes of address in form
#
### Note
### When enabled user can fill whatever address including non Czech addresses
enabled: null
# UI
ui:
# Optional | Type: string | Default: null
# Panel title
title: "Panel title"
# Optional | Type: string | Default: null
# Panel description
description: "Panel description"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
← rest sudo_reopener →