curl --request POST \
--url http://localhost:3000/api/v1/assets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filename": "<string>",
"mime": "<string>",
"fields": {},
"collections": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"tags": [
"<string>"
],
"rights": {
"license": "<string>",
"territories": [
"<string>"
],
"channels": [
"<string>"
],
"embargo": "2023-12-25",
"expires": "2023-12-25"
},
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"versionOf": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "http://localhost:3000/api/v1/assets"
payload = {
"token": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filename": "<string>",
"mime": "<string>",
"fields": {},
"collections": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"tags": ["<string>"],
"rights": {
"license": "<string>",
"territories": ["<string>"],
"channels": ["<string>"],
"embargo": "2023-12-25",
"expires": "2023-12-25"
},
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"versionOf": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
token: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
filename: '<string>',
mime: '<string>',
fields: {},
collections: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
tags: ['<string>'],
rights: {
license: '<string>',
territories: ['<string>'],
channels: ['<string>'],
embargo: '2023-12-25',
expires: '2023-12-25'
},
parentAssetId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
generator: '<string>',
prompt: '<string>',
versionOf: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('http://localhost:3000/api/v1/assets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/v1/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'token' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'filename' => '<string>',
'mime' => '<string>',
'fields' => [
],
'collections' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'tags' => [
'<string>'
],
'rights' => [
'license' => '<string>',
'territories' => [
'<string>'
],
'channels' => [
'<string>'
],
'embargo' => '2023-12-25',
'expires' => '2023-12-25'
],
'parentAssetId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'generator' => '<string>',
'prompt' => '<string>',
'versionOf' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:3000/api/v1/assets"
payload := strings.NewReader("{\n \"token\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filename\": \"<string>\",\n \"mime\": \"<string>\",\n \"fields\": {},\n \"collections\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"rights\": {\n \"license\": \"<string>\",\n \"territories\": [\n \"<string>\"\n ],\n \"channels\": [\n \"<string>\"\n ],\n \"embargo\": \"2023-12-25\",\n \"expires\": \"2023-12-25\"\n },\n \"parentAssetId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"generator\": \"<string>\",\n \"prompt\": \"<string>\",\n \"versionOf\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:3000/api/v1/assets")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"token\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filename\": \"<string>\",\n \"mime\": \"<string>\",\n \"fields\": {},\n \"collections\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"rights\": {\n \"license\": \"<string>\",\n \"territories\": [\n \"<string>\"\n ],\n \"channels\": [\n \"<string>\"\n ],\n \"embargo\": \"2023-12-25\",\n \"expires\": \"2023-12-25\"\n },\n \"parentAssetId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"generator\": \"<string>\",\n \"prompt\": \"<string>\",\n \"versionOf\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/v1/assets")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"token\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filename\": \"<string>\",\n \"mime\": \"<string>\",\n \"fields\": {},\n \"collections\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"rights\": {\n \"license\": \"<string>\",\n \"territories\": [\n \"<string>\"\n ],\n \"channels\": [\n \"<string>\"\n ],\n \"embargo\": \"2023-12-25\",\n \"expires\": \"2023-12-25\"\n },\n \"parentAssetId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"generator\": \"<string>\",\n \"prompt\": \"<string>\",\n \"versionOf\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sha256": "<string>",
"filename": "<string>",
"mime": "<string>",
"size": 0,
"width": 0,
"height": 0,
"probe": {},
"metadata": {
"title": "<string>",
"description": "<string>",
"keywords": [
"<string>"
],
"creator": "<string>",
"copyright": "<string>",
"capturedAt": "<string>",
"camera": "<string>",
"lens": "<string>",
"gps": {
"lat": 123,
"lon": 123
}
},
"tags": [
"<string>"
],
"fields": {},
"inherited": {},
"status": "draft",
"state": "draft",
"deletedAt": "2023-11-07T05:31:56Z",
"stackId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version": 0,
"current": true,
"proposedBy": "<string>",
"reviewNote": "<string>",
"proposedTags": [
"<string>"
],
"rights": {
"license": "<string>",
"territories": [
"<string>"
],
"channels": [
"<string>"
],
"embargo": "2023-12-25",
"expires": "2023-12-25",
"modelRelease": "released"
},
"origin": "shot",
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"c2pa": {
"manifests": 0,
"generator": "<string>",
"title": "<string>",
"signedBy": "<string>",
"actions": [
"<string>"
],
"digitalSourceType": "<string>",
"softwareAgent": "<string>",
"ingredients": 0
},
"supersededBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"private": true,
"collections": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"deduped": true
}{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sha256": "<string>",
"filename": "<string>",
"mime": "<string>",
"size": 0,
"width": 0,
"height": 0,
"probe": {},
"metadata": {
"title": "<string>",
"description": "<string>",
"keywords": [
"<string>"
],
"creator": "<string>",
"copyright": "<string>",
"capturedAt": "<string>",
"camera": "<string>",
"lens": "<string>",
"gps": {
"lat": 123,
"lon": 123
}
},
"tags": [
"<string>"
],
"fields": {},
"inherited": {},
"status": "draft",
"state": "draft",
"deletedAt": "2023-11-07T05:31:56Z",
"stackId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version": 0,
"current": true,
"proposedBy": "<string>",
"reviewNote": "<string>",
"proposedTags": [
"<string>"
],
"rights": {
"license": "<string>",
"territories": [
"<string>"
],
"channels": [
"<string>"
],
"embargo": "2023-12-25",
"expires": "2023-12-25",
"modelRelease": "released"
},
"origin": "shot",
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"c2pa": {
"manifests": 0,
"generator": "<string>",
"title": "<string>",
"signedBy": "<string>",
"actions": [
"<string>"
],
"digitalSourceType": "<string>",
"softwareAgent": "<string>",
"ingredients": 0
},
"supersededBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"private": true,
"collections": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"deduped": true
}{
"error": {
"code": "<string>",
"message": "<string>",
"detail": "<unknown>"
}
}Promote an upload, or ingest from a URL
With token: promote a staged upload. With url: the server fetches it (public addresses only). Identical bytes dedupe to the existing asset (200). Without the write scope the new asset is proposed, and required fields may be left for the person who approves it. C2PA Content Credentials in the file are read into c2pa, and set origin and generator unless given. With versionOf, it is a new version of that asset: filed where it is, with its tags and fields, and current once approved.
Scope: propose.
curl --request POST \
--url http://localhost:3000/api/v1/assets \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"token": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filename": "<string>",
"mime": "<string>",
"fields": {},
"collections": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"tags": [
"<string>"
],
"rights": {
"license": "<string>",
"territories": [
"<string>"
],
"channels": [
"<string>"
],
"embargo": "2023-12-25",
"expires": "2023-12-25"
},
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"versionOf": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "http://localhost:3000/api/v1/assets"
payload = {
"token": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"filename": "<string>",
"mime": "<string>",
"fields": {},
"collections": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"tags": ["<string>"],
"rights": {
"license": "<string>",
"territories": ["<string>"],
"channels": ["<string>"],
"embargo": "2023-12-25",
"expires": "2023-12-25"
},
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"versionOf": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
token: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
filename: '<string>',
mime: '<string>',
fields: {},
collections: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
tags: ['<string>'],
rights: {
license: '<string>',
territories: ['<string>'],
channels: ['<string>'],
embargo: '2023-12-25',
expires: '2023-12-25'
},
parentAssetId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
generator: '<string>',
prompt: '<string>',
versionOf: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('http://localhost:3000/api/v1/assets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_PORT => "3000",
CURLOPT_URL => "http://localhost:3000/api/v1/assets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'token' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'filename' => '<string>',
'mime' => '<string>',
'fields' => [
],
'collections' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'tags' => [
'<string>'
],
'rights' => [
'license' => '<string>',
'territories' => [
'<string>'
],
'channels' => [
'<string>'
],
'embargo' => '2023-12-25',
'expires' => '2023-12-25'
],
'parentAssetId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'generator' => '<string>',
'prompt' => '<string>',
'versionOf' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "http://localhost:3000/api/v1/assets"
payload := strings.NewReader("{\n \"token\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filename\": \"<string>\",\n \"mime\": \"<string>\",\n \"fields\": {},\n \"collections\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"rights\": {\n \"license\": \"<string>\",\n \"territories\": [\n \"<string>\"\n ],\n \"channels\": [\n \"<string>\"\n ],\n \"embargo\": \"2023-12-25\",\n \"expires\": \"2023-12-25\"\n },\n \"parentAssetId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"generator\": \"<string>\",\n \"prompt\": \"<string>\",\n \"versionOf\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("http://localhost:3000/api/v1/assets")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"token\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filename\": \"<string>\",\n \"mime\": \"<string>\",\n \"fields\": {},\n \"collections\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"rights\": {\n \"license\": \"<string>\",\n \"territories\": [\n \"<string>\"\n ],\n \"channels\": [\n \"<string>\"\n ],\n \"embargo\": \"2023-12-25\",\n \"expires\": \"2023-12-25\"\n },\n \"parentAssetId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"generator\": \"<string>\",\n \"prompt\": \"<string>\",\n \"versionOf\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("http://localhost:3000/api/v1/assets")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"token\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"filename\": \"<string>\",\n \"mime\": \"<string>\",\n \"fields\": {},\n \"collections\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"rights\": {\n \"license\": \"<string>\",\n \"territories\": [\n \"<string>\"\n ],\n \"channels\": [\n \"<string>\"\n ],\n \"embargo\": \"2023-12-25\",\n \"expires\": \"2023-12-25\"\n },\n \"parentAssetId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"generator\": \"<string>\",\n \"prompt\": \"<string>\",\n \"versionOf\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sha256": "<string>",
"filename": "<string>",
"mime": "<string>",
"size": 0,
"width": 0,
"height": 0,
"probe": {},
"metadata": {
"title": "<string>",
"description": "<string>",
"keywords": [
"<string>"
],
"creator": "<string>",
"copyright": "<string>",
"capturedAt": "<string>",
"camera": "<string>",
"lens": "<string>",
"gps": {
"lat": 123,
"lon": 123
}
},
"tags": [
"<string>"
],
"fields": {},
"inherited": {},
"status": "draft",
"state": "draft",
"deletedAt": "2023-11-07T05:31:56Z",
"stackId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version": 0,
"current": true,
"proposedBy": "<string>",
"reviewNote": "<string>",
"proposedTags": [
"<string>"
],
"rights": {
"license": "<string>",
"territories": [
"<string>"
],
"channels": [
"<string>"
],
"embargo": "2023-12-25",
"expires": "2023-12-25",
"modelRelease": "released"
},
"origin": "shot",
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"c2pa": {
"manifests": 0,
"generator": "<string>",
"title": "<string>",
"signedBy": "<string>",
"actions": [
"<string>"
],
"digitalSourceType": "<string>",
"softwareAgent": "<string>",
"ingredients": 0
},
"supersededBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"private": true,
"collections": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"deduped": true
}{
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"workspaceId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"sha256": "<string>",
"filename": "<string>",
"mime": "<string>",
"size": 0,
"width": 0,
"height": 0,
"probe": {},
"metadata": {
"title": "<string>",
"description": "<string>",
"keywords": [
"<string>"
],
"creator": "<string>",
"copyright": "<string>",
"capturedAt": "<string>",
"camera": "<string>",
"lens": "<string>",
"gps": {
"lat": 123,
"lon": 123
}
},
"tags": [
"<string>"
],
"fields": {},
"inherited": {},
"status": "draft",
"state": "draft",
"deletedAt": "2023-11-07T05:31:56Z",
"stackId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"version": 0,
"current": true,
"proposedBy": "<string>",
"reviewNote": "<string>",
"proposedTags": [
"<string>"
],
"rights": {
"license": "<string>",
"territories": [
"<string>"
],
"channels": [
"<string>"
],
"embargo": "2023-12-25",
"expires": "2023-12-25",
"modelRelease": "released"
},
"origin": "shot",
"parentAssetId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"generator": "<string>",
"prompt": "<string>",
"c2pa": {
"manifests": 0,
"generator": "<string>",
"title": "<string>",
"signedBy": "<string>",
"actions": [
"<string>"
],
"digitalSourceType": "<string>",
"softwareAgent": "<string>",
"ingredients": 0
},
"supersededBy": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"private": true,
"collections": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"deduped": true
}{
"error": {
"code": "<string>",
"message": "<string>",
"detail": "<unknown>"
}
}Authorizations
An API key: ab_...
Body
- Option 1
- Option 2
From POST /api/v1/uploads, after the PUT
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$1 - 5121 - 255Custom field values, keyed by field key
Show child attributes
Show child attributes
50^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$10064What it may be used for; null or {} says nothing
Show child attributes
Show child attributes
Defaults to what its Content Credentials say, if any
shot, licensed, generated The asset it was made from: the photo an edit started from, a model's input
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$The tool or model that made it, e.g. "gpt-image 2.0"
200For a generated asset: what it was asked for
10000A new version of this asset: it joins its version stack, collections, tags and fields, and with write on it becomes current
^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$draft keeps it out of the library until it is submitted and approved. Without write it is proposed whatever this says
draft, active