-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsample_rfd.json
More file actions
48 lines (48 loc) · 1.19 KB
/
sample_rfd.json
File metadata and controls
48 lines (48 loc) · 1.19 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
{
"rfd_id": "test_rfd_001",
"name": "Test RFD for Mock Data Generation",
"description": "A test RFD for verifying mock data generation capabilities",
"schema": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier for each record"
},
"name": {
"type": "string",
"description": "Name of the entity"
},
"value": {
"type": "number",
"description": "Numeric value associated with the entity"
},
"is_active": {
"type": "boolean",
"description": "Whether the entity is active"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "List of tags associated with the entity"
},
"metadata": {
"type": "object",
"properties": {
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
}
}
}
},
"required": ["id", "name", "value", "is_active", "tags", "metadata"]
},
"num_records": 5
}