-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathconversation.json
More file actions
72 lines (72 loc) · 1.91 KB
/
conversation.json
File metadata and controls
72 lines (72 loc) · 1.91 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://cve.mitre.org/schema/conversation/conversation.json",
"type": "object",
"title": "Conversation",
"description": "JSON Schema for a conversation message",
"properties": {
"UUID": {
"type": "string",
"description": "Unique identifier for the conversation message"
},
"target_uuid": {
"type": "string",
"description": "UUID of the target entity (e.g., Organization)"
},
"previous_conversation_uuid": {
"type": "string",
"description": "UUID of the previous message in the conversation thread"
},
"next_conversation_uuid": {
"type": "string",
"description": "UUID of the next message in the conversation thread"
},
"author_id": {
"type": "string",
"description": "UUID of the message author"
},
"author_name": {
"type": "string",
"description": "Name of the message author"
},
"author_role": {
"type": "string",
"description": "Role of the message author"
},
"visibility": {
"type": "string",
"description": "Visibility level of the message"
},
"body": {
"type": "string",
"description": "Content of the message"
},
"posted_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the message was posted"
},
"edited_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the message was last edited"
},
"editor_id": {
"type": "string",
"description": "UUID of the user who last edited the message"
},
"last_updated": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the message was last updated"
}
},
"required": [
"UUID",
"target_uuid",
"author_id",
"author_name",
"body",
"posted_at"
]
}