Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -16,7 +16,7 @@ language:
|
|
| 16 |
|
| 17 |
```typescript
|
| 18 |
interface Photo {
|
| 19 |
-
id:
|
| 20 |
color: string
|
| 21 |
description: string | null
|
| 22 |
alt_description: string | null
|
|
@@ -30,5 +30,27 @@ interface Photo {
|
|
| 30 |
thumb: string
|
| 31 |
small_s3: string
|
| 32 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
}
|
| 34 |
```
|
|
|
|
| 16 |
|
| 17 |
```typescript
|
| 18 |
interface Photo {
|
| 19 |
+
id: string
|
| 20 |
color: string
|
| 21 |
description: string | null
|
| 22 |
alt_description: string | null
|
|
|
|
| 30 |
thumb: string
|
| 31 |
small_s3: string
|
| 32 |
}
|
| 33 |
+
width: number
|
| 34 |
+
height: number
|
| 35 |
+
related_tags: string[]
|
| 36 |
+
location: {
|
| 37 |
+
name: string | null
|
| 38 |
+
city: string | null
|
| 39 |
+
country: string | null
|
| 40 |
+
position: {
|
| 41 |
+
latitude: number | null
|
| 42 |
+
longitude: number | null
|
| 43 |
+
}
|
| 44 |
+
}
|
| 45 |
+
exif: {
|
| 46 |
+
make: string | null
|
| 47 |
+
model: string | null
|
| 48 |
+
exposure_time: string | null
|
| 49 |
+
aperture: string | null
|
| 50 |
+
focal_length: string | null
|
| 51 |
+
iso: number | null
|
| 52 |
+
}
|
| 53 |
+
views: number
|
| 54 |
+
downloads: number
|
| 55 |
}
|
| 56 |
```
|