RecordFields
The creator-declared share state of a protected media item:
private: The creator declared that the media is not intended to be distributed anywhere publicunrestricted: The creator declared no distribution restrictions for the mediarestricted: The creator declared that the media is intended to be distributed only where the Record's distribution fields permit
A share state describes only the intent the creator has declared to SASHA. It is not a statement about the legal status of the media; rights such as copyright apply independently.
Possible values: [private, unrestricted, restricted]
URL patterns the browser-facing display URL of the media is allowed to match
(only meaningful with the restricted share state).
Pattern syntax:
httpsonly. The scheme may be omitted;httpsis implied.- A host with no path matches any path on that host:
https://cdn.example.com. - A path ending in
/matches that prefix:https://news.example.com/articles/matches/articles/123but not/archive/9. A path not ending in/must match exactly. *.is a subdomain wildcard, and is only allowed as the leftmost label:https://*.example.com. It cannot appear elsewhere, sohttps://example.com/*is not a valid pattern — omit the path instead. The base of a wildcard must have at least two labels and must not be a public suffix.- No userinfo, no query string, no fragment, no IP literals, no
localhost.
A pattern that does not parse is rejected with an INVALID_PATTERN field violation
naming the entry, e.g. allowed_publish_urls[1].
URL patterns the storage/CDN address of the media bytes is allowed to match
(only meaningful with the restricted share state).
Same pattern syntax as allowed_publish_urls.
The media is not allowed to be available before this time (supports embargo dates)
The media is not allowed to be available after this time
Display text the publisher is expected to show alongside the media (e.g. photographer credit).
Plain text, no control characters. Consumers must always treat this value as text, never as markup.
Possible values: <= 256 characters
URL where the media can be purchased or licensed.
Must be a well-formed https URL without userinfo, and must not point at an IP literal or localhost.
Possible values: <= 2048 characters
Legal business name of the entity that has licensed the media asset. Aids enforcers when the licence agreement is not bound to a specific location.
Plain text, no control characters. Consumers must always treat this value as text, never as markup.
Possible values: <= 256 characters
The creator's own upstream source ID for the asset: the creator's identifier for the media in their own system.
Opaque text, no control characters. A UUID (RFC 9562) is recommended but not required. Consumers must always treat this value as text, never as markup.
Possible values: <= 256 characters
custom_fields object
Custom fields, keyed by a creator-chosen name. Custom fields are display/metadata only: they never participate in distribution guidance evaluation, so they may be set under any share state. Disclosure to other parties is governed by the creator's record-access policy (managed by SASHA on the creator's behalf).
property name* FieldValue
A typed value for a custom Record field. Exactly one property is set, which pins the value's type. Custom fields are display/metadata only and never participate in distribution guidance evaluation.
A UUID per RFC 9562 as its 16 raw bytes, base64-encoded.
The date and time the Record was first created
The date and time the Record was last replaced
{
"share_state": "private",
"allowed_publish_urls": [
"string"
],
"allowed_source_urls": [
"string"
],
"allowed_from": "2024-07-29T15:51:28.071Z",
"allowed_to": "2024-07-29T15:51:28.071Z",
"byline": "string",
"purchase_url": "string",
"licensee": "string",
"asset_source_id": "string",
"custom_fields": {},
"created_at": "2024-07-29T15:51:28.071Z",
"updated_at": "2024-07-29T15:51:28.071Z"
}