From d60041d5bf2ce67bf19338228b48daad07bc3025 Mon Sep 17 00:00:00 2001 From: Tommaso Visconti Date: Mon, 25 Nov 2024 15:07:02 +0100 Subject: [PATCH] draft --- api.go | 21 + cmd/component/main.go | 67 + cmd/component/response.json | 17987 ++++++++++++++++++++++++++++++++++ config.example.toml | 1 + http.go | 3 +- json_structs.go | 17 + smugmug.go | 12 +- 7 files changed, 18102 insertions(+), 6 deletions(-) create mode 100644 cmd/component/main.go create mode 100644 cmd/component/response.json diff --git a/api.go b/api.go index 938932f..0159879 100644 --- a/api.go +++ b/api.go @@ -77,6 +77,27 @@ func (w *Worker) albumImages(firstURI string, albumPath string) ([]albumImage, e // Loop over response in inject the albumPath and then append to the images for _, i := range a.Response.AlbumImage { i.AlbumPath = albumPath + log.Debugf("Component => `%s`", i.Uris.Components.Uri) + if w.cfg.DownloadRaw && i.Uris.Components.Uri != "" { + var c imageComponent + if err := w.req.get(i.Uris.Components.Uri, &c); err != nil { + log.Errorf("error getting image components from %s. Error: %v", i.Uris.Components.Uri, err) + continue + } + + for _, comp := range c.Response.Component { + if comp.ComponentType == componentTypeRaw { + log.Debugf("Found raw image for %s: %s", i.FileName, comp.DownloadUrl) + i.ArchivedUri = comp.DownloadUrl + i.ArchivedSize = comp.FileSize + i.FileName = comp.FileName + i.ArchivedMD5 = comp.MD5 + break + + } + } + } + if err := i.buildFilename(w.filenameTmpl); err != nil { return nil, fmt.Errorf("cannot build image filename: %v", err) } diff --git a/cmd/component/main.go b/cmd/component/main.go new file mode 100644 index 0000000..d1e965c --- /dev/null +++ b/cmd/component/main.go @@ -0,0 +1,67 @@ +package main + +import ( + "encoding/json" + "fmt" + "log" + "os" +) + +func main() { + fmt.Printf("Reading %s", os.Args[1]) + f, err := os.ReadFile(os.Args[1]) + if err != nil { + log.Fatal("cannot read file: %v", err) + } + + var c albumImagesResponse + + if err := json.Unmarshal(f, &c); err != nil { + log.Fatalf("cannot unmarshal: %v", err) + } + + log.Printf("%+v", c) +} + +type albumImagesResponse struct { + Response struct { + URI string `json:"Uri"` + AlbumImage []albumImage `json:"AlbumImage"` + Pages struct { + NextPage string `json:"NextPage"` + } `json:"Pages"` + } `json:"Response"` +} + +type albumImage struct { + AlbumPath string // From album.URLPath + FileName string `json:"FileName"` + ImageKey string `json:"ImageKey"` // Use as unique ID if FileName is empty + ArchivedMD5 string `json:"ArchivedMD5"` + ArchivedSize int64 `json:"ArchivedSize"` + ArchivedUri string `json:"ArchivedUri"` + IsVideo bool `json:"IsVideo"` + Processing bool `json:"Processing"` + UploadKey string `json:"UploadKey"` + DateTimeOriginal string `json:"DateTimeOriginal"` + Caption string `json:"Caption"` + DateTimeUploaded string `json:"DateTimeUploaded"` + Keywords string `json:"Keywords"` + Latitude string `json:"Latitude"` + Longitude string `json:"Longitude"` + Status string `json:"Status"` + SubStatus string `json:"SubStatus"` + Uris struct { + ImageMetadata struct { + Uri string `json:"Uri"` + } `json:"ImageMetadata"` + LargestVideo struct { + Uri string `json:"Uri"` + } `json:"LargestVideo"` + Components struct { + Uri string `json:"Uri"` + } `json:"Components"` + } `json:"Uris"` + + builtFilename string // The final filename, after template replacements +} diff --git a/cmd/component/response.json b/cmd/component/response.json new file mode 100644 index 0000000..f377751 --- /dev/null +++ b/cmd/component/response.json @@ -0,0 +1,17987 @@ +{ + "Request": { + "Version": "v2", + "Method": "GET", + "Uri": "/api/v2/album/Rqhn87!images?start=101&count=100" + }, + "Options": { + "MethodDetails": { + "OPTIONS": { + "Permissions": [ + "Read" + ] + }, + "GET": { + "Permissions": [ + "Read" + ] + }, + "POST": { + "Permissions": [ + "Add" + ] + } + }, + "Methods": [ + "OPTIONS", + "GET", + "POST" + ], + "ParameterDescription": { + "Varchar": "Variable length text from MIN_CHARS to MAX_CHARS (MAX_CHARS = INFINITY meaning arbitrary length)", + "Integer": "Integer value in the range MIN_VALUE to MAX_VALUE, inclusive", + "Boolean": "For true return type true or 1, for false type false or 0", + "Array": "An indexed array of values with a length in the range MIN_COUNT to MAX_COUNT, inclusive.", + "File": "A file", + "Uri": "Absolute or relative URL, restricted to Locator(s) of the supplied URL if not null. Up to a MAX_LENGTH in length." + }, + "Parameters": { + "GET": [ + { + "Name": "FileNames", + "Required": false, + "ReadOnly": false, + "Default": "", + "Description": "A list of filenames (percent-encoded and comma-separated); if used, an image will only be included in the result set if its file name is in the list", + "Type": "Varchar", + "MIN_CHARS": 0, + "MAX_CHARS": "INFINITY" + }, + { + "Name": "SkuId", + "Required": false, + "ReadOnly": false, + "Default": null, + "Description": "An optional SKU ID filter. Only images that are valid for this SKU will be returned", + "Type": "Integer", + "MIN_VALUE": 0, + "MAX_VALUE": "POSITIVE_INFINITY" + } + ], + "POST": [ + { + "Name": "ByteCount", + "Required": true, + "ReadOnly": false, + "Default": null, + "Description": "The size of the media file in bytes, for improved error-detection", + "Type": "Integer", + "MIN_VALUE": 1, + "MAX_VALUE": "POSITIVE_INFINITY" + }, + { + "Name": "Caption", + "Required": false, + "ReadOnly": false, + "Default": null, + "Description": "The caption to attach to the uploaded media", + "Type": "Varchar", + "MIN_CHARS": 0, + "MAX_CHARS": "INFINITY" + }, + { + "Name": "Hidden", + "Required": false, + "ReadOnly": false, + "Default": false, + "Description": "Should the uploaded media be set as hidden?", + "Type": "Boolean" + }, + { + "Name": "Keywords", + "Required": false, + "ReadOnly": false, + "Default": null, + "Description": "Keywords to attach to the uploaded media", + "Type": "Array", + "ITEM_TYPE": "Varchar", + "MIN_COUNT": 0, + "MAX_COUNT": "INFINITY" + }, + { + "Name": "MD5Sum", + "Required": true, + "ReadOnly": false, + "Default": null, + "Description": "The MD5 hash of the media file as a hexadecimal string, for improved error-detection", + "Type": "Varchar", + "MIN_CHARS": 32, + "MAX_CHARS": 32 + }, + { + "Name": "Title", + "Required": false, + "ReadOnly": false, + "Default": null, + "Description": "The title to attach to the uploaded media", + "Type": "Varchar", + "MIN_CHARS": 0, + "MAX_CHARS": "INFINITY" + }, + { + "Name": "Media", + "Required": true, + "ReadOnly": false, + "Default": null, + "Description": "The photo or video itself", + "Type": "File" + }, + { + "Name": "ReplaceMediaUri", + "Required": false, + "ReadOnly": false, + "Default": null, + "Description": "AlbumImageUri to be replaced by the media", + "Type": "Uri", + "MAX_LENGTH": "INFINITY", + "Locator": [] + } + ] + }, + "MediaTypes": [ + "application/json", + "application/vnd.php.serialized", + "application/x-msgpack", + "text/html", + "text/csv" + ], + "Notes": [ + "_multiargs does not work at this endpoint" + ], + "Path": [ + { + "type": "path", + "text": "api" + }, + { + "type": "path", + "text": "v2" + }, + { + "type": "path", + "text": "album" + }, + { + "type": "singleparam", + "param_name": "albumkey", + "param_value": "Rqhn87", + "param_validator": {} + }, + { + "type": "action", + "text": "images" + } + ] + }, + "Response": { + "Uri": "/api/v2/album/Rqhn87!images?start=101&count=100", + "Locator": "AlbumImage", + "LocatorType": "Objects", + "AlbumImage": [ + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-rDgc9WC/0/NCG6C78W7zmJSHtkHZTLWV3fpVjGXJN2gGLsnVBf9/Th/i-rDgc9WC-Th.jpg", + "FileName": "100_4238.jpg", + "Processing": false, + "UploadKey": "15189450033", + "Date": "2024-06-07T22:27:26+00:00", + "DateTimeUploaded": "2024-06-07T22:27:26+00:00", + "DateTimeOriginal": "2006-08-08T22:22:18+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 586315, + "LastUpdated": "2024-06-07T22:27:27+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "rDgc9WC", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-rDgc9WC/0/KvpxLnL9hXZP6cbghZtf6G4dBZz2p7fFgwVBbFrBX/D/i-rDgc9WC-D.jpg", + "ArchivedSize": 586315, + "ArchivedMD5": "864053df1130a94cc9dd95512e0b1dc3", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4238.jpg", + "text": "100_4238.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/rDgc9WC-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-rDgc9WC", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/rDgc9WC!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/rDgc9WC-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/rDgc9WC-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/rDgc9WC-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/rDgc9WC-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/rDgc9WC-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/rDgc9WC-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/rDgc9WC-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/rDgc9WC-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/rDgc9WC-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/rDgc9WC-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/rDgc9WC-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/rDgc9WC-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/rDgc9WC-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/rDgc9WC-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/rDgc9WC-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/rDgc9WC-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/rDgc9WC-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/rDgc9WC-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/rDgc9WC-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/rDgc9WC-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/rDgc9WC-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-fxmCTcm/0/M2VLvDFqgCDKQJPXz8KmRmc65MZQ9djHPK8fXpDj7/Th/i-fxmCTcm-Th.jpg", + "FileName": "100_4239.jpg", + "Processing": false, + "UploadKey": "15189450142", + "Date": "2024-06-07T22:27:28+00:00", + "DateTimeUploaded": "2024-06-07T22:27:28+00:00", + "DateTimeOriginal": "2006-08-08T22:22:40+00:00", + "Format": "JPG", + "OriginalHeight": 2032, + "OriginalWidth": 1524, + "OriginalSize": 1280917, + "LastUpdated": "2024-06-07T22:27:29+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "fxmCTcm", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-fxmCTcm/0/McFt6pkJtX3ss8wB7vBfTz83CsjqMtjrHwBz9f3k9/D/i-fxmCTcm-D.jpg", + "ArchivedSize": 1280917, + "ArchivedMD5": "3fbd170425ac67450f7e911435f7da9e", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4239.jpg", + "text": "100_4239.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/fxmCTcm-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-fxmCTcm", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/fxmCTcm!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/fxmCTcm-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/fxmCTcm-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/fxmCTcm-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/fxmCTcm-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/fxmCTcm-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/fxmCTcm-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/fxmCTcm-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/fxmCTcm-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/fxmCTcm-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/fxmCTcm-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/fxmCTcm-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/fxmCTcm-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/fxmCTcm-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/fxmCTcm-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/fxmCTcm-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/fxmCTcm-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/fxmCTcm-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/fxmCTcm-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/fxmCTcm-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/fxmCTcm-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/fxmCTcm-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-c8T6vLh/0/LqZbJ5LQR4nb2tD2QXhG9GK3BFBMqJTzfz6MxZtt4/Th/i-c8T6vLh-Th.jpg", + "FileName": "100_4240.jpg", + "Processing": false, + "UploadKey": "15189450126", + "Date": "2024-06-07T22:27:28+00:00", + "DateTimeUploaded": "2024-06-07T22:27:28+00:00", + "DateTimeOriginal": "2006-08-08T22:23:41+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 684293, + "LastUpdated": "2024-06-07T22:27:28+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "c8T6vLh", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-c8T6vLh/0/MzZp4rVZkg4CdTq8k2FvdzZZckJ974Jdgx7Wcgm8n/D/i-c8T6vLh-D.jpg", + "ArchivedSize": 684293, + "ArchivedMD5": "6f1c1b570dd41e051bd64d57c3f12380", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4240.jpg", + "text": "100_4240.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/c8T6vLh-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-c8T6vLh", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/c8T6vLh!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/c8T6vLh-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/c8T6vLh-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/c8T6vLh-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/c8T6vLh-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/c8T6vLh-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/c8T6vLh-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/c8T6vLh-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/c8T6vLh-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/c8T6vLh-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/c8T6vLh-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/c8T6vLh-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/c8T6vLh-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/c8T6vLh-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/c8T6vLh-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/c8T6vLh-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/c8T6vLh-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/c8T6vLh-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/c8T6vLh-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/c8T6vLh-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/c8T6vLh-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/c8T6vLh-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-THHcLCg/0/NhNQMzxjzHZNLmX8JZ4Js24Zr49pmwdk26W92H3vx/Th/i-THHcLCg-Th.jpg", + "FileName": "100_4241.jpg", + "Processing": false, + "UploadKey": "15189450186", + "Date": "2024-06-07T22:27:29+00:00", + "DateTimeUploaded": "2024-06-07T22:27:29+00:00", + "DateTimeOriginal": "2006-08-08T22:24:37+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 979981, + "LastUpdated": "2024-06-07T22:27:30+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "THHcLCg", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-THHcLCg/0/LRnD3bPLkVgBXFTrdSfQ6WBD5FtqzLs9F8Fj48NR9/D/i-THHcLCg-D.jpg", + "ArchivedSize": 979981, + "ArchivedMD5": "60d783d52826368277f2024cf45f4bb9", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4241.jpg", + "text": "100_4241.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/THHcLCg-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-THHcLCg", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/THHcLCg!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/THHcLCg-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/THHcLCg-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/THHcLCg-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/THHcLCg-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/THHcLCg-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/THHcLCg-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/THHcLCg-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/THHcLCg-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/THHcLCg-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/THHcLCg-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/THHcLCg-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/THHcLCg-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/THHcLCg-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/THHcLCg-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/THHcLCg-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/THHcLCg-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/THHcLCg-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/THHcLCg-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/THHcLCg-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/THHcLCg-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/THHcLCg-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-KKXT8QH/0/KtQtMccjnsVcG5WVQwLwRK2SCB7QLXH4wMdH6253K/Th/i-KKXT8QH-Th.jpg", + "FileName": "100_4242.jpg", + "Processing": false, + "UploadKey": "15189450227", + "Date": "2024-06-07T22:27:29+00:00", + "DateTimeUploaded": "2024-06-07T22:27:29+00:00", + "DateTimeOriginal": "2006-08-08T22:25:53+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 392795, + "LastUpdated": "2024-06-07T22:27:30+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "KKXT8QH", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-KKXT8QH/0/K3bZpfWGQbc8FhKBQ6stKq3mzsb2hzsZtNLPs8pfr/D/i-KKXT8QH-D.jpg", + "ArchivedSize": 392795, + "ArchivedMD5": "13a2143565147faf600011c6b4b7723d", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4242.jpg", + "text": "100_4242.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/KKXT8QH-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-KKXT8QH", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/KKXT8QH!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/KKXT8QH-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/KKXT8QH-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/KKXT8QH-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/KKXT8QH-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/KKXT8QH-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/KKXT8QH-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/KKXT8QH-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/KKXT8QH-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/KKXT8QH-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/KKXT8QH-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/KKXT8QH-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/KKXT8QH-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/KKXT8QH-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/KKXT8QH-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/KKXT8QH-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/KKXT8QH-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/KKXT8QH-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/KKXT8QH-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/KKXT8QH-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/KKXT8QH-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/KKXT8QH-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-ZFqTKmS/0/MCfdVtRTc75PMjK7xqbjvhdv7Vxwc7BF676gPHn7X/Th/i-ZFqTKmS-Th.jpg", + "FileName": "100_4243.jpg", + "Processing": false, + "UploadKey": "15189450263", + "Date": "2024-06-07T22:27:30+00:00", + "DateTimeUploaded": "2024-06-07T22:27:30+00:00", + "DateTimeOriginal": "2006-08-08T22:26:41+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 616648, + "LastUpdated": "2024-06-07T22:27:30+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "ZFqTKmS", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-ZFqTKmS/0/L7S6LsX4XrZtvV3NTHCgsGMM2pxSJhdXBhdrnsxKN/D/i-ZFqTKmS-D.jpg", + "ArchivedSize": 616648, + "ArchivedMD5": "3ccf04902f68185d9a317bb69c5f0715", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4243.jpg", + "text": "100_4243.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/ZFqTKmS-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-ZFqTKmS", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/ZFqTKmS!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/ZFqTKmS-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/ZFqTKmS-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/ZFqTKmS-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/ZFqTKmS-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/ZFqTKmS-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/ZFqTKmS-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/ZFqTKmS-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/ZFqTKmS-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/ZFqTKmS-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/ZFqTKmS-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/ZFqTKmS-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/ZFqTKmS-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/ZFqTKmS-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/ZFqTKmS-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/ZFqTKmS-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/ZFqTKmS-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/ZFqTKmS-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/ZFqTKmS-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/ZFqTKmS-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/ZFqTKmS-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/ZFqTKmS-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-w8rKRQr/0/LHfbDrv9xp4dgPPNtjVMKFNM7f7dxMZBT2QrCJZQr/Th/i-w8rKRQr-Th.jpg", + "FileName": "100_4244.jpg", + "Processing": false, + "UploadKey": "15189450285", + "Date": "2024-06-07T22:27:30+00:00", + "DateTimeUploaded": "2024-06-07T22:27:30+00:00", + "DateTimeOriginal": "2006-08-08T22:27:51+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 342689, + "LastUpdated": "2024-06-07T22:27:31+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "w8rKRQr", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-w8rKRQr/0/KqHwRLjXQVMTT4JwzjF4fn6mkTb2ZSXdsDVCRSVND/D/i-w8rKRQr-D.jpg", + "ArchivedSize": 342689, + "ArchivedMD5": "ab554dd69fe8cb594734a5693338d237", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4244.jpg", + "text": "100_4244.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/w8rKRQr-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-w8rKRQr", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/w8rKRQr!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/w8rKRQr-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/w8rKRQr-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/w8rKRQr-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/w8rKRQr-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/w8rKRQr-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/w8rKRQr-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/w8rKRQr-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/w8rKRQr-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/w8rKRQr-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/w8rKRQr-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/w8rKRQr-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/w8rKRQr-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/w8rKRQr-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/w8rKRQr-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/w8rKRQr-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/w8rKRQr-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/w8rKRQr-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/w8rKRQr-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/w8rKRQr-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/w8rKRQr-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/w8rKRQr-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-x7JWX26/0/LsdCt5t9cdPwS55fh2gJr87nnQsTkW8pD3Ds4KdXf/Th/i-x7JWX26-Th.jpg", + "FileName": "100_4245.jpg", + "Processing": false, + "UploadKey": "15189450315", + "Date": "2024-06-07T22:27:30+00:00", + "DateTimeUploaded": "2024-06-07T22:27:30+00:00", + "DateTimeOriginal": "2006-08-08T22:30:12+00:00", + "Format": "JPG", + "OriginalHeight": 2032, + "OriginalWidth": 1524, + "OriginalSize": 409101, + "LastUpdated": "2024-06-07T22:27:31+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "x7JWX26", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-x7JWX26/0/MTDvzQHfkHrkVtGshVdrLfmRz74THW9pbhCQn3QGC/D/i-x7JWX26-D.jpg", + "ArchivedSize": 409101, + "ArchivedMD5": "ebc62c4f4a2efe80c119be8329d06148", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4245.jpg", + "text": "100_4245.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/x7JWX26-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-x7JWX26", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/x7JWX26!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/x7JWX26-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/x7JWX26-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/x7JWX26-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/x7JWX26-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/x7JWX26-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/x7JWX26-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/x7JWX26-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/x7JWX26-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/x7JWX26-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/x7JWX26-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/x7JWX26-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/x7JWX26-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/x7JWX26-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/x7JWX26-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/x7JWX26-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/x7JWX26-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/x7JWX26-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/x7JWX26-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/x7JWX26-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/x7JWX26-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/x7JWX26-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-Tv9H8J5/0/KXD8qhxSFp2wFSmgfDNvkL6zPmzDSR6ZJjqhJjZZv/Th/i-Tv9H8J5-Th.jpg", + "FileName": "100_4246.jpg", + "Processing": false, + "UploadKey": "15189450394", + "Date": "2024-06-07T22:27:31+00:00", + "DateTimeUploaded": "2024-06-07T22:27:31+00:00", + "DateTimeOriginal": "2006-08-08T22:34:02+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 797151, + "LastUpdated": "2024-06-07T22:27:32+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "Tv9H8J5", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-Tv9H8J5/0/KZMrJZ9BgjbtpPD7KPN65GkC77rgWBtGfkdgqn4gW/D/i-Tv9H8J5-D.jpg", + "ArchivedSize": 797151, + "ArchivedMD5": "ee400e428bb4df1bbb9bad061134b0f2", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4246.jpg", + "text": "100_4246.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/Tv9H8J5-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-Tv9H8J5", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/Tv9H8J5!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/Tv9H8J5-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/Tv9H8J5-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/Tv9H8J5-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/Tv9H8J5-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/Tv9H8J5-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/Tv9H8J5-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/Tv9H8J5-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/Tv9H8J5-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/Tv9H8J5-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/Tv9H8J5-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/Tv9H8J5-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/Tv9H8J5-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/Tv9H8J5-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/Tv9H8J5-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/Tv9H8J5-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/Tv9H8J5-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/Tv9H8J5-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/Tv9H8J5-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/Tv9H8J5-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/Tv9H8J5-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/Tv9H8J5-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-HBMPq4M/0/LRKPxw48WnWkLNXxq8hWRdR43rX2wSKpf2jm6R584/Th/i-HBMPq4M-Th.jpg", + "FileName": "100_4247.jpg", + "Processing": false, + "UploadKey": "15189450405", + "Date": "2024-06-07T22:27:32+00:00", + "DateTimeUploaded": "2024-06-07T22:27:32+00:00", + "DateTimeOriginal": "2006-08-09T01:02:51+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 577829, + "LastUpdated": "2024-06-07T22:27:32+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "HBMPq4M", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-HBMPq4M/0/M8TWCKgCVWrWk773sxGqjdvcnWTTxgxpdCdvv5wzv/D/i-HBMPq4M-D.jpg", + "ArchivedSize": 577829, + "ArchivedMD5": "8d4853dd473e2751b4b182075d9a6336", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4247.jpg", + "text": "100_4247.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/HBMPq4M-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-HBMPq4M", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/HBMPq4M!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/HBMPq4M-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/HBMPq4M-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/HBMPq4M-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/HBMPq4M-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/HBMPq4M-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/HBMPq4M-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/HBMPq4M-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/HBMPq4M-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/HBMPq4M-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/HBMPq4M-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/HBMPq4M-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/HBMPq4M-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/HBMPq4M-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/HBMPq4M-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/HBMPq4M-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/HBMPq4M-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/HBMPq4M-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/HBMPq4M-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/HBMPq4M-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/HBMPq4M-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/HBMPq4M-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-Shm4PNW/0/NFN93Gq9kxPXgC4MXkWfPnJwQtHLRmxLzsKkM9Q9b/Th/i-Shm4PNW-Th.jpg", + "FileName": "100_4248.jpg", + "Processing": false, + "UploadKey": "15189450429", + "Date": "2024-06-07T22:27:32+00:00", + "DateTimeUploaded": "2024-06-07T22:27:32+00:00", + "DateTimeOriginal": "2006-08-09T01:03:07+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 596321, + "LastUpdated": "2024-06-07T22:27:33+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "Shm4PNW", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-Shm4PNW/0/L8zhGVtcJDpRDBWXf4F4tvvHpbTjGfTWmsbFcjd2n/D/i-Shm4PNW-D.jpg", + "ArchivedSize": 596321, + "ArchivedMD5": "52be4bee029217fe9f26a8f3c0d4d393", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4248.jpg", + "text": "100_4248.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/Shm4PNW-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-Shm4PNW", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/Shm4PNW!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/Shm4PNW-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/Shm4PNW-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/Shm4PNW-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/Shm4PNW-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/Shm4PNW-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/Shm4PNW-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/Shm4PNW-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/Shm4PNW-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/Shm4PNW-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/Shm4PNW-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/Shm4PNW-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/Shm4PNW-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/Shm4PNW-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/Shm4PNW-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/Shm4PNW-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/Shm4PNW-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/Shm4PNW-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/Shm4PNW-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/Shm4PNW-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/Shm4PNW-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/Shm4PNW-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-C9zsJQ5/0/KQZcvH93jQ2wWdCR9MpLWsJtcbrCNK3DChS9ZmQcz/Th/i-C9zsJQ5-Th.jpg", + "FileName": "100_4249.jpg", + "Processing": false, + "UploadKey": "15189450494", + "Date": "2024-06-07T22:27:33+00:00", + "DateTimeUploaded": "2024-06-07T22:27:33+00:00", + "DateTimeOriginal": "2006-08-09T01:03:25+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 456760, + "LastUpdated": "2024-06-07T22:27:34+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "C9zsJQ5", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-C9zsJQ5/0/KxcfcnN7jTVs9DP3tdFkrVCT5D5Z3N2SFHDNxZCwC/D/i-C9zsJQ5-D.jpg", + "ArchivedSize": 456760, + "ArchivedMD5": "4b7c22e2bbd95fa1b4566ff249c57a37", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4249.jpg", + "text": "100_4249.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/C9zsJQ5-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-C9zsJQ5", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/C9zsJQ5!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/C9zsJQ5-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/C9zsJQ5-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/C9zsJQ5-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/C9zsJQ5-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/C9zsJQ5-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/C9zsJQ5-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/C9zsJQ5-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/C9zsJQ5-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/C9zsJQ5-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/C9zsJQ5-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/C9zsJQ5-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/C9zsJQ5-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/C9zsJQ5-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/C9zsJQ5-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/C9zsJQ5-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/C9zsJQ5-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/C9zsJQ5-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/C9zsJQ5-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/C9zsJQ5-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/C9zsJQ5-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/C9zsJQ5-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-GgQcqTB/0/KbrpRCg7Xb5pCvBfFMrrh2QjZXRZtP4QP35gfZqrw/Th/i-GgQcqTB-Th.jpg", + "FileName": "100_4250.jpg", + "Processing": false, + "UploadKey": "15189450528", + "Date": "2024-06-07T22:27:33+00:00", + "DateTimeUploaded": "2024-06-07T22:27:33+00:00", + "DateTimeOriginal": "2006-08-09T01:03:40+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 504886, + "LastUpdated": "2024-06-07T22:27:34+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "GgQcqTB", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-GgQcqTB/0/NCRhZfJTfjLtNQtxt7PDNF4gm6mLKR66LKwkt7QJN/D/i-GgQcqTB-D.jpg", + "ArchivedSize": 504886, + "ArchivedMD5": "0c12eaa48ed3d1eb0f13cb045190e1d8", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4250.jpg", + "text": "100_4250.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/GgQcqTB-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-GgQcqTB", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/GgQcqTB!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/GgQcqTB-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/GgQcqTB-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/GgQcqTB-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/GgQcqTB-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/GgQcqTB-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/GgQcqTB-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/GgQcqTB-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/GgQcqTB-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/GgQcqTB-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/GgQcqTB-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/GgQcqTB-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/GgQcqTB-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/GgQcqTB-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/GgQcqTB-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/GgQcqTB-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/GgQcqTB-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/GgQcqTB-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/GgQcqTB-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/GgQcqTB-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/GgQcqTB-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/GgQcqTB-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-8zcRZ9p/0/M4TmCzjjmPHFnjP2H96PkKpT2MnGMtHQBVQvZMLsk/Th/i-8zcRZ9p-Th.jpg", + "FileName": "100_4251.jpg", + "Processing": false, + "UploadKey": "15189450558", + "Date": "2024-06-07T22:27:34+00:00", + "DateTimeUploaded": "2024-06-07T22:27:34+00:00", + "DateTimeOriginal": "2006-08-09T01:34:02+00:00", + "Format": "JPG", + "OriginalHeight": 2032, + "OriginalWidth": 1524, + "OriginalSize": 794059, + "LastUpdated": "2024-06-07T22:27:35+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "8zcRZ9p", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-8zcRZ9p/0/Lx8rNnmSRMnZ8XW7rj7DqHvCcLWXqh7WV3vr5QzXm/D/i-8zcRZ9p-D.jpg", + "ArchivedSize": 794059, + "ArchivedMD5": "33eacfcf2c5828238cefb984f2d0eeae", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4251.jpg", + "text": "100_4251.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/8zcRZ9p-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-8zcRZ9p", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/8zcRZ9p!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/8zcRZ9p-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/8zcRZ9p-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/8zcRZ9p-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/8zcRZ9p-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/8zcRZ9p-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/8zcRZ9p-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/8zcRZ9p-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/8zcRZ9p-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/8zcRZ9p-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/8zcRZ9p-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/8zcRZ9p-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/8zcRZ9p-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/8zcRZ9p-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/8zcRZ9p-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/8zcRZ9p-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/8zcRZ9p-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/8zcRZ9p-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/8zcRZ9p-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/8zcRZ9p-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/8zcRZ9p-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/8zcRZ9p-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-v3GgsdC/0/M3prGFpS6ZfMcQ3SNJTrVzxK38RGMrMmKp5ThKv7t/Th/i-v3GgsdC-Th.jpg", + "FileName": "100_4253.jpg", + "Processing": false, + "UploadKey": "15189450593", + "Date": "2024-06-07T22:27:34+00:00", + "DateTimeUploaded": "2024-06-07T22:27:34+00:00", + "DateTimeOriginal": "2006-08-09T01:35:20+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 530281, + "LastUpdated": "2024-06-07T22:27:35+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "v3GgsdC", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-v3GgsdC/0/NTgBxtDcNntBN2svWPjN57MFFjVs2MLhvhH8ptHWv/D/i-v3GgsdC-D.jpg", + "ArchivedSize": 530281, + "ArchivedMD5": "1d515178771683b777fd34d4a30551fd", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4253.jpg", + "text": "100_4253.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/v3GgsdC-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-v3GgsdC", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/v3GgsdC!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/v3GgsdC-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/v3GgsdC-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/v3GgsdC-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/v3GgsdC-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/v3GgsdC-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/v3GgsdC-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/v3GgsdC-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/v3GgsdC-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/v3GgsdC-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/v3GgsdC-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/v3GgsdC-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/v3GgsdC-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/v3GgsdC-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/v3GgsdC-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/v3GgsdC-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/v3GgsdC-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/v3GgsdC-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/v3GgsdC-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/v3GgsdC-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/v3GgsdC-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/v3GgsdC-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-gpFDN4q/0/MJwh6fMvbPJc4PDqNjFG9rPDzXT9rdvFTLVrGqLMv/Th/i-gpFDN4q-Th.jpg", + "FileName": "100_4254.jpg", + "Processing": false, + "UploadKey": "15189450638", + "Date": "2024-06-07T22:27:35+00:00", + "DateTimeUploaded": "2024-06-07T22:27:35+00:00", + "DateTimeOriginal": "2006-08-09T17:03:53+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 569345, + "LastUpdated": "2024-06-07T22:27:36+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "gpFDN4q", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-gpFDN4q/0/LzkD8rR9N8pLgbkNXw8CS4Cc72M2HwHG4L63HDFqx/D/i-gpFDN4q-D.jpg", + "ArchivedSize": 569345, + "ArchivedMD5": "920cd87c87b197336415d26e5b4c4a67", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4254.jpg", + "text": "100_4254.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/gpFDN4q-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-gpFDN4q", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/gpFDN4q!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/gpFDN4q-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/gpFDN4q-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/gpFDN4q-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/gpFDN4q-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/gpFDN4q-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/gpFDN4q-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/gpFDN4q-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/gpFDN4q-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/gpFDN4q-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/gpFDN4q-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/gpFDN4q-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/gpFDN4q-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/gpFDN4q-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/gpFDN4q-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/gpFDN4q-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/gpFDN4q-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/gpFDN4q-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/gpFDN4q-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/gpFDN4q-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/gpFDN4q-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/gpFDN4q-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-gBHVcK9/0/Kxx6D7bLmMfvmkzTKC5XBRPr4Nhq9JV6t5sDbr6zX/Th/i-gBHVcK9-Th.jpg", + "FileName": "100_4255.jpg", + "Processing": false, + "UploadKey": "15189450649", + "Date": "2024-06-07T22:27:35+00:00", + "DateTimeUploaded": "2024-06-07T22:27:35+00:00", + "DateTimeOriginal": "2006-08-09T17:25:12+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 399476, + "LastUpdated": "2024-06-07T22:27:36+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "gBHVcK9", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-gBHVcK9/0/MwWv92LFCRJ78GGZ4HpX94KNX9zf933pcz8kZs52d/D/i-gBHVcK9-D.jpg", + "ArchivedSize": 399476, + "ArchivedMD5": "e3785b6566eebcef771ce0ce25514d7b", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4255.jpg", + "text": "100_4255.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/gBHVcK9-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-gBHVcK9", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/gBHVcK9!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/gBHVcK9-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/gBHVcK9-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/gBHVcK9-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/gBHVcK9-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/gBHVcK9-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/gBHVcK9-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/gBHVcK9-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/gBHVcK9-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/gBHVcK9-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/gBHVcK9-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/gBHVcK9-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/gBHVcK9-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/gBHVcK9-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/gBHVcK9-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/gBHVcK9-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/gBHVcK9-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/gBHVcK9-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/gBHVcK9-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/gBHVcK9-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/gBHVcK9-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/gBHVcK9-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-WdnsCX5/0/MNf9ZNMtwppLPTk862Fv2H2GtbFfrn9x9WTWzTjrM/Th/i-WdnsCX5-Th.jpg", + "FileName": "100_4256.jpg", + "Processing": false, + "UploadKey": "15189450704", + "Date": "2024-06-07T22:27:36+00:00", + "DateTimeUploaded": "2024-06-07T22:27:36+00:00", + "DateTimeOriginal": "2006-08-09T17:25:28+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 477962, + "LastUpdated": "2024-06-07T22:27:36+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "WdnsCX5", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-WdnsCX5/0/LKMpTF6T3GKRHfNLjChp3PSqrHZ43BG7mDTwg3Pw2/D/i-WdnsCX5-D.jpg", + "ArchivedSize": 477962, + "ArchivedMD5": "3dcb93019c1a08144bf1bc8833195b1d", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4256.jpg", + "text": "100_4256.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/WdnsCX5-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-WdnsCX5", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/WdnsCX5!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/WdnsCX5-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/WdnsCX5-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/WdnsCX5-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/WdnsCX5-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/WdnsCX5-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/WdnsCX5-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/WdnsCX5-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/WdnsCX5-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/WdnsCX5-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/WdnsCX5-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/WdnsCX5-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/WdnsCX5-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/WdnsCX5-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/WdnsCX5-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/WdnsCX5-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/WdnsCX5-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/WdnsCX5-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/WdnsCX5-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/WdnsCX5-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/WdnsCX5-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/WdnsCX5-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-gMCbV7g/0/MpBgJJPG9HgqLX7fgzMsM6f3DnkTNZqPRZ73Ct3k9/Th/i-gMCbV7g-Th.jpg", + "FileName": "100_4257.jpg", + "Processing": false, + "UploadKey": "15189450732", + "Date": "2024-06-07T22:27:36+00:00", + "DateTimeUploaded": "2024-06-07T22:27:36+00:00", + "DateTimeOriginal": "2006-08-09T17:25:49+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 481288, + "LastUpdated": "2024-06-07T22:27:37+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "gMCbV7g", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-gMCbV7g/0/LVzWG5792WwPhGjGvHHPcd7nB2cM7b6RCr84xfK5g/D/i-gMCbV7g-D.jpg", + "ArchivedSize": 481288, + "ArchivedMD5": "fd5ab34c7d5fe0983a17cc0c799bc27e", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4257.jpg", + "text": "100_4257.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/gMCbV7g-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-gMCbV7g", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/gMCbV7g!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/gMCbV7g-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/gMCbV7g-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/gMCbV7g-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/gMCbV7g-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/gMCbV7g-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/gMCbV7g-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/gMCbV7g-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/gMCbV7g-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/gMCbV7g-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/gMCbV7g-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/gMCbV7g-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/gMCbV7g-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/gMCbV7g-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/gMCbV7g-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/gMCbV7g-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/gMCbV7g-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/gMCbV7g-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/gMCbV7g-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/gMCbV7g-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/gMCbV7g-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/gMCbV7g-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-3kC7cD4/0/KNBJzm9q4Qk9QH6Rwb9R3XrBQXRhtdJGWdSpRqGV3/Th/i-3kC7cD4-Th.jpg", + "FileName": "100_4258.jpg", + "Processing": false, + "UploadKey": "15189450751", + "Date": "2024-06-07T22:27:36+00:00", + "DateTimeUploaded": "2024-06-07T22:27:36+00:00", + "DateTimeOriginal": "2006-08-09T17:58:37+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 385733, + "LastUpdated": "2024-06-07T22:27:37+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "3kC7cD4", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-3kC7cD4/0/LfXc8KskP3VPBNmCzGjqvFhTrpLg2568Lz3cCdQLC/D/i-3kC7cD4-D.jpg", + "ArchivedSize": 385733, + "ArchivedMD5": "a974a5f0f88933cd7642c675f260d852", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4258.jpg", + "text": "100_4258.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/3kC7cD4-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-3kC7cD4", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/3kC7cD4!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/3kC7cD4-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/3kC7cD4-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/3kC7cD4-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/3kC7cD4-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/3kC7cD4-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/3kC7cD4-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/3kC7cD4-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/3kC7cD4-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/3kC7cD4-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/3kC7cD4-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/3kC7cD4-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/3kC7cD4-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/3kC7cD4-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/3kC7cD4-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/3kC7cD4-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/3kC7cD4-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/3kC7cD4-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/3kC7cD4-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/3kC7cD4-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/3kC7cD4-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/3kC7cD4-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-QsXVsTQ/0/LXZwwSvgb498hNQShLTLGTP5TgdKrV7m89nxH88Fd/Th/i-QsXVsTQ-Th.jpg", + "FileName": "100_4259.jpg", + "Processing": false, + "UploadKey": "15189450834", + "Date": "2024-06-07T22:27:37+00:00", + "DateTimeUploaded": "2024-06-07T22:27:37+00:00", + "DateTimeOriginal": "2006-08-09T21:20:58+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 579543, + "LastUpdated": "2024-06-07T22:27:38+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "QsXVsTQ", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-QsXVsTQ/0/NfkpWDS6x2bLcd6vmpBTKWtGCgXhH84TNg7SBnqwT/D/i-QsXVsTQ-D.jpg", + "ArchivedSize": 579543, + "ArchivedMD5": "ddf83cf6e5af285549fa77b31d444934", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4259.jpg", + "text": "100_4259.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/QsXVsTQ-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-QsXVsTQ", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/QsXVsTQ!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/QsXVsTQ-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/QsXVsTQ-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/QsXVsTQ-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/QsXVsTQ-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/QsXVsTQ-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/QsXVsTQ-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/QsXVsTQ-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/QsXVsTQ-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/QsXVsTQ-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/QsXVsTQ-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/QsXVsTQ-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/QsXVsTQ-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/QsXVsTQ-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/QsXVsTQ-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/QsXVsTQ-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/QsXVsTQ-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/QsXVsTQ-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/QsXVsTQ-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/QsXVsTQ-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/QsXVsTQ-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/QsXVsTQ-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-94RQG6H/0/NSM45tKVwdZGQ94zfK3rCqnLmNrMPwfKh4VhXpqPS/Th/i-94RQG6H-Th.jpg", + "FileName": "100_4260.jpg", + "Processing": false, + "UploadKey": "15189450921", + "Date": "2024-06-07T22:27:39+00:00", + "DateTimeUploaded": "2024-06-07T22:27:39+00:00", + "DateTimeOriginal": "2006-08-09T21:57:48+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1347098, + "LastUpdated": "2024-06-07T22:27:40+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "94RQG6H", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-94RQG6H/0/K2HSZRtbrTK5sBvVh5bD3pDk3ttMzsWCTMPHb9S4R/D/i-94RQG6H-D.jpg", + "ArchivedSize": 1347098, + "ArchivedMD5": "8a18fd731abb5378fc4f769ef54e0e20", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4260.jpg", + "text": "100_4260.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/94RQG6H-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-94RQG6H", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/94RQG6H!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/94RQG6H-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/94RQG6H-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/94RQG6H-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/94RQG6H-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/94RQG6H-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/94RQG6H-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/94RQG6H-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/94RQG6H-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/94RQG6H-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/94RQG6H-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/94RQG6H-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/94RQG6H-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/94RQG6H-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/94RQG6H-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/94RQG6H-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/94RQG6H-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/94RQG6H-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/94RQG6H-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/94RQG6H-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/94RQG6H-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/94RQG6H-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-ZtgGN4T/0/LNdHLZ3sqVsM54PmKSdzgBhkwTfHQ9sRNB8HWkz4W/Th/i-ZtgGN4T-Th.jpg", + "FileName": "100_4261.jpg", + "Processing": false, + "UploadKey": "15189450873", + "Date": "2024-06-07T22:27:38+00:00", + "DateTimeUploaded": "2024-06-07T22:27:38+00:00", + "DateTimeOriginal": "2006-08-09T22:09:16+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1023401, + "LastUpdated": "2024-06-07T22:27:39+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "ZtgGN4T", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-ZtgGN4T/0/KhQ74WGQCbksJfKQ9dwVT6NxQhWVnSWV9Dfn3QC7t/D/i-ZtgGN4T-D.jpg", + "ArchivedSize": 1023401, + "ArchivedMD5": "b368690eee87c7d737331466bfdeadc6", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4261.jpg", + "text": "100_4261.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/ZtgGN4T-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-ZtgGN4T", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/ZtgGN4T!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/ZtgGN4T-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/ZtgGN4T-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/ZtgGN4T-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/ZtgGN4T-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/ZtgGN4T-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/ZtgGN4T-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/ZtgGN4T-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/ZtgGN4T-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/ZtgGN4T-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/ZtgGN4T-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/ZtgGN4T-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/ZtgGN4T-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/ZtgGN4T-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/ZtgGN4T-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/ZtgGN4T-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/ZtgGN4T-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/ZtgGN4T-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/ZtgGN4T-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/ZtgGN4T-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/ZtgGN4T-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/ZtgGN4T-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-4xDFJRg/0/NGTmwczBrgf2mVsrSZ2nGV48GKDMg3sWqBRb55ntg/Th/i-4xDFJRg-Th.jpg", + "FileName": "100_4262.jpg", + "Processing": false, + "UploadKey": "15189450935", + "Date": "2024-06-07T22:27:39+00:00", + "DateTimeUploaded": "2024-06-07T22:27:39+00:00", + "DateTimeOriginal": "2006-08-09T22:09:48+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 714341, + "LastUpdated": "2024-06-07T22:27:40+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "4xDFJRg", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-4xDFJRg/0/LD4tvCPr49vdHNw5VN6sNRq3fp9x5sJxn9qjXJTK2/D/i-4xDFJRg-D.jpg", + "ArchivedSize": 714341, + "ArchivedMD5": "8fbc8bc4214f6608d1707f6ef3b4a857", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4262.jpg", + "text": "100_4262.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/4xDFJRg-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-4xDFJRg", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/4xDFJRg!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/4xDFJRg-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/4xDFJRg-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/4xDFJRg-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/4xDFJRg-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/4xDFJRg-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/4xDFJRg-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/4xDFJRg-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/4xDFJRg-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/4xDFJRg-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/4xDFJRg-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/4xDFJRg-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/4xDFJRg-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/4xDFJRg-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/4xDFJRg-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/4xDFJRg-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/4xDFJRg-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/4xDFJRg-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/4xDFJRg-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/4xDFJRg-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/4xDFJRg-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/4xDFJRg-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-mcQPNV5/0/LR4gVmjmPNRC9xsSRHNvL6FQtrM8S4TffbPf4qvtz/Th/i-mcQPNV5-Th.jpg", + "FileName": "100_4263.jpg", + "Processing": false, + "UploadKey": "15189451038", + "Date": "2024-06-07T22:27:41+00:00", + "DateTimeUploaded": "2024-06-07T22:27:41+00:00", + "DateTimeOriginal": "2006-08-09T22:10:02+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1203221, + "LastUpdated": "2024-06-07T22:27:42+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "mcQPNV5", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-mcQPNV5/0/NZPjZJDzLhF9jczxgGgbJjfc36rR2hSQJcjkmKTTp/D/i-mcQPNV5-D.jpg", + "ArchivedSize": 1203221, + "ArchivedMD5": "1956726c6d9820969cd6575991fd260d", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4263.jpg", + "text": "100_4263.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/mcQPNV5-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-mcQPNV5", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/mcQPNV5!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/mcQPNV5-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/mcQPNV5-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/mcQPNV5-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/mcQPNV5-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/mcQPNV5-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/mcQPNV5-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/mcQPNV5-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/mcQPNV5-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/mcQPNV5-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/mcQPNV5-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/mcQPNV5-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/mcQPNV5-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/mcQPNV5-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/mcQPNV5-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/mcQPNV5-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/mcQPNV5-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/mcQPNV5-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/mcQPNV5-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/mcQPNV5-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/mcQPNV5-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/mcQPNV5-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-tfd49Kd/0/MFPTr4CWtgG3bMFnWKVw2x99r9JR4MTjqQh5SJHH9/Th/i-tfd49Kd-Th.jpg", + "FileName": "100_4264.jpg", + "Processing": false, + "UploadKey": "15189451023", + "Date": "2024-06-07T22:27:40+00:00", + "DateTimeUploaded": "2024-06-07T22:27:40+00:00", + "DateTimeOriginal": "2006-08-09T22:13:08+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 717924, + "LastUpdated": "2024-06-07T22:27:41+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "tfd49Kd", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-tfd49Kd/0/LQgG7w7nxKTJW9xCB3psx7D8GG82WW5NVzQWkdpRp/D/i-tfd49Kd-D.jpg", + "ArchivedSize": 717924, + "ArchivedMD5": "8b36dcc17bbb85cccb44facab223fdd9", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4264.jpg", + "text": "100_4264.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/tfd49Kd-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-tfd49Kd", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/tfd49Kd!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/tfd49Kd-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/tfd49Kd-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/tfd49Kd-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/tfd49Kd-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/tfd49Kd-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/tfd49Kd-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/tfd49Kd-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/tfd49Kd-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/tfd49Kd-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/tfd49Kd-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/tfd49Kd-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/tfd49Kd-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/tfd49Kd-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/tfd49Kd-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/tfd49Kd-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/tfd49Kd-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/tfd49Kd-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/tfd49Kd-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/tfd49Kd-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/tfd49Kd-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/tfd49Kd-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-NwtFmVT/0/LZrFmtHzPqzmwMm7mKTGNxH6Ts534mT4PK5CHQjxj/Th/i-NwtFmVT-Th.jpg", + "FileName": "100_4265.jpg", + "Processing": false, + "UploadKey": "15189451059", + "Date": "2024-06-07T22:27:41+00:00", + "DateTimeUploaded": "2024-06-07T22:27:41+00:00", + "DateTimeOriginal": "2006-08-09T22:13:18+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 705114, + "LastUpdated": "2024-06-07T22:27:42+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "NwtFmVT", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-NwtFmVT/0/MjtfWZ3ZRnN3nswQhQ3bDN2j4tRWnnqxZ3fr2R6nV/D/i-NwtFmVT-D.jpg", + "ArchivedSize": 705114, + "ArchivedMD5": "cbbc7cb7d55806e6474f87c17b4a51ce", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4265.jpg", + "text": "100_4265.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/NwtFmVT-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-NwtFmVT", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/NwtFmVT!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/NwtFmVT-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/NwtFmVT-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/NwtFmVT-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/NwtFmVT-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/NwtFmVT-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/NwtFmVT-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/NwtFmVT-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/NwtFmVT-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/NwtFmVT-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/NwtFmVT-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/NwtFmVT-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/NwtFmVT-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/NwtFmVT-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/NwtFmVT-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/NwtFmVT-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/NwtFmVT-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/NwtFmVT-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/NwtFmVT-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/NwtFmVT-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/NwtFmVT-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/NwtFmVT-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-QWs6Fpq/0/MgQvPz9wG9FnRGpFM8pt7WVrQ53nkSSLcSPLfTskp/Th/i-QWs6Fpq-Th.jpg", + "FileName": "100_4266.jpg", + "Processing": false, + "UploadKey": "15189451144", + "Date": "2024-06-07T22:27:42+00:00", + "DateTimeUploaded": "2024-06-07T22:27:42+00:00", + "DateTimeOriginal": "2006-08-09T22:13:27+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 819767, + "LastUpdated": "2024-06-07T22:27:43+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "QWs6Fpq", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-QWs6Fpq/0/KWqKKhz7ZvtcSX7g86C2rfT9vTk24wTsXzxZZBGWf/D/i-QWs6Fpq-D.jpg", + "ArchivedSize": 819767, + "ArchivedMD5": "19cc09e43914b02a7e6a1bbc68b1224f", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4266.jpg", + "text": "100_4266.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/QWs6Fpq-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-QWs6Fpq", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/QWs6Fpq!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/QWs6Fpq-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/QWs6Fpq-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/QWs6Fpq-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/QWs6Fpq-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/QWs6Fpq-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/QWs6Fpq-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/QWs6Fpq-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/QWs6Fpq-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/QWs6Fpq-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/QWs6Fpq-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/QWs6Fpq-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/QWs6Fpq-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/QWs6Fpq-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/QWs6Fpq-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/QWs6Fpq-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/QWs6Fpq-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/QWs6Fpq-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/QWs6Fpq-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/QWs6Fpq-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/QWs6Fpq-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/QWs6Fpq-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-8hCStmF/0/Ln3wCcDGbQFpMZLw49QFLGCqTVPmrfkWLNndVDCK9/Th/i-8hCStmF-Th.jpg", + "FileName": "100_4267.jpg", + "Processing": false, + "UploadKey": "15189451188", + "Date": "2024-06-07T22:27:43+00:00", + "DateTimeUploaded": "2024-06-07T22:27:43+00:00", + "DateTimeOriginal": "2006-08-09T22:18:39+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1079316, + "LastUpdated": "2024-06-07T22:27:44+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "8hCStmF", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-8hCStmF/0/LvjLbJrGzzxJmTgQ6XMrstRzQp8pCShW42cpcw29N/D/i-8hCStmF-D.jpg", + "ArchivedSize": 1079316, + "ArchivedMD5": "553ec6bd3c91f01379aaec4a999d8fa8", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4267.jpg", + "text": "100_4267.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/8hCStmF-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-8hCStmF", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/8hCStmF!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/8hCStmF-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/8hCStmF-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/8hCStmF-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/8hCStmF-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/8hCStmF-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/8hCStmF-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/8hCStmF-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/8hCStmF-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/8hCStmF-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/8hCStmF-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/8hCStmF-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/8hCStmF-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/8hCStmF-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/8hCStmF-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/8hCStmF-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/8hCStmF-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/8hCStmF-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/8hCStmF-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/8hCStmF-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/8hCStmF-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/8hCStmF-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-rHFcKXc/0/LDGbgbkZkWdVb2JW7fJc8XGHT9gMC6gJDbzjQv97g/Th/i-rHFcKXc-Th.jpg", + "FileName": "100_4268.jpg", + "Processing": false, + "UploadKey": "15189451157", + "Date": "2024-06-07T22:27:42+00:00", + "DateTimeUploaded": "2024-06-07T22:27:42+00:00", + "DateTimeOriginal": "2006-08-09T22:18:44+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 679324, + "LastUpdated": "2024-06-07T22:27:43+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "rHFcKXc", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-rHFcKXc/0/MGsn3P6jDfMSFCMVjkxgFKfhxSLPkbCGkRh5ZZmh4/D/i-rHFcKXc-D.jpg", + "ArchivedSize": 679324, + "ArchivedMD5": "a3e61bd4a2aacee75a64a28a22334d6d", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4268.jpg", + "text": "100_4268.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/rHFcKXc-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-rHFcKXc", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/rHFcKXc!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/rHFcKXc-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/rHFcKXc-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/rHFcKXc-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/rHFcKXc-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/rHFcKXc-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/rHFcKXc-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/rHFcKXc-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/rHFcKXc-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/rHFcKXc-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/rHFcKXc-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/rHFcKXc-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/rHFcKXc-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/rHFcKXc-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/rHFcKXc-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/rHFcKXc-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/rHFcKXc-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/rHFcKXc-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/rHFcKXc-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/rHFcKXc-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/rHFcKXc-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/rHFcKXc-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-QgtQ2gj/0/NRBj5qswzC3mFCnT8Pq7VR4Mqr5hVmczbhq79NPsh/Th/i-QgtQ2gj-Th.jpg", + "FileName": "100_4269.jpg", + "Processing": false, + "UploadKey": "15189451300", + "Date": "2024-06-07T22:27:44+00:00", + "DateTimeUploaded": "2024-06-07T22:27:44+00:00", + "DateTimeOriginal": "2006-08-09T22:19:00+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1164308, + "LastUpdated": "2024-06-07T22:27:45+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "QgtQ2gj", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-QgtQ2gj/0/NPrhZB53d2bm8sn6jCKD8KJV3CHcRwXcpnwBMwQp5/D/i-QgtQ2gj-D.jpg", + "ArchivedSize": 1164308, + "ArchivedMD5": "b57aba45933dec9b151249007759c4a6", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4269.jpg", + "text": "100_4269.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/QgtQ2gj-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-QgtQ2gj", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/QgtQ2gj!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/QgtQ2gj-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/QgtQ2gj-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/QgtQ2gj-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/QgtQ2gj-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/QgtQ2gj-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/QgtQ2gj-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/QgtQ2gj-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/QgtQ2gj-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/QgtQ2gj-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/QgtQ2gj-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/QgtQ2gj-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/QgtQ2gj-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/QgtQ2gj-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/QgtQ2gj-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/QgtQ2gj-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/QgtQ2gj-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/QgtQ2gj-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/QgtQ2gj-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/QgtQ2gj-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/QgtQ2gj-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/QgtQ2gj-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-KGg7qZ6/0/NfTRnDZnrnrMMSdLmqpzX33HKJJNBdTNgHhDjSL3M/Th/i-KGg7qZ6-Th.jpg", + "FileName": "100_4270.jpg", + "Processing": false, + "UploadKey": "15189451344", + "Date": "2024-06-07T22:27:45+00:00", + "DateTimeUploaded": "2024-06-07T22:27:45+00:00", + "DateTimeOriginal": "2006-08-09T22:31:06+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1220896, + "LastUpdated": "2024-06-07T22:27:46+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "KGg7qZ6", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-KGg7qZ6/0/KHF77ZsxdcjLsxkrwxnTXJtbc4n9btJT9SdkT98c3/D/i-KGg7qZ6-D.jpg", + "ArchivedSize": 1220896, + "ArchivedMD5": "820806eec8610b9b4734d308d07b352f", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4270.jpg", + "text": "100_4270.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/KGg7qZ6-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-KGg7qZ6", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/KGg7qZ6!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/KGg7qZ6-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/KGg7qZ6-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/KGg7qZ6-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/KGg7qZ6-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/KGg7qZ6-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/KGg7qZ6-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/KGg7qZ6-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/KGg7qZ6-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/KGg7qZ6-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/KGg7qZ6-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/KGg7qZ6-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/KGg7qZ6-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/KGg7qZ6-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/KGg7qZ6-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/KGg7qZ6-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/KGg7qZ6-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/KGg7qZ6-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/KGg7qZ6-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/KGg7qZ6-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/KGg7qZ6-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/KGg7qZ6-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-qZPdn4C/0/K8bN7JSt2V389FDTh362LSCGhvT3SjZczGkgKLgth/Th/i-qZPdn4C-Th.jpg", + "FileName": "100_4271.jpg", + "Processing": false, + "UploadKey": "15189451361", + "Date": "2024-06-07T22:27:45+00:00", + "DateTimeUploaded": "2024-06-07T22:27:45+00:00", + "DateTimeOriginal": "2006-08-09T22:31:14+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1260491, + "LastUpdated": "2024-06-07T22:27:47+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "qZPdn4C", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-qZPdn4C/0/KZwg28zWPNNpB3BfSJWPctqBxQh8kjVGkmjT2pXTR/D/i-qZPdn4C-D.jpg", + "ArchivedSize": 1260491, + "ArchivedMD5": "fbc6161e6b1d305fc095751bf0d2075a", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4271.jpg", + "text": "100_4271.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/qZPdn4C-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-qZPdn4C", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/qZPdn4C!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/qZPdn4C-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/qZPdn4C-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/qZPdn4C-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/qZPdn4C-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/qZPdn4C-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/qZPdn4C-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/qZPdn4C-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/qZPdn4C-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/qZPdn4C-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/qZPdn4C-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/qZPdn4C-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/qZPdn4C-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/qZPdn4C-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/qZPdn4C-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/qZPdn4C-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/qZPdn4C-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/qZPdn4C-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/qZPdn4C-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/qZPdn4C-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/qZPdn4C-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/qZPdn4C-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-xFR4wKv/0/LMfhWqWPVNNkWJQ5cFhQwvB8JqNHMjZZzXZCSZ5xw/Th/i-xFR4wKv-Th.jpg", + "FileName": "100_4272.jpg", + "Processing": false, + "UploadKey": "15189451460", + "Date": "2024-06-07T22:27:47+00:00", + "DateTimeUploaded": "2024-06-07T22:27:47+00:00", + "DateTimeOriginal": "2006-08-09T22:31:30+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1074642, + "LastUpdated": "2024-06-07T22:27:47+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "xFR4wKv", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-xFR4wKv/0/NXvdJD9SLj5tw5VCZqstn8cXnLqFT2cC9VnXvVHtp/D/i-xFR4wKv-D.jpg", + "ArchivedSize": 1074642, + "ArchivedMD5": "0be25c878fbe182019d2ea943eb6a2d9", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4272.jpg", + "text": "100_4272.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/xFR4wKv-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-xFR4wKv", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/xFR4wKv!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/xFR4wKv-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/xFR4wKv-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/xFR4wKv-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/xFR4wKv-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/xFR4wKv-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/xFR4wKv-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/xFR4wKv-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/xFR4wKv-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/xFR4wKv-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/xFR4wKv-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/xFR4wKv-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/xFR4wKv-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/xFR4wKv-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/xFR4wKv-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/xFR4wKv-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/xFR4wKv-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/xFR4wKv-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/xFR4wKv-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/xFR4wKv-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/xFR4wKv-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/xFR4wKv-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-k9NsRHh/0/NRRS4pXj4JnqhvVZsKCv7f4V6BgwHDMD3SgFLN2Dm/Th/i-k9NsRHh-Th.jpg", + "FileName": "100_4273.jpg", + "Processing": false, + "UploadKey": "15189451512", + "Date": "2024-06-07T22:27:47+00:00", + "DateTimeUploaded": "2024-06-07T22:27:47+00:00", + "DateTimeOriginal": "2006-08-09T22:31:57+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1236757, + "LastUpdated": "2024-06-07T22:27:48+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "k9NsRHh", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-k9NsRHh/0/KkNRCNdwKLXxjr5zKpc95pTsRDKgLkT7pKBJ3cxST/D/i-k9NsRHh-D.jpg", + "ArchivedSize": 1236757, + "ArchivedMD5": "609b8236f1cad7721689af2ee40e086f", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4273.jpg", + "text": "100_4273.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/k9NsRHh-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-k9NsRHh", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/k9NsRHh!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/k9NsRHh-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/k9NsRHh-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/k9NsRHh-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/k9NsRHh-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/k9NsRHh-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/k9NsRHh-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/k9NsRHh-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/k9NsRHh-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/k9NsRHh-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/k9NsRHh-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/k9NsRHh-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/k9NsRHh-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/k9NsRHh-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/k9NsRHh-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/k9NsRHh-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/k9NsRHh-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/k9NsRHh-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/k9NsRHh-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/k9NsRHh-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/k9NsRHh-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/k9NsRHh-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-HptBQJx/0/MDSz7rMMXcKbfcWpgXCGpQCKwPZjxR7K4X2MCWf3D/Th/i-HptBQJx-Th.jpg", + "FileName": "100_4274.jpg", + "Processing": false, + "UploadKey": "15189451520", + "Date": "2024-06-07T22:27:47+00:00", + "DateTimeUploaded": "2024-06-07T22:27:47+00:00", + "DateTimeOriginal": "2006-08-09T22:32:05+00:00", + "Format": "JPG", + "OriginalHeight": 2032, + "OriginalWidth": 1524, + "OriginalSize": 1048235, + "LastUpdated": "2024-06-07T22:27:48+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "HptBQJx", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-HptBQJx/0/McZKjkvGgDhLh3qvRWnq2rkdsZNR3mCswXMGDjmj4/D/i-HptBQJx-D.jpg", + "ArchivedSize": 1048235, + "ArchivedMD5": "ccf40b9190f2d5d515bfceb825014064", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4274.jpg", + "text": "100_4274.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/HptBQJx-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-HptBQJx", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/HptBQJx!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/HptBQJx-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/HptBQJx-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/HptBQJx-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/HptBQJx-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/HptBQJx-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/HptBQJx-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/HptBQJx-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/HptBQJx-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/HptBQJx-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/HptBQJx-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/HptBQJx-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/HptBQJx-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/HptBQJx-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/HptBQJx-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/HptBQJx-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/HptBQJx-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/HptBQJx-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/HptBQJx-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/HptBQJx-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/HptBQJx-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/HptBQJx-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-Hvm3cjx/0/L5zGksp7pLxMmgvLbXCzKQTXqhMtJ7PVXMJZKNfwS/Th/i-Hvm3cjx-Th.jpg", + "FileName": "100_4275.jpg", + "Processing": false, + "UploadKey": "15189451583", + "Date": "2024-06-07T22:27:48+00:00", + "DateTimeUploaded": "2024-06-07T22:27:48+00:00", + "DateTimeOriginal": "2006-08-09T22:32:19+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 617828, + "LastUpdated": "2024-06-07T22:27:49+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "Hvm3cjx", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-Hvm3cjx/0/NWw6wrpsWBWSm9fLv7xQT8HVL5t5SK867CW4nBkwJ/D/i-Hvm3cjx-D.jpg", + "ArchivedSize": 617828, + "ArchivedMD5": "b28bd5aea08ddc47cd27df2f2dc6aa1d", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4275.jpg", + "text": "100_4275.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/Hvm3cjx-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-Hvm3cjx", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/Hvm3cjx!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/Hvm3cjx-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/Hvm3cjx-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/Hvm3cjx-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/Hvm3cjx-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/Hvm3cjx-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/Hvm3cjx-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/Hvm3cjx-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/Hvm3cjx-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/Hvm3cjx-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/Hvm3cjx-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/Hvm3cjx-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/Hvm3cjx-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/Hvm3cjx-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/Hvm3cjx-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/Hvm3cjx-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/Hvm3cjx-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/Hvm3cjx-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/Hvm3cjx-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/Hvm3cjx-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/Hvm3cjx-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/Hvm3cjx-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-cZmQxcN/0/L2JKw8SscgXvqMH86bJSZDqJJ77zS5tvb4kJqnhvB/Th/i-cZmQxcN-Th.jpg", + "FileName": "100_4276.jpg", + "Processing": false, + "UploadKey": "15189451671", + "Date": "2024-06-07T22:27:50+00:00", + "DateTimeUploaded": "2024-06-07T22:27:50+00:00", + "DateTimeOriginal": "2006-08-09T22:33:17+00:00", + "Format": "JPG", + "OriginalHeight": 2032, + "OriginalWidth": 1524, + "OriginalSize": 1081857, + "LastUpdated": "2024-06-07T22:27:50+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "cZmQxcN", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-cZmQxcN/0/MndpxMfbmQPvVGwWZ9MgBW2dRH3bsbz5tRQxPPG42/D/i-cZmQxcN-D.jpg", + "ArchivedSize": 1081857, + "ArchivedMD5": "723fef6aa59c0babd7af3f8f1e9f2442", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4276.jpg", + "text": "100_4276.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/cZmQxcN-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-cZmQxcN", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/cZmQxcN!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/cZmQxcN-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/cZmQxcN-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/cZmQxcN-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/cZmQxcN-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/cZmQxcN-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/cZmQxcN-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/cZmQxcN-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/cZmQxcN-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/cZmQxcN-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/cZmQxcN-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/cZmQxcN-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/cZmQxcN-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/cZmQxcN-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/cZmQxcN-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/cZmQxcN-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/cZmQxcN-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/cZmQxcN-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/cZmQxcN-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/cZmQxcN-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/cZmQxcN-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/cZmQxcN-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-r8kHZD6/0/MjSRPMqKqdqhkr4sJrHpH29DJTKvqRJmx8fbmbT9v/Th/i-r8kHZD6-Th.jpg", + "FileName": "100_4277.jpg", + "Processing": false, + "UploadKey": "15189451666", + "Date": "2024-06-07T22:27:50+00:00", + "DateTimeUploaded": "2024-06-07T22:27:50+00:00", + "DateTimeOriginal": "2006-08-09T22:37:33+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 767154, + "LastUpdated": "2024-06-07T22:27:50+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "r8kHZD6", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-r8kHZD6/0/KP5BBmVt5wX3WcZ79hHkWVmqjGmtLrkqJs5jXNSJ3/D/i-r8kHZD6-D.jpg", + "ArchivedSize": 767154, + "ArchivedMD5": "4f3b7f3ab19f03f5153d58cdcf5ff6fe", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4277.jpg", + "text": "100_4277.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/r8kHZD6-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-r8kHZD6", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/r8kHZD6!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/r8kHZD6-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/r8kHZD6-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/r8kHZD6-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/r8kHZD6-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/r8kHZD6-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/r8kHZD6-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/r8kHZD6-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/r8kHZD6-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/r8kHZD6-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/r8kHZD6-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/r8kHZD6-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/r8kHZD6-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/r8kHZD6-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/r8kHZD6-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/r8kHZD6-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/r8kHZD6-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/r8kHZD6-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/r8kHZD6-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/r8kHZD6-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/r8kHZD6-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/r8kHZD6-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-RcW9xtz/0/L3G79Hh8FkNVw4wWtZWtk69dkV7fWSN4HKMJq6kSZ/Th/i-RcW9xtz-Th.jpg", + "FileName": "100_4278.jpg", + "Processing": false, + "UploadKey": "15189451744", + "Date": "2024-06-07T22:27:51+00:00", + "DateTimeUploaded": "2024-06-07T22:27:51+00:00", + "DateTimeOriginal": "2006-08-09T22:41:26+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1010096, + "LastUpdated": "2024-06-07T22:27:51+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "RcW9xtz", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-RcW9xtz/0/Mc4qWQz7ndbMcswZqgHcHrsdvw3Rvfg9bQBZtFtWr/D/i-RcW9xtz-D.jpg", + "ArchivedSize": 1010096, + "ArchivedMD5": "d4dac317a45cc064cc2670a28fad700c", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4278.jpg", + "text": "100_4278.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/RcW9xtz-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-RcW9xtz", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/RcW9xtz!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/RcW9xtz-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/RcW9xtz-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/RcW9xtz-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/RcW9xtz-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/RcW9xtz-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/RcW9xtz-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/RcW9xtz-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/RcW9xtz-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/RcW9xtz-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/RcW9xtz-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/RcW9xtz-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/RcW9xtz-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/RcW9xtz-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/RcW9xtz-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/RcW9xtz-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/RcW9xtz-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/RcW9xtz-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/RcW9xtz-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/RcW9xtz-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/RcW9xtz-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/RcW9xtz-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-V73C2zt/0/MgrBJ9Fh5hcM22QkK2K6CSx2ZKXvZZ5c3WcszGxvn/Th/i-V73C2zt-Th.jpg", + "FileName": "100_4279.jpg", + "Processing": false, + "UploadKey": "15189451774", + "Date": "2024-06-07T22:27:51+00:00", + "DateTimeUploaded": "2024-06-07T22:27:51+00:00", + "DateTimeOriginal": "2006-08-09T22:43:15+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 580523, + "LastUpdated": "2024-06-07T22:27:52+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "V73C2zt", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-V73C2zt/0/KpKJJ7DMsctngHBBnJv2QqFgQvzhLLLv7S85gLW4M/D/i-V73C2zt-D.jpg", + "ArchivedSize": 580523, + "ArchivedMD5": "47901659946b55285c0dfba971fbd1c9", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4279.jpg", + "text": "100_4279.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/V73C2zt-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-V73C2zt", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/V73C2zt!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/V73C2zt-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/V73C2zt-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/V73C2zt-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/V73C2zt-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/V73C2zt-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/V73C2zt-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/V73C2zt-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/V73C2zt-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/V73C2zt-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/V73C2zt-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/V73C2zt-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/V73C2zt-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/V73C2zt-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/V73C2zt-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/V73C2zt-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/V73C2zt-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/V73C2zt-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/V73C2zt-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/V73C2zt-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/V73C2zt-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/V73C2zt-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-23hQTvp/0/Kc5h3nTttnf8GZWK26vVQpkxRdxVVQFVSV6gQGttN/Th/i-23hQTvp-Th.jpg", + "FileName": "100_4280.jpg", + "Processing": false, + "UploadKey": "15189451803", + "Date": "2024-06-07T22:27:51+00:00", + "DateTimeUploaded": "2024-06-07T22:27:51+00:00", + "DateTimeOriginal": "2006-08-09T22:43:23+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 715036, + "LastUpdated": "2024-06-07T22:27:53+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "23hQTvp", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-23hQTvp/0/M6PQw6rPzRwmKh5DppsKqrVBp4F6mJJWPmJhgV8cg/D/i-23hQTvp-D.jpg", + "ArchivedSize": 715036, + "ArchivedMD5": "0348bcc9b260730d11a2b73b3348322e", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4280.jpg", + "text": "100_4280.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/23hQTvp-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-23hQTvp", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/23hQTvp!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/23hQTvp-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/23hQTvp-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/23hQTvp-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/23hQTvp-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/23hQTvp-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/23hQTvp-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/23hQTvp-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/23hQTvp-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/23hQTvp-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/23hQTvp-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/23hQTvp-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/23hQTvp-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/23hQTvp-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/23hQTvp-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/23hQTvp-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/23hQTvp-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/23hQTvp-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/23hQTvp-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/23hQTvp-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/23hQTvp-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/23hQTvp-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-h33nRzG/0/NGNrN2DNGNjFTgTzjFmddgg77sQVtHfrtb3GxrfrF/Th/i-h33nRzG-Th.jpg", + "FileName": "100_4281.jpg", + "Processing": false, + "UploadKey": "15189451896", + "Date": "2024-06-07T22:27:53+00:00", + "DateTimeUploaded": "2024-06-07T22:27:53+00:00", + "DateTimeOriginal": "2006-08-09T23:21:08+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1229807, + "LastUpdated": "2024-06-07T22:27:54+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "h33nRzG", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-h33nRzG/0/L9RXgJCJwZKfNCGsBgNz76Gk8rKPhxFPpGpGqg7nZ/D/i-h33nRzG-D.jpg", + "ArchivedSize": 1229807, + "ArchivedMD5": "8306572f09d71587b292530bf985eb31", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4281.jpg", + "text": "100_4281.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/h33nRzG-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-h33nRzG", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/h33nRzG!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/h33nRzG-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/h33nRzG-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/h33nRzG-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/h33nRzG-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/h33nRzG-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/h33nRzG-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/h33nRzG-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/h33nRzG-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/h33nRzG-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/h33nRzG-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/h33nRzG-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/h33nRzG-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/h33nRzG-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/h33nRzG-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/h33nRzG-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/h33nRzG-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/h33nRzG-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/h33nRzG-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/h33nRzG-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/h33nRzG-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/h33nRzG-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-nBNKM9q/0/MHfgXH43P7tpVbc2hWNGLkJmn97fhpCKJ4pHH7XmT/Th/i-nBNKM9q-Th.jpg", + "FileName": "100_4282.jpg", + "Processing": false, + "UploadKey": "15189452012", + "Date": "2024-06-07T22:27:54+00:00", + "DateTimeUploaded": "2024-06-07T22:27:54+00:00", + "DateTimeOriginal": "2006-08-09T23:24:45+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1225562, + "LastUpdated": "2024-06-07T22:27:55+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "nBNKM9q", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-nBNKM9q/0/LPPqWrSVCqWbNFKtTFjpwrbkTMZ2z67PTdgJk82k6/D/i-nBNKM9q-D.jpg", + "ArchivedSize": 1225562, + "ArchivedMD5": "8681e073fb2487ac992846bdd0c3a326", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4282.jpg", + "text": "100_4282.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/nBNKM9q-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-nBNKM9q", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/nBNKM9q!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/nBNKM9q-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/nBNKM9q-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/nBNKM9q-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/nBNKM9q-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/nBNKM9q-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/nBNKM9q-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/nBNKM9q-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/nBNKM9q-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/nBNKM9q-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/nBNKM9q-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/nBNKM9q-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/nBNKM9q-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/nBNKM9q-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/nBNKM9q-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/nBNKM9q-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/nBNKM9q-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/nBNKM9q-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/nBNKM9q-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/nBNKM9q-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/nBNKM9q-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/nBNKM9q-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-PrqcJtm/0/MKC2bR9zg9cZbw4b7zzK2ZzBFjc4fV8TnVkLkf4fn/Th/i-PrqcJtm-Th.jpg", + "FileName": "100_4283.jpg", + "Processing": false, + "UploadKey": "15189451966", + "Date": "2024-06-07T22:27:54+00:00", + "DateTimeUploaded": "2024-06-07T22:27:54+00:00", + "DateTimeOriginal": "2006-08-09T23:24:54+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1182526, + "LastUpdated": "2024-06-07T22:27:55+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "PrqcJtm", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-PrqcJtm/0/KtvQNfKkg5GqKmwhPjdKnxkRj5v6QPdhjZz2FLdKM/D/i-PrqcJtm-D.jpg", + "ArchivedSize": 1182526, + "ArchivedMD5": "5737944c0cbde472c24568155d379894", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4283.jpg", + "text": "100_4283.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/PrqcJtm-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-PrqcJtm", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/PrqcJtm!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/PrqcJtm-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/PrqcJtm-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/PrqcJtm-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/PrqcJtm-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/PrqcJtm-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/PrqcJtm-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/PrqcJtm-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/PrqcJtm-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/PrqcJtm-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/PrqcJtm-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/PrqcJtm-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/PrqcJtm-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/PrqcJtm-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/PrqcJtm-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/PrqcJtm-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/PrqcJtm-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/PrqcJtm-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/PrqcJtm-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/PrqcJtm-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/PrqcJtm-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/PrqcJtm-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-bbDWBBN/0/L5SF4Fv7STZ3DnVRJcQPd3rmgkNMD7gZLc9RcZGjd/Th/i-bbDWBBN-Th.jpg", + "FileName": "100_4284.jpg", + "Processing": false, + "UploadKey": "15189452000", + "Date": "2024-06-07T22:27:54+00:00", + "DateTimeUploaded": "2024-06-07T22:27:54+00:00", + "DateTimeOriginal": "2006-08-09T23:25:06+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 376903, + "LastUpdated": "2024-06-07T22:27:55+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "bbDWBBN", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-bbDWBBN/0/MsHhDfT4nmw5ttpwRQmNpkPkwgzmGkDj9jjZs48M5/D/i-bbDWBBN-D.jpg", + "ArchivedSize": 376903, + "ArchivedMD5": "226a77a516c0fb219e0ccbf7250865ed", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4284.jpg", + "text": "100_4284.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/bbDWBBN-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-bbDWBBN", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/bbDWBBN!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/bbDWBBN-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/bbDWBBN-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/bbDWBBN-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/bbDWBBN-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/bbDWBBN-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/bbDWBBN-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/bbDWBBN-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/bbDWBBN-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/bbDWBBN-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/bbDWBBN-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/bbDWBBN-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/bbDWBBN-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/bbDWBBN-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/bbDWBBN-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/bbDWBBN-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/bbDWBBN-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/bbDWBBN-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/bbDWBBN-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/bbDWBBN-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/bbDWBBN-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/bbDWBBN-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-VMMNBgq/0/LrJ5PCqbc2CsHqMRdg4nDf6G6NTLNpbdt67csDtBN/Th/i-VMMNBgq-Th.jpg", + "FileName": "100_4285.jpg", + "Processing": false, + "UploadKey": "15189452172", + "Date": "2024-06-07T22:27:57+00:00", + "DateTimeUploaded": "2024-06-07T22:27:57+00:00", + "DateTimeOriginal": "2006-08-09T23:42:38+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1469172, + "LastUpdated": "2024-06-07T22:27:58+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "VMMNBgq", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-VMMNBgq/0/L85CNKc6259Ch4xVvJ8SPD2zS3KmNv84d2xNVJHzm/D/i-VMMNBgq-D.jpg", + "ArchivedSize": 1469172, + "ArchivedMD5": "382b0a757cd334abb3e15d0d73e3ce32", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4285.jpg", + "text": "100_4285.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/VMMNBgq-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-VMMNBgq", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/VMMNBgq!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/VMMNBgq-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/VMMNBgq-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/VMMNBgq-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/VMMNBgq-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/VMMNBgq-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/VMMNBgq-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/VMMNBgq-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/VMMNBgq-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/VMMNBgq-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/VMMNBgq-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/VMMNBgq-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/VMMNBgq-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/VMMNBgq-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/VMMNBgq-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/VMMNBgq-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/VMMNBgq-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/VMMNBgq-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/VMMNBgq-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/VMMNBgq-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/VMMNBgq-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/VMMNBgq-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-8ghx9Dm/0/NhvPVXKsvchXgwrSnF2wqmpD573KtL47b37HMPtTd/Th/i-8ghx9Dm-Th.jpg", + "FileName": "100_4286.jpg", + "Processing": false, + "UploadKey": "15189452240", + "Date": "2024-06-07T22:27:58+00:00", + "DateTimeUploaded": "2024-06-07T22:27:58+00:00", + "DateTimeOriginal": "2006-08-09T23:43:03+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1220147, + "LastUpdated": "2024-06-07T22:27:59+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "8ghx9Dm", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-8ghx9Dm/0/MLfxRsKCCXvrsjnDXPfxfKQdmg7K5vTDF6Xv9RHVG/D/i-8ghx9Dm-D.jpg", + "ArchivedSize": 1220147, + "ArchivedMD5": "816ea960a0bce60ef1b8b86a2d42e342", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4286.jpg", + "text": "100_4286.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/8ghx9Dm-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-8ghx9Dm", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/8ghx9Dm!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/8ghx9Dm-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/8ghx9Dm-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/8ghx9Dm-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/8ghx9Dm-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/8ghx9Dm-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/8ghx9Dm-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/8ghx9Dm-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/8ghx9Dm-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/8ghx9Dm-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/8ghx9Dm-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/8ghx9Dm-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/8ghx9Dm-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/8ghx9Dm-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/8ghx9Dm-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/8ghx9Dm-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/8ghx9Dm-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/8ghx9Dm-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/8ghx9Dm-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/8ghx9Dm-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/8ghx9Dm-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/8ghx9Dm-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-XhjGKJp/0/LzffW88RqrDfR2msRhfQWpXg59B84kF5TMCNdm9Sk/Th/i-XhjGKJp-Th.jpg", + "FileName": "100_4287.jpg", + "Processing": false, + "UploadKey": "15189452096", + "Date": "2024-06-07T22:27:56+00:00", + "DateTimeUploaded": "2024-06-07T22:27:56+00:00", + "DateTimeOriginal": "2006-08-09T23:44:36+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 773981, + "LastUpdated": "2024-06-07T22:27:57+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "XhjGKJp", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-XhjGKJp/0/NNjN7RfDRzCsxS385cfgsbLzvcZ3mQbQqxFwLLZz8/D/i-XhjGKJp-D.jpg", + "ArchivedSize": 773981, + "ArchivedMD5": "f069fdf168603194499f88169591730f", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4287.jpg", + "text": "100_4287.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/XhjGKJp-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-XhjGKJp", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/XhjGKJp!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/XhjGKJp-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/XhjGKJp-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/XhjGKJp-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/XhjGKJp-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/XhjGKJp-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/XhjGKJp-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/XhjGKJp-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/XhjGKJp-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/XhjGKJp-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/XhjGKJp-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/XhjGKJp-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/XhjGKJp-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/XhjGKJp-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/XhjGKJp-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/XhjGKJp-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/XhjGKJp-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/XhjGKJp-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/XhjGKJp-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/XhjGKJp-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/XhjGKJp-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/XhjGKJp-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-zzGpsH5/0/LPh2gxfVJ8wZbRsRm7cs5q7VwzHQqpg7sjGzKmxNf/Th/i-zzGpsH5-Th.jpg", + "FileName": "100_4288.jpg", + "Processing": false, + "UploadKey": "15189452348", + "Date": "2024-06-07T22:28:00+00:00", + "DateTimeUploaded": "2024-06-07T22:28:00+00:00", + "DateTimeOriginal": "2006-08-09T23:46:41+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1422127, + "LastUpdated": "2024-06-07T22:28:01+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "zzGpsH5", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-zzGpsH5/0/MVbs32dmsxzPKtWgPPcZ28Qk7DZgW7KMrtZGM82Df/D/i-zzGpsH5-D.jpg", + "ArchivedSize": 1422127, + "ArchivedMD5": "dd3c8f1c66daa368170e8affb554843d", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4288.jpg", + "text": "100_4288.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/zzGpsH5-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-zzGpsH5", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/zzGpsH5!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/zzGpsH5-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/zzGpsH5-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/zzGpsH5-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/zzGpsH5-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/zzGpsH5-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/zzGpsH5-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/zzGpsH5-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/zzGpsH5-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/zzGpsH5-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/zzGpsH5-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/zzGpsH5-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/zzGpsH5-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/zzGpsH5-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/zzGpsH5-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/zzGpsH5-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/zzGpsH5-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/zzGpsH5-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/zzGpsH5-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/zzGpsH5-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/zzGpsH5-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/zzGpsH5-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-DbmNCGG/0/KjJWGjwqLXrpsG36spSbmhrVXmTTtP3zb4j4m8dxZ/Th/i-DbmNCGG-Th.jpg", + "FileName": "100_4289.jpg", + "Processing": false, + "UploadKey": "15189452351", + "Date": "2024-06-07T22:28:00+00:00", + "DateTimeUploaded": "2024-06-07T22:28:00+00:00", + "DateTimeOriginal": "2006-08-09T23:51:24+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1371615, + "LastUpdated": "2024-06-07T22:28:01+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "DbmNCGG", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-DbmNCGG/0/KsTnBrPzJkmd6qKG8fJHZWgqkmsCnWvL795hbmMMW/D/i-DbmNCGG-D.jpg", + "ArchivedSize": 1371615, + "ArchivedMD5": "da7120ad642ad4c593adc5abb4e9043e", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4289.jpg", + "text": "100_4289.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/DbmNCGG-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-DbmNCGG", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/DbmNCGG!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/DbmNCGG-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/DbmNCGG-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/DbmNCGG-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/DbmNCGG-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/DbmNCGG-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/DbmNCGG-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/DbmNCGG-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/DbmNCGG-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/DbmNCGG-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/DbmNCGG-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/DbmNCGG-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/DbmNCGG-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/DbmNCGG-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/DbmNCGG-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/DbmNCGG-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/DbmNCGG-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/DbmNCGG-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/DbmNCGG-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/DbmNCGG-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/DbmNCGG-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/DbmNCGG-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-p5cPnZH/0/LkhGG2ZVCwQPJP6QnVg4PjpDtZZHmkVWs4qzC77Hz/Th/i-p5cPnZH-Th.jpg", + "FileName": "100_4290.jpg", + "Processing": false, + "UploadKey": "15189452402", + "Date": "2024-06-07T22:28:01+00:00", + "DateTimeUploaded": "2024-06-07T22:28:01+00:00", + "DateTimeOriginal": "2006-08-09T23:53:56+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 930984, + "LastUpdated": "2024-06-07T22:28:01+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "p5cPnZH", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-p5cPnZH/0/LvbVDPGWLCJHpBQt7PHKpbsvjNLXfzs849chWBZjq/D/i-p5cPnZH-D.jpg", + "ArchivedSize": 930984, + "ArchivedMD5": "aa2caacc4ac41ed6dff7df9652a99882", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4290.jpg", + "text": "100_4290.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/p5cPnZH-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-p5cPnZH", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/p5cPnZH!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/p5cPnZH-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/p5cPnZH-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/p5cPnZH-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/p5cPnZH-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/p5cPnZH-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/p5cPnZH-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/p5cPnZH-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/p5cPnZH-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/p5cPnZH-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/p5cPnZH-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/p5cPnZH-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/p5cPnZH-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/p5cPnZH-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/p5cPnZH-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/p5cPnZH-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/p5cPnZH-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/p5cPnZH-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/p5cPnZH-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/p5cPnZH-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/p5cPnZH-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/p5cPnZH-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-8mpVg28/0/LLgC4x596tXGhK46VrkFgVFFhhr4PjrmD337fxb3h/Th/i-8mpVg28-Th.jpg", + "FileName": "100_4291.jpg", + "Processing": false, + "UploadKey": "15189452542", + "Date": "2024-06-07T22:28:03+00:00", + "DateTimeUploaded": "2024-06-07T22:28:03+00:00", + "DateTimeOriginal": "2006-08-09T23:54:05+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1014422, + "LastUpdated": "2024-06-07T22:28:04+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "8mpVg28", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-8mpVg28/0/LTtGTq2mm4gHHZ8tgcwSFgqSSTpm4JmXswXVkZTG9/D/i-8mpVg28-D.jpg", + "ArchivedSize": 1014422, + "ArchivedMD5": "f5f0440e7138e9dc9c0fcb58be1b4277", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4291.jpg", + "text": "100_4291.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/8mpVg28-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-8mpVg28", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/8mpVg28!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/8mpVg28-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/8mpVg28-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/8mpVg28-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/8mpVg28-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/8mpVg28-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/8mpVg28-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/8mpVg28-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/8mpVg28-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/8mpVg28-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/8mpVg28-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/8mpVg28-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/8mpVg28-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/8mpVg28-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/8mpVg28-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/8mpVg28-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/8mpVg28-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/8mpVg28-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/8mpVg28-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/8mpVg28-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/8mpVg28-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/8mpVg28-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-4Fh3cm6/0/MB87mBJGn6pNfKnsZM8SSGpNbfzfDGMTD9bnZQNgf/Th/i-4Fh3cm6-Th.jpg", + "FileName": "100_4292.jpg", + "Processing": false, + "UploadKey": "15189452504", + "Date": "2024-06-07T22:28:02+00:00", + "DateTimeUploaded": "2024-06-07T22:28:02+00:00", + "DateTimeOriginal": "2006-08-10T00:00:04+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 956604, + "LastUpdated": "2024-06-07T22:28:03+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "4Fh3cm6", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-4Fh3cm6/0/MNFt8z7F4LzL9tjVPcjrQq6LDJKhZZSXkHS2ZfZKj/D/i-4Fh3cm6-D.jpg", + "ArchivedSize": 956604, + "ArchivedMD5": "f595c19c0c1d83c9b9a51ed783805f61", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4292.jpg", + "text": "100_4292.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/4Fh3cm6-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-4Fh3cm6", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/4Fh3cm6!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/4Fh3cm6-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/4Fh3cm6-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/4Fh3cm6-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/4Fh3cm6-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/4Fh3cm6-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/4Fh3cm6-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/4Fh3cm6-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/4Fh3cm6-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/4Fh3cm6-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/4Fh3cm6-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/4Fh3cm6-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/4Fh3cm6-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/4Fh3cm6-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/4Fh3cm6-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/4Fh3cm6-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/4Fh3cm6-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/4Fh3cm6-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/4Fh3cm6-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/4Fh3cm6-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/4Fh3cm6-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/4Fh3cm6-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-fVrwhRt/0/MQjnbCJNbWRkTPq72gcTS2kPPhpkm3gRHtB4QWKF4/Th/i-fVrwhRt-Th.jpg", + "FileName": "100_4293.jpg", + "Processing": false, + "UploadKey": "15189452606", + "Date": "2024-06-07T22:28:03+00:00", + "DateTimeUploaded": "2024-06-07T22:28:03+00:00", + "DateTimeOriginal": "2006-08-10T00:00:27+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1544257, + "LastUpdated": "2024-06-07T22:28:04+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "fVrwhRt", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-fVrwhRt/0/Njjk57DvT7TjjGnzVrqzg3J8Qsk2tjVxmH5VF93mP/D/i-fVrwhRt-D.jpg", + "ArchivedSize": 1544257, + "ArchivedMD5": "a6503ad05fd5e15a0eeb4bc0718d97b8", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4293.jpg", + "text": "100_4293.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/fVrwhRt-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-fVrwhRt", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/fVrwhRt!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/fVrwhRt-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/fVrwhRt-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/fVrwhRt-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/fVrwhRt-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/fVrwhRt-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/fVrwhRt-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/fVrwhRt-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/fVrwhRt-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/fVrwhRt-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/fVrwhRt-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/fVrwhRt-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/fVrwhRt-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/fVrwhRt-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/fVrwhRt-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/fVrwhRt-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/fVrwhRt-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/fVrwhRt-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/fVrwhRt-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/fVrwhRt-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/fVrwhRt-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/fVrwhRt-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-2qh3qbd/0/LKTFHzm99pPSHg65j7P3snHgX87wZZB9fXpjrFNGW/Th/i-2qh3qbd-Th.jpg", + "FileName": "100_4294.jpg", + "Processing": false, + "UploadKey": "15189452716", + "Date": "2024-06-07T22:28:05+00:00", + "DateTimeUploaded": "2024-06-07T22:28:05+00:00", + "DateTimeOriginal": "2006-08-10T00:00:34+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1087374, + "LastUpdated": "2024-06-07T22:28:06+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "2qh3qbd", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-2qh3qbd/0/LMFZF8HX6nDKh2Jk4SGF9cNWt4Z4GwNtjRFs7XGCv/D/i-2qh3qbd-D.jpg", + "ArchivedSize": 1087374, + "ArchivedMD5": "0ed27f4ce6e6e03d6e51ba877b0e09ce", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4294.jpg", + "text": "100_4294.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/2qh3qbd-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-2qh3qbd", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/2qh3qbd!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/2qh3qbd-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/2qh3qbd-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/2qh3qbd-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/2qh3qbd-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/2qh3qbd-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/2qh3qbd-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/2qh3qbd-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/2qh3qbd-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/2qh3qbd-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/2qh3qbd-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/2qh3qbd-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/2qh3qbd-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/2qh3qbd-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/2qh3qbd-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/2qh3qbd-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/2qh3qbd-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/2qh3qbd-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/2qh3qbd-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/2qh3qbd-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/2qh3qbd-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/2qh3qbd-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-d3Bx4Nh/0/NSwrbqJhxRdX9SCVb7DvLsLS3t4RzBKGhmc9B52kW/Th/i-d3Bx4Nh-Th.jpg", + "FileName": "100_4295.jpg", + "Processing": false, + "UploadKey": "15189452763", + "Date": "2024-06-07T22:28:05+00:00", + "DateTimeUploaded": "2024-06-07T22:28:05+00:00", + "DateTimeOriginal": "2006-08-10T00:00:40+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1157200, + "LastUpdated": "2024-06-07T22:28:06+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "d3Bx4Nh", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-d3Bx4Nh/0/KVT6HjdZMxrwt2KsbpnM8h7mFdTMRGW45Cx7n5q9M/D/i-d3Bx4Nh-D.jpg", + "ArchivedSize": 1157200, + "ArchivedMD5": "6a8b92845f896658c04481aee03896cb", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4295.jpg", + "text": "100_4295.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/d3Bx4Nh-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-d3Bx4Nh", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/d3Bx4Nh!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/d3Bx4Nh-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/d3Bx4Nh-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/d3Bx4Nh-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/d3Bx4Nh-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/d3Bx4Nh-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/d3Bx4Nh-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/d3Bx4Nh-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/d3Bx4Nh-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/d3Bx4Nh-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/d3Bx4Nh-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/d3Bx4Nh-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/d3Bx4Nh-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/d3Bx4Nh-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/d3Bx4Nh-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/d3Bx4Nh-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/d3Bx4Nh-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/d3Bx4Nh-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/d3Bx4Nh-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/d3Bx4Nh-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/d3Bx4Nh-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/d3Bx4Nh-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-GDRpdD6/0/Nbq85QT78wX6rXKkQ6CkpdsjCnrmgJ2T9BQtVJMNq/Th/i-GDRpdD6-Th.jpg", + "FileName": "100_4296.jpg", + "Processing": false, + "UploadKey": "15189452788", + "Date": "2024-06-07T22:28:06+00:00", + "DateTimeUploaded": "2024-06-07T22:28:06+00:00", + "DateTimeOriginal": "2006-08-10T00:08:04+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1367238, + "LastUpdated": "2024-06-07T22:28:07+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "GDRpdD6", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-GDRpdD6/0/Ld5Rbqnx3sZNrcXkC5bvwckQMqswRFmCrQzzGNX7h/D/i-GDRpdD6-D.jpg", + "ArchivedSize": 1367238, + "ArchivedMD5": "076eea65e0005de5b0754478d5a23b20", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4296.jpg", + "text": "100_4296.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/GDRpdD6-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-GDRpdD6", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/GDRpdD6!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/GDRpdD6-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/GDRpdD6-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/GDRpdD6-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/GDRpdD6-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/GDRpdD6-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/GDRpdD6-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/GDRpdD6-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/GDRpdD6-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/GDRpdD6-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/GDRpdD6-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/GDRpdD6-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/GDRpdD6-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/GDRpdD6-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/GDRpdD6-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/GDRpdD6-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/GDRpdD6-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/GDRpdD6-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/GDRpdD6-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/GDRpdD6-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/GDRpdD6-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/GDRpdD6-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-VZSfRPh/0/LTg4T5Jbqj4xdDbRGQzmWVkMnP5tLqxM6XmkHXwJ2/Th/i-VZSfRPh-Th.jpg", + "FileName": "100_4297.jpg", + "Processing": false, + "UploadKey": "15189452885", + "Date": "2024-06-07T22:28:07+00:00", + "DateTimeUploaded": "2024-06-07T22:28:07+00:00", + "DateTimeOriginal": "2006-08-10T00:08:10+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1399101, + "LastUpdated": "2024-06-07T22:28:08+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "VZSfRPh", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-VZSfRPh/0/Nd6MN8ztT5GgSFSTwCPK3s2rkZ8Lbprk7x6pnjXfr/D/i-VZSfRPh-D.jpg", + "ArchivedSize": 1399101, + "ArchivedMD5": "883398daddb9d4b214b979c2ce2fffe4", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4297.jpg", + "text": "100_4297.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/VZSfRPh-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-VZSfRPh", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/VZSfRPh!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/VZSfRPh-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/VZSfRPh-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/VZSfRPh-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/VZSfRPh-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/VZSfRPh-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/VZSfRPh-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/VZSfRPh-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/VZSfRPh-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/VZSfRPh-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/VZSfRPh-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/VZSfRPh-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/VZSfRPh-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/VZSfRPh-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/VZSfRPh-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/VZSfRPh-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/VZSfRPh-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/VZSfRPh-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/VZSfRPh-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/VZSfRPh-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/VZSfRPh-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/VZSfRPh-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-78qXDSm/0/MxsXcXmH2RZS84LdrsMqZjXrtTpmLWQMjr4nbwkhp/Th/i-78qXDSm-Th.jpg", + "FileName": "100_4298.jpg", + "Processing": false, + "UploadKey": "15189452924", + "Date": "2024-06-07T22:28:08+00:00", + "DateTimeUploaded": "2024-06-07T22:28:08+00:00", + "DateTimeOriginal": "2006-08-10T00:12:14+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1062295, + "LastUpdated": "2024-06-07T22:28:09+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "78qXDSm", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-78qXDSm/0/NMLp9SqFPSgdkxkrRNTKGMVkv48hWB45p2C6pnQPK/D/i-78qXDSm-D.jpg", + "ArchivedSize": 1062295, + "ArchivedMD5": "8e0e3b68e847336dfcfe14852f2b1e83", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4298.jpg", + "text": "100_4298.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/78qXDSm-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-78qXDSm", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/78qXDSm!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/78qXDSm-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/78qXDSm-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/78qXDSm-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/78qXDSm-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/78qXDSm-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/78qXDSm-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/78qXDSm-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/78qXDSm-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/78qXDSm-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/78qXDSm-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/78qXDSm-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/78qXDSm-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/78qXDSm-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/78qXDSm-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/78qXDSm-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/78qXDSm-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/78qXDSm-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/78qXDSm-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/78qXDSm-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/78qXDSm-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/78qXDSm-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-sRmHqHp/0/Knpt2xHpxVtG3wnj8Q5R5b4vxXh9sn3qtNzznm4sQ/Th/i-sRmHqHp-Th.jpg", + "FileName": "100_4299.jpg", + "Processing": false, + "UploadKey": "15189452904", + "Date": "2024-06-07T22:28:08+00:00", + "DateTimeUploaded": "2024-06-07T22:28:08+00:00", + "DateTimeOriginal": "2006-08-10T00:12:23+00:00", + "Format": "JPG", + "OriginalHeight": 2032, + "OriginalWidth": 1524, + "OriginalSize": 690378, + "LastUpdated": "2024-06-07T22:28:08+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "sRmHqHp", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-sRmHqHp/0/KsWDsWJPJ58zzNtJxzZV6Hb6qtTd8F8hc6cP6w8Pk/D/i-sRmHqHp-D.jpg", + "ArchivedSize": 690378, + "ArchivedMD5": "dbc70bbf08892ca34d2732cfaa57ec83", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4299.jpg", + "text": "100_4299.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/sRmHqHp-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-sRmHqHp", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/sRmHqHp!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/sRmHqHp-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/sRmHqHp-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/sRmHqHp-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/sRmHqHp-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/sRmHqHp-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/sRmHqHp-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/sRmHqHp-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/sRmHqHp-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/sRmHqHp-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/sRmHqHp-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/sRmHqHp-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/sRmHqHp-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/sRmHqHp-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/sRmHqHp-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/sRmHqHp-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/sRmHqHp-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/sRmHqHp-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/sRmHqHp-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/sRmHqHp-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/sRmHqHp-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/sRmHqHp-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-WHffWpK/0/MPk8SBh3Qd5qjHfKZ5XqqnjxfqdgX4hvTKBBh9W5k/Th/i-WHffWpK-Th.jpg", + "FileName": "100_4300.jpg", + "Processing": false, + "UploadKey": "15189453008", + "Date": "2024-06-07T22:28:09+00:00", + "DateTimeUploaded": "2024-06-07T22:28:09+00:00", + "DateTimeOriginal": "2006-08-10T00:12:32+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 876862, + "LastUpdated": "2024-06-07T22:28:10+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "WHffWpK", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-WHffWpK/0/MB2N32jLqfS4T6TVxn4CdVJ5rgP8b9VVwXwcHtrxr/D/i-WHffWpK-D.jpg", + "ArchivedSize": 876862, + "ArchivedMD5": "de7dbd349965e395eacf2abeb251a169", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4300.jpg", + "text": "100_4300.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/WHffWpK-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-WHffWpK", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/WHffWpK!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/WHffWpK-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/WHffWpK-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/WHffWpK-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/WHffWpK-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/WHffWpK-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/WHffWpK-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/WHffWpK-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/WHffWpK-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/WHffWpK-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/WHffWpK-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/WHffWpK-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/WHffWpK-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/WHffWpK-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/WHffWpK-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/WHffWpK-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/WHffWpK-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/WHffWpK-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/WHffWpK-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/WHffWpK-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/WHffWpK-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/WHffWpK-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-JxhHN95/0/LMKSC4shv3jqLNmSsnvcCnD73Fjx3JFVCppqHdVzF/Th/i-JxhHN95-Th.jpg", + "FileName": "100_4301.jpg", + "Processing": false, + "UploadKey": "15189453086", + "Date": "2024-06-07T22:28:11+00:00", + "DateTimeUploaded": "2024-06-07T22:28:11+00:00", + "DateTimeOriginal": "2006-08-10T00:16:04+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1527003, + "LastUpdated": "2024-06-07T22:28:12+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "JxhHN95", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-JxhHN95/0/NM5bcgptLSrPSrwSQCbJhMkrzpQhXwTxFGQp3v9FQ/D/i-JxhHN95-D.jpg", + "ArchivedSize": 1527003, + "ArchivedMD5": "e206ff6a56d88f99059d4adc84f94bdb", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4301.jpg", + "text": "100_4301.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/JxhHN95-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-JxhHN95", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/JxhHN95!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/JxhHN95-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/JxhHN95-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/JxhHN95-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/JxhHN95-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/JxhHN95-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/JxhHN95-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/JxhHN95-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/JxhHN95-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/JxhHN95-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/JxhHN95-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/JxhHN95-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/JxhHN95-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/JxhHN95-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/JxhHN95-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/JxhHN95-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/JxhHN95-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/JxhHN95-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/JxhHN95-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/JxhHN95-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/JxhHN95-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/JxhHN95-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-6wcdRs7/0/Mhg7SJ45XtRHSC9VvdGhD9BWbZTjwknCH8dhmvhmg/Th/i-6wcdRs7-Th.jpg", + "FileName": "100_4302.jpg", + "Processing": false, + "UploadKey": "15189453059", + "Date": "2024-06-07T22:28:10+00:00", + "DateTimeUploaded": "2024-06-07T22:28:10+00:00", + "DateTimeOriginal": "2006-08-10T00:21:52+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1174972, + "LastUpdated": "2024-06-07T22:28:11+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "6wcdRs7", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-6wcdRs7/0/LX73F54pL2RVKrbWQrJqzDvF5jKz4trspjrHHR7Rn/D/i-6wcdRs7-D.jpg", + "ArchivedSize": 1174972, + "ArchivedMD5": "fcdf82cf9ca94d881533424aa0b34404", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4302.jpg", + "text": "100_4302.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/6wcdRs7-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-6wcdRs7", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/6wcdRs7!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/6wcdRs7-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/6wcdRs7-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/6wcdRs7-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/6wcdRs7-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/6wcdRs7-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/6wcdRs7-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/6wcdRs7-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/6wcdRs7-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/6wcdRs7-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/6wcdRs7-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/6wcdRs7-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/6wcdRs7-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/6wcdRs7-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/6wcdRs7-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/6wcdRs7-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/6wcdRs7-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/6wcdRs7-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/6wcdRs7-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/6wcdRs7-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/6wcdRs7-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/6wcdRs7-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-FVzQRZ8/0/NTfkzwztxkSP7jZJtnVQjSRLT5rbfdK53vRpDVhNQ/Th/i-FVzQRZ8-Th.jpg", + "FileName": "100_4303.jpg", + "Processing": false, + "UploadKey": "15189453181", + "Date": "2024-06-07T22:28:12+00:00", + "DateTimeUploaded": "2024-06-07T22:28:12+00:00", + "DateTimeOriginal": "2006-08-10T00:22:00+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1097501, + "LastUpdated": "2024-06-07T22:28:13+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "FVzQRZ8", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-FVzQRZ8/0/LNPBH3r9JXth7Thn4MNHshx2P8FdSq7nn3xWhvT59/D/i-FVzQRZ8-D.jpg", + "ArchivedSize": 1097501, + "ArchivedMD5": "c48d9625b4b64f599c9fe361023cff0b", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4303.jpg", + "text": "100_4303.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/FVzQRZ8-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-FVzQRZ8", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/FVzQRZ8!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/FVzQRZ8-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/FVzQRZ8-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/FVzQRZ8-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/FVzQRZ8-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/FVzQRZ8-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/FVzQRZ8-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/FVzQRZ8-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/FVzQRZ8-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/FVzQRZ8-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/FVzQRZ8-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/FVzQRZ8-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/FVzQRZ8-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/FVzQRZ8-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/FVzQRZ8-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/FVzQRZ8-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/FVzQRZ8-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/FVzQRZ8-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/FVzQRZ8-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/FVzQRZ8-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/FVzQRZ8-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/FVzQRZ8-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-JHqrrTb/0/Ld829kgKnb694pxPSBrQ436753rvn6CjCdCJRpt4z/Th/i-JHqrrTb-Th.jpg", + "FileName": "100_4304.jpg", + "Processing": false, + "UploadKey": "15189453208", + "Date": "2024-06-07T22:28:12+00:00", + "DateTimeUploaded": "2024-06-07T22:28:12+00:00", + "DateTimeOriginal": "2006-08-10T00:29:25+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1247559, + "LastUpdated": "2024-06-07T22:28:13+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "JHqrrTb", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-JHqrrTb/0/Kpg7vDwGD2cGs3v3TwpXKG8vmXvZFgtk8bNcXdV3C/D/i-JHqrrTb-D.jpg", + "ArchivedSize": 1247559, + "ArchivedMD5": "492484648824d34e4ffa981292ea36d2", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4304.jpg", + "text": "100_4304.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/JHqrrTb-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-JHqrrTb", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/JHqrrTb!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/JHqrrTb-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/JHqrrTb-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/JHqrrTb-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/JHqrrTb-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/JHqrrTb-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/JHqrrTb-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/JHqrrTb-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/JHqrrTb-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/JHqrrTb-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/JHqrrTb-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/JHqrrTb-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/JHqrrTb-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/JHqrrTb-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/JHqrrTb-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/JHqrrTb-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/JHqrrTb-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/JHqrrTb-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/JHqrrTb-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/JHqrrTb-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/JHqrrTb-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/JHqrrTb-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-BC8MmzS/0/MDhgZx9JwhpJbzx5PTxjXcrs7JsPtLBC8JSdK6MkN/Th/i-BC8MmzS-Th.jpg", + "FileName": "100_4305.jpg", + "Processing": false, + "UploadKey": "15189453257", + "Date": "2024-06-07T22:28:13+00:00", + "DateTimeUploaded": "2024-06-07T22:28:13+00:00", + "DateTimeOriginal": "2006-08-10T00:29:37+00:00", + "Format": "JPG", + "OriginalHeight": 2032, + "OriginalWidth": 1524, + "OriginalSize": 975231, + "LastUpdated": "2024-06-07T22:28:14+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "BC8MmzS", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-BC8MmzS/0/NBLKNbdQ2wxN54W3VwfpXzmVXmpzG3wGn5RpjNc3V/D/i-BC8MmzS-D.jpg", + "ArchivedSize": 975231, + "ArchivedMD5": "51279c01c9da9189bfddfef2e3861cec", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4305.jpg", + "text": "100_4305.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/BC8MmzS-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-BC8MmzS", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/BC8MmzS!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/BC8MmzS-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/BC8MmzS-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/BC8MmzS-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/BC8MmzS-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/BC8MmzS-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/BC8MmzS-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/BC8MmzS-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/BC8MmzS-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/BC8MmzS-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/BC8MmzS-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/BC8MmzS-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/BC8MmzS-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/BC8MmzS-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/BC8MmzS-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/BC8MmzS-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/BC8MmzS-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/BC8MmzS-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/BC8MmzS-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/BC8MmzS-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/BC8MmzS-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/BC8MmzS-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-NSBtcz7/0/KNqpS7PQ87dvBPb4ZxjbVpMgXMpRC9ZW242vsXZ6n/Th/i-NSBtcz7-Th.jpg", + "FileName": "100_4306.jpg", + "Processing": false, + "UploadKey": "15189453384", + "Date": "2024-06-07T22:28:15+00:00", + "DateTimeUploaded": "2024-06-07T22:28:15+00:00", + "DateTimeOriginal": "2006-08-10T00:45:32+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1370864, + "LastUpdated": "2024-06-07T22:28:16+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "NSBtcz7", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-NSBtcz7/0/LxWKD9ddss3sGKMtscmRhRDRfdhwXBmZDVnZCb72M/D/i-NSBtcz7-D.jpg", + "ArchivedSize": 1370864, + "ArchivedMD5": "7ee0f6db87a59adb8bfbe2cbe6b7a484", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4306.jpg", + "text": "100_4306.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/NSBtcz7-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-NSBtcz7", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/NSBtcz7!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/NSBtcz7-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/NSBtcz7-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/NSBtcz7-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/NSBtcz7-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/NSBtcz7-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/NSBtcz7-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/NSBtcz7-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/NSBtcz7-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/NSBtcz7-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/NSBtcz7-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/NSBtcz7-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/NSBtcz7-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/NSBtcz7-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/NSBtcz7-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/NSBtcz7-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/NSBtcz7-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/NSBtcz7-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/NSBtcz7-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/NSBtcz7-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/NSBtcz7-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/NSBtcz7-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-NF87GXr/0/LQPX5VwcbCwwGBztt52Bp2dtbKS4g5RR9Px7HGVT7/Th/i-NF87GXr-Th.jpg", + "FileName": "100_4307.jpg", + "Processing": false, + "UploadKey": "15189453389", + "Date": "2024-06-07T22:28:15+00:00", + "DateTimeUploaded": "2024-06-07T22:28:15+00:00", + "DateTimeOriginal": "2006-08-10T00:45:46+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1471076, + "LastUpdated": "2024-06-07T22:28:16+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "NF87GXr", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-NF87GXr/0/M3GGRKGhFwpd4MGSrdmhjsbNp7ksb7xWVCn6hZWq9/D/i-NF87GXr-D.jpg", + "ArchivedSize": 1471076, + "ArchivedMD5": "c7e2f0787c99dbf561427099ed624689", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4307.jpg", + "text": "100_4307.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/NF87GXr-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-NF87GXr", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/NF87GXr!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/NF87GXr-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/NF87GXr-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/NF87GXr-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/NF87GXr-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/NF87GXr-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/NF87GXr-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/NF87GXr-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/NF87GXr-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/NF87GXr-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/NF87GXr-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/NF87GXr-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/NF87GXr-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/NF87GXr-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/NF87GXr-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/NF87GXr-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/NF87GXr-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/NF87GXr-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/NF87GXr-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/NF87GXr-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/NF87GXr-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/NF87GXr-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-ZKz3R4r/0/Nd6vhK323cxCgNXhf7TNVqWZN8kRnGhTcJJsWfrg4/Th/i-ZKz3R4r-Th.jpg", + "FileName": "100_4308.jpg", + "Processing": false, + "UploadKey": "15189453420", + "Date": "2024-06-07T22:28:16+00:00", + "DateTimeUploaded": "2024-06-07T22:28:16+00:00", + "DateTimeOriginal": "2006-08-10T00:45:57+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 1308642, + "LastUpdated": "2024-06-07T22:28:16+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "ZKz3R4r", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-ZKz3R4r/0/NPC92gZpZVcWcM3pVqXVPWmrWX58ZkLZbTMNZTbgT/D/i-ZKz3R4r-D.jpg", + "ArchivedSize": 1308642, + "ArchivedMD5": "a560593342d78ff190352873144b6566", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4308.jpg", + "text": "100_4308.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/ZKz3R4r-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-ZKz3R4r", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/ZKz3R4r!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/ZKz3R4r-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/ZKz3R4r-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/ZKz3R4r-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/ZKz3R4r-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/ZKz3R4r-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/ZKz3R4r-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/ZKz3R4r-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/ZKz3R4r-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/ZKz3R4r-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/ZKz3R4r-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/ZKz3R4r-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/ZKz3R4r-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/ZKz3R4r-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/ZKz3R4r-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/ZKz3R4r-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/ZKz3R4r-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/ZKz3R4r-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/ZKz3R4r-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/ZKz3R4r-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/ZKz3R4r-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/ZKz3R4r-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-qgcfhr9/0/Lzr5sKXK3Mq7LgmfJfgnqRhZ9qKX53WJ4XtK9PJXd/Th/i-qgcfhr9-Th.jpg", + "FileName": "100_4309.jpg", + "Processing": false, + "UploadKey": "15189453485", + "Date": "2024-06-07T22:28:17+00:00", + "DateTimeUploaded": "2024-06-07T22:28:17+00:00", + "DateTimeOriginal": "2006-08-10T03:28:48+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 721326, + "LastUpdated": "2024-06-07T22:28:18+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "qgcfhr9", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-qgcfhr9/0/MPvswGMTwSc84nSbd3VXTMX5PNjFkJ9HVfRXpfLms/D/i-qgcfhr9-D.jpg", + "ArchivedSize": 721326, + "ArchivedMD5": "b7c00c83421d8e0dcc272464efa6d68e", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4309.jpg", + "text": "100_4309.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/qgcfhr9-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-qgcfhr9", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/qgcfhr9!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/qgcfhr9-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/qgcfhr9-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/qgcfhr9-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/qgcfhr9-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/qgcfhr9-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/qgcfhr9-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/qgcfhr9-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/qgcfhr9-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/qgcfhr9-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/qgcfhr9-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/qgcfhr9-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/qgcfhr9-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/qgcfhr9-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/qgcfhr9-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/qgcfhr9-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/qgcfhr9-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/qgcfhr9-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/qgcfhr9-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/qgcfhr9-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/qgcfhr9-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/qgcfhr9-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-NXnVsw4/0/MbQqtBZBXw2M5CgxzZR4hMqvqdxWfD7t8GBs3xmnq/Th/i-NXnVsw4-Th.jpg", + "FileName": "100_4310.jpg", + "Processing": false, + "UploadKey": "15189453487", + "Date": "2024-06-07T22:28:17+00:00", + "DateTimeUploaded": "2024-06-07T22:28:17+00:00", + "DateTimeOriginal": "2006-08-10T23:35:49+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 625044, + "LastUpdated": "2024-06-07T22:28:18+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "NXnVsw4", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-NXnVsw4/0/KpjTrv9dkf8qRjCdW5vMp5xt2qr29wLTmVSLjhVB6/D/i-NXnVsw4-D.jpg", + "ArchivedSize": 625044, + "ArchivedMD5": "640b01c6f743cd7b0c15d3917d25ae32", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4310.jpg", + "text": "100_4310.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/NXnVsw4-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-NXnVsw4", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/NXnVsw4!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/NXnVsw4-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/NXnVsw4-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/NXnVsw4-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/NXnVsw4-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/NXnVsw4-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/NXnVsw4-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/NXnVsw4-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/NXnVsw4-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/NXnVsw4-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/NXnVsw4-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/NXnVsw4-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/NXnVsw4-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/NXnVsw4-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/NXnVsw4-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/NXnVsw4-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/NXnVsw4-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/NXnVsw4-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/NXnVsw4-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/NXnVsw4-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/NXnVsw4-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/NXnVsw4-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-qp7qnMh/0/L2HqtPjTTxTfFzK8v7R2ZjKx66HdkTbQT7RmtqSbD/Th/i-qp7qnMh-Th.jpg", + "FileName": "100_4311.jpg", + "Processing": false, + "UploadKey": "15189453528", + "Date": "2024-06-07T22:28:18+00:00", + "DateTimeUploaded": "2024-06-07T22:28:18+00:00", + "DateTimeOriginal": "2006-08-10T23:36:33+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 861581, + "LastUpdated": "2024-06-07T22:28:18+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "qp7qnMh", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-qp7qnMh/0/K9zkg5LTbMJ6RTGN3crrX98gnGzM8MVn8CM5HP2Ff/D/i-qp7qnMh-D.jpg", + "ArchivedSize": 861581, + "ArchivedMD5": "331cccb85d5101e0e489e36405a43cc7", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4311.jpg", + "text": "100_4311.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/qp7qnMh-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-qp7qnMh", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/qp7qnMh!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/qp7qnMh-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/qp7qnMh-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/qp7qnMh-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/qp7qnMh-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/qp7qnMh-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/qp7qnMh-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/qp7qnMh-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/qp7qnMh-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/qp7qnMh-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/qp7qnMh-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/qp7qnMh-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/qp7qnMh-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/qp7qnMh-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/qp7qnMh-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/qp7qnMh-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/qp7qnMh-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/qp7qnMh-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/qp7qnMh-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/qp7qnMh-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/qp7qnMh-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/qp7qnMh-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-n2PSKsH/0/M5jS9W2FLx25hgZ426C7X22sq5DP4gXrGpPh3P8HC/Th/i-n2PSKsH-Th.jpg", + "FileName": "100_4312.jpg", + "Processing": false, + "UploadKey": "15189453579", + "Date": "2024-06-07T22:28:18+00:00", + "DateTimeUploaded": "2024-06-07T22:28:18+00:00", + "DateTimeOriginal": "2006-08-11T04:28:45+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 627838, + "LastUpdated": "2024-06-07T22:28:19+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "n2PSKsH", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-n2PSKsH/0/KJ2SvbJkJXV7hsjWpCvkKjmR5QWHcntHLPM6FLV4M/D/i-n2PSKsH-D.jpg", + "ArchivedSize": 627838, + "ArchivedMD5": "5f48b9205f9f2bf347196e171dff488b", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4312.jpg", + "text": "100_4312.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/n2PSKsH-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-n2PSKsH", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/n2PSKsH!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/n2PSKsH-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/n2PSKsH-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/n2PSKsH-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/n2PSKsH-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/n2PSKsH-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/n2PSKsH-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/n2PSKsH-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/n2PSKsH-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/n2PSKsH-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/n2PSKsH-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/n2PSKsH-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/n2PSKsH-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/n2PSKsH-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/n2PSKsH-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/n2PSKsH-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/n2PSKsH-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/n2PSKsH-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/n2PSKsH-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/n2PSKsH-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/n2PSKsH-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/n2PSKsH-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-Bpr9JnL/0/L4zzGHrwZVqszc8QjvqDQx34VMZQzxr8D9CkD7sNQ/Th/i-Bpr9JnL-Th.jpg", + "FileName": "100_4313.jpg", + "Processing": false, + "UploadKey": "15189453561", + "Date": "2024-06-07T22:28:18+00:00", + "DateTimeUploaded": "2024-06-07T22:28:18+00:00", + "DateTimeOriginal": "2006-08-11T04:33:15+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 180807, + "LastUpdated": "2024-06-07T22:28:19+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "Bpr9JnL", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-Bpr9JnL/0/LFpKbKGfSQRJBsmRVGKN5JRBWqQhVgNF2b56RFzSq/D/i-Bpr9JnL-D.jpg", + "ArchivedSize": 180807, + "ArchivedMD5": "89baab3867152d17ba95396ec8d9e7fe", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4313.jpg", + "text": "100_4313.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/Bpr9JnL-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-Bpr9JnL", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/Bpr9JnL!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/Bpr9JnL-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/Bpr9JnL-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/Bpr9JnL-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/Bpr9JnL-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/Bpr9JnL-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/Bpr9JnL-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/Bpr9JnL-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/Bpr9JnL-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/Bpr9JnL-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/Bpr9JnL-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/Bpr9JnL-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/Bpr9JnL-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/Bpr9JnL-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/Bpr9JnL-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/Bpr9JnL-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/Bpr9JnL-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/Bpr9JnL-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/Bpr9JnL-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/Bpr9JnL-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/Bpr9JnL-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/Bpr9JnL-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + }, + { + "Title": "", + "Caption": "", + "Keywords": "", + "KeywordArray": [], + "Watermark": "No", + "Latitude": "0", + "Longitude": "0", + "Altitude": 0, + "Hidden": false, + "ThumbnailUrl": "https://photos.smugmug.com/photos/i-Jh4gpPn/0/MgLw7MFCdVRJv4M94r2N3h7RnFVx5jD7mj5PwWVjT/Th/i-Jh4gpPn-Th.jpg", + "FileName": "100_4314.jpg", + "Processing": false, + "UploadKey": "15189453597", + "Date": "2024-06-07T22:28:19+00:00", + "DateTimeUploaded": "2024-06-07T22:28:19+00:00", + "DateTimeOriginal": "2006-08-11T04:34:05+00:00", + "Format": "JPG", + "OriginalHeight": 1524, + "OriginalWidth": 2032, + "OriginalSize": 120447, + "LastUpdated": "2024-06-07T22:28:20+00:00", + "Collectable": true, + "IsArchive": false, + "IsVideo": false, + "ComponentFileTypes": { + "Image": [ + "jpg" + ] + }, + "CanEdit": true, + "CanBuy": true, + "Protected": false, + "EZProject": false, + "Watermarked": false, + "ImageKey": "Jh4gpPn", + "Serial": 0, + "ArchivedUri": "https://photos.smugmug.com/photos/i-Jh4gpPn/0/NdJ6j38GbKBBmSN3J9cVNBpfwwmZxJDdZNNVwZNH3/D/i-Jh4gpPn-D.jpg", + "ArchivedSize": 120447, + "ArchivedMD5": "f2d4d40a478423d45bbc92471f97e061", + "Status": "Open", + "SubStatus": "NFS", + "CanShare": true, + "Comments": true, + "ShowKeywords": true, + "FormattedValues": { + "Caption": { + "html": "", + "text": "" + }, + "FileName": { + "html": "100_4314.jpg", + "text": "100_4314.jpg" + } + }, + "PreferredDisplayFileExtension": "JPG", + "Uri": "/api/v2/album/Rqhn87/image/Jh4gpPn-0", + "WebUri": "https://tommyblue.smugmug.com/2006/Croazia/i-Jh4gpPn", + "UriDescription": "Image from album", + "Uris": { + "Components": { + "Uri": "/api/v2/library/asset/Jh4gpPn!components", + "Locator": "Component", + "LocatorType": "Objects", + "UriDescription": "Components available for an asset", + "EndpointType": "Components" + }, + "LargestImage": { + "Uri": "/api/v2/image/Jh4gpPn-0!largestimage", + "Locator": "LargestImage", + "LocatorType": "Object", + "UriDescription": "Largest size available for image", + "EndpointType": "LargestImage" + }, + "ImageSizes": { + "Uri": "/api/v2/image/Jh4gpPn-0!sizes", + "Locator": "ImageSizes", + "LocatorType": "Object", + "UriDescription": "Sizes available for image", + "EndpointType": "ImageSizes" + }, + "ImageSizeDetails": { + "Uri": "/api/v2/image/Jh4gpPn-0!sizedetails", + "Locator": "ImageSizeDetails", + "LocatorType": "Object", + "UriDescription": "Detailed size information for image", + "EndpointType": "ImageSizeDetails" + }, + "PointOfInterest": { + "Uri": "/api/v2/image/Jh4gpPn-0!pointofinterest", + "Locator": "PointOfInterest", + "LocatorType": "Object", + "UriDescription": "Point of interest for image", + "EndpointType": "PointOfInterest" + }, + "PointOfInterestCrops": { + "Uri": "/api/v2/image/Jh4gpPn-0!poicrops", + "Locator": "PointOfInterestCrops", + "LocatorType": "List", + "UriDescription": "PointOfInterest Crops for image", + "EndpointType": "PointOfInterestCrops" + }, + "Regions": { + "Uri": "/api/v2/image/Jh4gpPn-0!regions", + "Locator": "Region", + "LocatorType": "Objects", + "UriDescription": "Regions for image", + "EndpointType": "Regions" + }, + "ImageAlbum": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "ImageOwner": { + "Uri": "/api/v2/user/tommyblue", + "Locator": "User", + "LocatorType": "Object", + "UriDescription": "User By Nickname", + "EndpointType": "User" + }, + "ImageAlbums": { + "Uri": "/api/v2/image/Jh4gpPn-0!albums", + "Locator": "Album", + "LocatorType": "Objects", + "UriDescription": "Albums the image is included in", + "EndpointType": "ImageAlbums" + }, + "ImageDownload": { + "Uri": "/api/v2/image/Jh4gpPn-0!download", + "Locator": "ImageDownload", + "LocatorType": "Object", + "UriDescription": "Download image", + "EndpointType": "ImageDownload" + }, + "ImageComments": { + "Uri": "/api/v2/image/Jh4gpPn-0!comments", + "Locator": "Comment", + "LocatorType": "Objects", + "UriDescription": "Comments on image", + "EndpointType": "ImageComments" + }, + "RotateImage": { + "Uri": "/api/v2/image/Jh4gpPn-0!rotate", + "UriDescription": "Rotate an image", + "EndpointType": "RotateImage" + }, + "ColorImage": { + "Uri": "/api/v2/image/Jh4gpPn-0!color", + "Locator": "ColorImage", + "LocatorType": "Object", + "UriDescription": "Color an image", + "EndpointType": "ColorImage" + }, + "CopyImage": { + "Uri": "/api/v2/image/Jh4gpPn-0!copy", + "UriDescription": "Copy an image", + "EndpointType": "CopyImage" + }, + "CropImage": { + "Uri": "/api/v2/image/Jh4gpPn-0!crop", + "UriDescription": "Crop an image", + "EndpointType": "CropImage" + }, + "ImageMetadata": { + "Uri": "/api/v2/image/Jh4gpPn-0!metadata", + "Locator": "ImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for image", + "EndpointType": "ImageMetadata" + }, + "ImagePrices": { + "Uri": "/api/v2/image/Jh4gpPn-0!prices", + "Locator": "CatalogSkuPrice", + "LocatorType": "Objects", + "UriDescription": "Purchasable Skus", + "EndpointType": "ImagePrices" + }, + "ImagePricelistExclusions": { + "Uri": "/api/v2/image/Jh4gpPn-0!pricelistexclusions", + "Locator": "ImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an image", + "EndpointType": "ImagePricelistExclusions" + }, + "Album": { + "Uri": "/api/v2/album/Rqhn87", + "Locator": "Album", + "LocatorType": "Object", + "UriDescription": "Album by key", + "EndpointType": "Album" + }, + "Image": { + "Uri": "/api/v2/image/Jh4gpPn-0", + "Locator": "Image", + "LocatorType": "Object", + "UriDescription": "Image by key", + "EndpointType": "Image" + }, + "AlbumImagePricelistExclusions": { + "Uri": "/api/v2/album/Rqhn87/image/Jh4gpPn-0!pricelistexclusions", + "Locator": "AlbumImagePricelistExclusions", + "LocatorType": "Object", + "UriDescription": "Pricelist information for an album image", + "EndpointType": "AlbumImagePricelistExclusions" + }, + "AlbumImageMetadata": { + "Uri": "/api/v2/album/Rqhn87/image/Jh4gpPn-0!metadata", + "Locator": "AlbumImageMetadata", + "LocatorType": "Object", + "UriDescription": "Metadata for AlbumImage", + "EndpointType": "AlbumImageMetadata" + }, + "AlbumImageShareUris": { + "Uri": "/api/v2/album/Rqhn87/image/Jh4gpPn-0!shareuris", + "Locator": "AlbumImageShareUris", + "LocatorType": "Object", + "UriDescription": "URIs that are useful for sharing", + "EndpointType": "AlbumImageShareUris" + }, + "AlbumImageDownload": { + "Uri": "/api/v2/album/Rqhn87/image/Jh4gpPn-0!download", + "Locator": "AlbumImageDownload", + "LocatorType": "Object", + "UriDescription": "Download the image from the album", + "EndpointType": "AlbumImageDownload" + } + }, + "AlbumKey": "Rqhn87", + "Movable": true, + "Origin": "Album" + } + ], + "UriDescription": "Images from album", + "EndpointType": "AlbumImages", + "Pages": { + "Total": 176, + "Start": 101, + "Count": 76, + "RequestedCount": 100, + "FirstPage": "/api/v2/album/Rqhn87!images?start=1&count=100", + "LastPage": "/api/v2/album/Rqhn87!images?start=101&count=100", + "PrevPage": "/api/v2/album/Rqhn87!images?start=1&count=100" + }, + "Timing": { + "Total": { + "time": 0.65578, + "cycles": 1, + "objects": 0 + } + } + }, + "Code": 200, + "Message": "Ok" +} diff --git a/config.example.toml b/config.example.toml index d23b59a..009a13f 100644 --- a/config.example.toml +++ b/config.example.toml @@ -13,3 +13,4 @@ write_csv = true force_video_download = true concurrent_albums = 5 concurrent_downloads = 10 +download_raw = false diff --git a/http.go b/http.go index ab941e8..f6f2d48 100644 --- a/http.go +++ b/http.go @@ -115,7 +115,8 @@ func (s *handler) makeAPICall(url string) (*http.Response, error) { {name: "Accept", value: "application/json"}, {name: "Authorization", value: h}, } - log.Debug(headers) + // Disable headers to avoid leaking sensitive information + // log.Debug(headers) addHeaders(req, headers) r, err := client.Do(req) diff --git a/json_structs.go b/json_structs.go index 6ff8357..1c8f7bd 100644 --- a/json_structs.go +++ b/json_structs.go @@ -88,6 +88,9 @@ type albumImage struct { LargestVideo struct { Uri string `json:"Uri"` } `json:"LargestVideo"` + Components struct { + Uri string `json:"Uri"` + } `json:"Components"` } `json:"Uris"` builtFilename string // The final filename, after template replacements @@ -133,3 +136,17 @@ type albumVideo struct { } `json:"LargestVideo"` } `json:"Response"` } + +const componentTypeRaw = "svi" + +type imageComponent struct { + Response struct { + Component []struct { + ComponentType string `json:"ComponentType"` + DownloadUrl string `json:"DownloadUrl"` + FileName string `json:"FileName"` + FileSize int64 `json:"FileSize"` + MD5 string `json:"MD5"` + } `json:"Component"` + } `json:"Response"` +} diff --git a/smugmug.go b/smugmug.go index 75dee54..dcfbd1b 100644 --- a/smugmug.go +++ b/smugmug.go @@ -26,6 +26,7 @@ type Conf struct { ForceVideoDownload bool // When true, download videos also if marked as under processing ConcurrentDownloads int // number of concurrent downloads of images and videos, default is 1 ConcurrentAlbums int // number of concurrent albums analyzed via API calls + DownloadRaw bool // download raw files if available HTTPBaseUrl string // Smugmug API URL, defaults to https://api.smugmug.com HTTPMaxRetries int // Max number of retries for HTTP calls, defaults to 3 @@ -134,6 +135,7 @@ func ReadConf(cfgPath string) (*Conf, error) { ForceVideoDownload: viper.GetBool("store.force_video_download"), ConcurrentDownloads: viper.GetInt("store.concurrent_downloads"), ConcurrentAlbums: viper.GetInt("store.concurrent_albums"), + DownloadRaw: viper.GetBool("store.download_raw"), HTTPBaseUrl: viper.GetString("http.base_url"), HTTPMaxRetries: viper.GetInt("http.max_retries"), } @@ -233,7 +235,7 @@ func (w *Worker) albumWorker(id int) { } log.Debugf("[ALBUM IMAGES] %s", album.Uris.AlbumImages.URI) - images, err := w.albumImages(album.Uris.AlbumImages.URI, album.URLPath) + _, err := w.albumImages(album.Uris.AlbumImages.URI, album.URLPath) if err != nil { log.WithError(err).Errorf("cannot get album images for %s", album.Uris.AlbumImages.URI) w.errors++ @@ -242,10 +244,10 @@ func (w *Worker) albumWorker(id int) { log.Debugf("Got album images for %s", album.Uris.AlbumImages.URI) // log.Debugf("%+v", images) - w.saveImages(images, folder) - if w.cfg.WriteCSV { - w.writeToCSV(images, folder) - } + // w.saveImages(images, folder) + // if w.cfg.WriteCSV { + // w.writeToCSV(images, folder) + // } } } }