Arlula · Schema
ArchiveScene
A satellite imagery scene available in the archive.
Earth ObservationGeospatialImageryRemote SensingSatellites
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique ordering ID for the scene. |
| supplier | string | Supplier identifier. |
| captureDate | string | Date the imagery was captured. |
| gsd | number | Ground sample distance in meters. |
| cloudCover | integer | Cloud cover percentage at time of capture. |
| offNadir | number | Off-nadir angle at time of capture. |
| price | number | Price for ordering this scene. |
| bundles | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://arlula.com/json-schema/archive-scene.json",
"title": "ArchiveScene",
"description": "A satellite imagery scene available in the archive.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique ordering ID for the scene.",
"examples": [
"scene-a1b2c3d4"
]
},
"supplier": {
"type": "string",
"description": "Supplier identifier.",
"examples": [
"supplier-001"
]
},
"captureDate": {
"type": "string",
"description": "Date the imagery was captured.",
"examples": [
"2025-02-15"
]
},
"gsd": {
"type": "number",
"description": "Ground sample distance in meters.",
"examples": [
1.5
]
},
"cloudCover": {
"type": "integer",
"description": "Cloud cover percentage at time of capture.",
"examples": [
12
]
},
"offNadir": {
"type": "number",
"description": "Off-nadir angle at time of capture.",
"examples": [
15.2
]
},
"price": {
"type": "number",
"description": "Price for ordering this scene.",
"examples": [
150.0
]
},
"bundles": {
"type": "array",
"items": {
"$ref": "https://arlula.com/json-schema/bundle.json"
}
}
}
}