Create a photo record after blob upload. Writes to public repo or permissioned space per visibility.
Input
application/jsonalbumUris
array
Optional
No description available.
maxLength: 100 itemscaption
string
Optional
No description available.
maxLength: 2000 bytescontributor
stringdid
Optional
A decentralized identifier (DID).
copyrightHolder
stringdid
Optional
A decentralized identifier (DID).
description
string
Optional
No description available.
maxLength: 5000 bytesheight
integer
Optional
No description available.
minimum: 1image
blob
Required
No description available.
inLanguage
string
Optional
No description available.
maxLength: 35 byteskeywords
array
Optional
No description available.
maxLength: 50 itemslicense
stringuri
Optional
A valid URI.
locationCreated
refnet.atpix.gallery.defs#geoPlace
Optional
No description available.
source
stringat-uri
Optional
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
spaceUri
string
Optional
No description available.
maxLength: 512 bytesthumbnail
blob
Optional
No description available.
title
string
Optional
No description available.
maxLength: 500 bytesvisibility
refnet.atpix.gallery.defs#visibility
Required
No description available.
width
integer
Optional
No description available.
minimum: 1Output
application/jsoncid
stringcid
Required
A content identifier (CID) referencing immutable data.
uri
stringat-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"image",
"visibility"
],
"properties": {
"image": {
"type": "blob",
"accept": [
"image/*"
]
},
"title": {
"type": "string",
"maxLength": 500
},
"width": {
"type": "integer",
"minimum": 1
},
"height": {
"type": "integer",
"minimum": 1
},
"source": {
"type": "string",
"format": "at-uri"
},
"caption": {
"type": "string",
"maxLength": 2000
},
"license": {
"type": "string",
"format": "uri"
},
"keywords": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 50
},
"spaceUri": {
"type": "string",
"maxLength": 512
},
"albumUris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"maxLength": 100
},
"thumbnail": {
"type": "blob",
"accept": [
"image/*"
]
},
"inLanguage": {
"type": "string",
"maxLength": 35
},
"visibility": {
"ref": "net.atpix.gallery.defs#visibility",
"type": "ref"
},
"contributor": {
"type": "string",
"format": "did"
},
"description": {
"type": "string",
"maxLength": 5000
},
"copyrightHolder": {
"type": "string",
"format": "did"
},
"locationCreated": {
"ref": "net.atpix.gallery.defs#geoPlace",
"type": "ref"
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"cid"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"uri": {
"type": "string",
"format": "at-uri"
}
}
},
"encoding": "application/json"
},
"description": "Create a photo record after blob upload. Writes to public repo or permissioned space per visibility."
}