Arlula · Schema

Resource

A downloadable resource within a dataset.

Earth ObservationGeospatialImageryRemote SensingSatellites

Properties

Name Type Description
resourceId string Resource identifier.
type string Resource type (GeoTIFF, Preview, Metadata, etc.).
filename string Original filename.
View JSON Schema on GitHub

JSON Schema

arlula-resource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://arlula.com/json-schema/resource.json",
  "title": "Resource",
  "description": "A downloadable resource within a dataset.",
  "type": "object",
  "properties": {
    "resourceId": {
      "type": "string",
      "description": "Resource identifier.",
      "examples": [
        "resource-001"
      ]
    },
    "type": {
      "type": "string",
      "description": "Resource type (GeoTIFF, Preview, Metadata, etc.).",
      "examples": [
        "GeoTIFF"
      ]
    },
    "filename": {
      "type": "string",
      "description": "Original filename.",
      "examples": [
        "imagery.tif"
      ]
    }
  }
}