cartodb-4.29/lib/formats/asset/storage_info.json
2020-06-15 10:58:47 +08:00

20 lines
537 B
JSON

{
"type": "object",
"required": ["type", "location", "identifier"],
"additionalProperties": false,
"properties": {
"type": {
"description": "Describes in what service the asset is hosted in",
"enum": ["s3", "local"]
},
"location": {
"description": "The sub-level in which the asset is located (i.e: bucket, subdirectory)",
"type": "string"
},
"identifier": {
"description": "Must identify an asset within a location uniquely (i.e: full path)",
"type": "string"
}
}
}