Project

General

Profile

Download (1.62 KB) Statistics
| Branch: | Tag: | Revision:

calebasse / calebasse / cale_base / fixtures / agenda.json @ 1da8cee7

1
[
2
  {
3
    "pk": 1, 
4
    "model": "agenda.eventtype", 
5
    "fields": {
6
      "label": "patient_appointment"
7
    }
8
  }, 
9
  {
10
    "pk": 2, 
11
    "model": "agenda.eventtype", 
12
    "fields": {
13
      "label": "meeting"
14
    }
15
  }, 
16
  {
17
    "pk": 3, 
18
    "model": "agenda.event", 
19
    "fields": {
20
      "room": 2, 
21
      "event_type": 2, 
22
      "services": [
23
        1, 
24
        2
25
      ], 
26
      "participants": [
27
          5,
28
          6
29
      ], 
30
      "description": "Bla bla bla", 
31
      "title": "Reunion"
32
    }
33
  }, 
34
  {
35
    "pk": 2, 
36
    "model": "agenda.event", 
37
    "fields": {
38
      "room": 1, 
39
      "event_type": 1, 
40
      "services": [
41
        1
42
      ], 
43
      "participants": [
44
        5
45
      ], 
46
      "description": "blabla bla bla", 
47
      "title": "rdv jack"
48
    }
49
  }, 
50
  {
51
    "pk": 1, 
52
    "model": "agenda.event", 
53
    "fields": {
54
      "room": 1, 
55
      "event_type": 1, 
56
      "services": [
57
        1
58
      ], 
59
      "participants": [
60
        5
61
      ], 
62
      "description": "blabla", 
63
      "title": "rdv john doe"
64
    }
65
  }, 
66
  {
67
    "pk": 1, 
68
    "model": "agenda.occurrence", 
69
    "fields": {
70
      "start_time": "2012-10-30T10:00:00", 
71
      "notes": [],
72
      "end_time": "2012-10-30T10:45:00", 
73
      "event": 1
74
    }
75
  }, 
76
  {
77
    "pk": 2, 
78
    "model": "agenda.occurrence", 
79
    "fields": {
80
      "start_time": "2012-10-30T10:45:00", 
81
      "notes": [],
82
      "end_time": "2012-10-30T11:30:00", 
83
      "event": 2
84
    }
85
  }, 
86
  {
87
    "pk": 3, 
88
    "model": "agenda.occurrence", 
89
    "fields": {
90
      "start_time": "2012-10-30T11:30:00", 
91
      "notes": [],
92
      "end_time": "2012-10-30T12:00:00", 
93
      "event": 3
94
    }
95
  }
96
]
(2-2/6)