Update README.md
Browse files
README.md
CHANGED
@@ -140,19 +140,21 @@ Others 4,887 files ████████ 4.7%
|
|
140 |
```json
|
141 |
{
|
142 |
"content": "string", // Source code content
|
143 |
-
"repository": "string", // Repository identifier
|
144 |
"path": "string", // File path in repository
|
|
|
145 |
"language": "string", // Programming language
|
146 |
"size_bytes": "integer", // File size in bytes
|
147 |
-
"license": "string", // Original repository license
|
148 |
"quality_score": "float", // AI-assessed quality (0.0-1.0)
|
149 |
-
"
|
150 |
-
"
|
|
|
151 |
"stars": "integer", // Repository popularity
|
|
|
|
|
152 |
"is_test": "boolean", // Test file indicator
|
153 |
-
"
|
154 |
-
"documentation_ratio": "float" // Comment-to-code ratio
|
155 |
}
|
|
|
156 |
```
|
157 |
|
158 |
---
|
|
|
140 |
```json
|
141 |
{
|
142 |
"content": "string", // Source code content
|
|
|
143 |
"path": "string", // File path in repository
|
144 |
+
"filename": "string", // Original filename
|
145 |
"language": "string", // Programming language
|
146 |
"size_bytes": "integer", // File size in bytes
|
|
|
147 |
"quality_score": "float", // AI-assessed quality (0.0-1.0)
|
148 |
+
"complexity": "float", // Complexity score (0.0-1.0)
|
149 |
+
"documentation_ratio": "float", // Comment-to-code ratio
|
150 |
+
"repository": "string", // Repository identifier
|
151 |
"stars": "integer", // Repository popularity
|
152 |
+
"created_date": "string", // Repository creation date
|
153 |
+
"license": "string", // Original repository license
|
154 |
"is_test": "boolean", // Test file indicator
|
155 |
+
"file_hash": "string" // Unique file hash
|
|
|
156 |
}
|
157 |
+
|
158 |
```
|
159 |
|
160 |
---
|