-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.yaml
More file actions
39 lines (36 loc) · 1.03 KB
/
example.yaml
File metadata and controls
39 lines (36 loc) · 1.03 KB
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
config:
libname: PB
package: com.github
version: 0.1
description: "Phonebook sample description"
norowip: yes
entries:
- name: phonebook
attribute: TOP
fields:
- name: users
description: "List of users"
attribute: CONTAINER
type: S(user)
- name : user
attribute: LISTABLE
fields:
- name: firstname
type: String
required: 1
- name: lastname
type: String
- name: phonenumbers
attribute: CONTAINER
type: S(phonenumber)
- name: email
type: String
- name: phonenumber
attribute: LISTABLE
fields:
- name: type
type: ENUM(home|cell|work)
required: 1
- name: value
type: String
required: 1