-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudzero-insight.json
More file actions
47 lines (47 loc) · 1.3 KB
/
cloudzero-insight.json
File metadata and controls
47 lines (47 loc) · 1.3 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-evangelist/cloudzero/blob/main/json-schema/cloudzero-insight.json",
"title": "CloudZero Insight",
"description": "Represents a cost insight for tracking cost anomalies and patterns within CloudZero.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the insight."
},
"name": {
"type": "string",
"description": "Display name for the insight."
},
"description": {
"type": "string",
"description": "Description of what the insight tracks."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the insight was created."
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the insight was last updated."
},
"filters": {
"type": "object",
"additionalProperties": true,
"description": "Filters applied to the insight for narrowing cost data."
},
"group_by": {
"type": "array",
"items": {
"type": "string"
},
"description": "Dimensions used for grouping cost data within the insight."
}
},
"required": [
"id",
"name"
]
}