-
Notifications
You must be signed in to change notification settings - Fork 254
/
someone-already-mentioned3.yml
66 lines (64 loc) · 1.41 KB
/
someone-already-mentioned3.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
metadata:
title: Disable others radio
short title: Disable
documentation: "https://docassemble.org/docs/fields.html#object_radio"
example start: 3
example end: 3
---
mandatory: True
objects:
agent: Individual
trustee: Individual
beneficiary: Individual
---
question: |
Who is the agent?
fields:
- First name: agent.name.first
- Middle name: agent.name.middle
required: False
- Last name: agent.name.last
- Suffix: agent.name.suffix
required: False
code: name_suffix()
---
question: |
Who is the trustee?
fields:
- no label: trustee
datatype: object_radio
disable others: True
none of the above: Someone else
choices:
- agent
- First name: trustee.name.first
- Middle name: trustee.name.middle
required: False
- Last name: trustee.name.last
- Suffix: trustee.name.suffix
required: False
code: name_suffix()
---
question: |
Who is the beneficiary?
fields:
- no label: beneficiary
datatype: object_radio
disable others: True
none of the above: Someone else
choices:
- agent
- trustee
- First name: beneficiary.name.first
- Middle name: beneficiary.name.middle
required: False
- Last name: beneficiary.name.last
- Suffix: beneficiary.name.suffix
required: False
code: name_suffix()
---
mandatory: True
question: |
The agent is ${ agent }.
The trustee is ${ trustee }.
The beneficiary is ${ beneficiary }.