-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathschema.yml
44 lines (44 loc) · 937 Bytes
/
schema.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
---
qb_schema:
custom_class_Appointment:
name: Appointment
fields:
provider_id: Integer
client_id: Integer
dialog_id: String
description: String
priority: Integer
notes: String
conclusion: String
language: String
date_end: Date
permissions:
read:
access: open_for_users_ids
update:
access: open_for_users_ids
delete:
access: open_for_users_ids
create:
access: open
primary: true
custom_class_Record:
name: Record
fields:
name: String
appointment_id: String
transcription: String_a
summary: String
actions: String
uid: String
permissions:
read:
access: open_for_users_ids
update:
access: open_for_users_ids
delete:
access: not_allowed
primary: true
create:
access: open
primary: true