42a5d9728a79209c245aa23f5395de1f6c60724d
[yaffs-website] / web / core / modules / workflows / config / schema / workflows.schema.yml
1 workflows.workflow.*:
2   type: config_entity
3   label: 'Workflow'
4   mapping:
5     id:
6       type: string
7       label: 'ID'
8     label:
9       type: label
10       label: 'Label'
11     type:
12       type: string
13       label: 'Workflow type'
14     type_settings:
15       type: workflow.type_settings.[%parent.type]
16
17 workflows.state:
18   type: mapping
19   mapping:
20     label:
21       type: label
22       label: 'Label'
23     weight:
24       type: integer
25       label: 'Weight'
26
27 workflows.transition:
28   type: mapping
29   mapping:
30     label:
31       type: label
32       label: 'Transition label'
33     from:
34       type: sequence
35       label: 'From state IDs'
36       sequence:
37         type: string
38         label: 'From state ID'
39     to:
40       type: string
41       label: 'To state ID'
42     weight:
43       type: integer
44       label: 'Weight'