Project

General

Profile

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

calebasse / calebasse / cale_base / fixtures / agenda.json @ f8ad3b42

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