-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrud.yml
58 lines (57 loc) · 1.05 KB
/
crud.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
library:
label: Library
table: library
fields:
name:
type: text
label: Name
required: true
unique: true
type:
type: set
label: Type
items: [small,medium,large]
opening:
type: datetime
label: Opening
homepage:
type: url
label: Homepage
isOpenOnSundays:
type: boolean
label: 'Is Open on Sundays'
book:
label: Book
table: book
listFields: [author, title, library, description]
fields:
title:
type: text
label: Title
required: true
author:
type: text
label: Author
description: The Author of the Book
required: true
pages:
type: integer
label: Pages
required: true
release:
type: date
label: Release
library:
type: reference
label: Library
reference:
nameField: name
entity: library
required: true
description:
type: multiline
label: Description
price:
type: float
label: Price
floatStep: 0.1