Project

General

Profile

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

calebasse / calebasse / cale_base / fixtures / agenda.json @ 0c0dd2ce

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