-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel.yaml
More file actions
44 lines (44 loc) · 895 Bytes
/
model.yaml
File metadata and controls
44 lines (44 loc) · 895 Bytes
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
name: TodoList
description: A Todo List
model:
packageName : com.generatron.todolist
entities :
- name : TodoItem
attributes:
- name : id
type : Integer
primaryKey : true
- name : order
type : Integer
- name : title
type : String
- name : dueDate
type : date
- name : completed
type : Bool
- name : url
type : String
- name : tasks
type : Collection
generic : Task
via : Todo
- name : status
type : Status
- name : Task
attributes:
- name : id
type : Integer
primaryKey : true
- name : todo
type : TodoItem
- name : title
type : String
- name : description
type : String
- name : Status
attributes:
- name : id
type : Integer
primaryKey : true
- name : name
type : String