-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_structure.json
More file actions
50 lines (50 loc) · 1.32 KB
/
Copy pathexample_structure.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "Project Documentation",
"type": "directory",
"children": [
{
"name": "Getting Started",
"type": "directory",
"body": "Welcome to our documentation. This is the body content for Getting Started.",
"children": [
{
"name": "Installation.md",
"type": "file",
"body": "## Step 1: Download the installer\n## Step 2: Run the setup\n\nFollow these steps carefully."
},
{
"name": "Configuration.md",
"type": "file",
"body": "## Basic Settings\nSet your preferences here.\n\n## Advanced Settings\nConfigure advanced options."
}
]
},
{
"name": "API Reference",
"type": "directory",
"children": [
{
"name": "endpoints.json",
"type": "file",
"body": "{\n \"version\": \"1.0\",\n \"endpoints\": [\"/api/users\", \"/api/data\"]\n}"
},
{
"name": "examples",
"type": "directory",
"children": [
{
"name": "example1.txt",
"type": "file",
"body": "This is example 1 content."
}
]
}
]
},
{
"name": "README.md",
"type": "file",
"body": "# Project Title\n\nThis is the main README file."
}
]
}