Skip to content

Commit af0f420

Browse files
authored
Merge pull request #222 from contentauth/update-verify
Update info displayed
2 parents 925348b + c6bf3e6 commit af0f420

File tree

1 file changed

+1
-136
lines changed

1 file changed

+1
-136
lines changed

docs/verify.mdx

Lines changed: 1 addition & 136 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Supported asset file types include:
2929
- **Document**: PDF.
3030

3131
:::tip
32-
Verify shows the complete current list of supported file types (when no asset is displayed on the page).
32+
When you first load the site and no asset is displayed on the page, Verify shows the complete current list of supported file types.
3333
:::
3434

3535
### Uploading an asset
@@ -235,136 +235,6 @@ Another example that can result in this message is shown in [this image](https:/
235235
]
236236
```
237237

238-
### Credit and usage
239-
240-
The **Credit and usage** section displays information about the asset's author and usage rights, divided into these subsections:
241-
242-
- [Produced by](#produced-by)
243-
- [Social media accounts](#social-media-accounts)
244-
- [AI model usage](#ai-model-usage) (if the active manifest contains a [do not train assertion](manifest/assertions-actions#do-not-train-assertion))
245-
246-
#### Produced by
247-
248-
The **Produced by** subsection shows information derived from the [CreativeWork assertion](manifest/assertions-actions#creative-work-assertion) in the active manifest.
249-
If the associated `data` object has an `author` property, then the `name` property is shown under **Produced by**. If there is a `url` or `license` property, then it says **Website** with a link to the site. For example:
250-
251-
import verify_credit from '../static/img/verify-credit.png';
252-
253-
<img src={verify_credit} style={{ width: '250px' }} />
254-
255-
The above example shows the following CreativeWork assertion from the active manifest. The `url` property is the URL of the asset on the Adobe Stock site:
256-
257-
```json
258-
"assertions": [
259-
{
260-
"label": "stds.schema-org.CreativeWork",
261-
"data": {
262-
"@context": "https://schema.org",
263-
"@type": "CreativeWork",
264-
"url": "https://stock.adobe.com/135017891"
265-
},
266-
"kind": "Json"
267-
},
268-
...]
269-
```
270-
271-
#### Social media accounts
272-
273-
If the asset was created with Adobe Photoshop or Adobe Lightroom and the asset's creator has [connected social media accounts](https://connected-accounts.adobe.com/), then the **Credit and usage** section shows the information added for any connected accounts, which can include Behance, Instagram, LinkedIn, and X (Twitter).
274-
275-
For more information, see:
276-
277-
- [Content Credentials (Beta) in Photoshop - Connect accounts for creative attribution](https://helpx.adobe.com/photoshop/using/connect-accounts.html)
278-
- [Content Credentials (Beta) in Lightroom](https://helpx.adobe.com/lightroom-cc/using/content-credentials-lightroom.html)
279-
280-
For example:
281-
282-
import verify_social from '../static/img/verify-social.png';
283-
284-
<img src={verify_social} style={{ width: '250px' }} />
285-
286-
<!--
287-
The `identifier` property is the decentralized identifier (DID) of the social media account, and the `name` property is the handle. The `credential` property is a [Credential](https://www.w3.org/TR/vc-data-model/#credentials) that contains a hash of the DID and the URL of the Credential itself.
288-
-->
289-
290-
The CreativeWork assertion from the JSON manifest for the above example is shown below.
291-
292-
<details style={{backgroundColor: 'transparent'}}>
293-
<summary class="code_summary">Show manifest code</summary>
294-
295-
```json
296-
{
297-
"label": "stds.schema-org.CreativeWork",
298-
"data": {
299-
"@context": "https://schema.org",
300-
"@type": "CreativeWork",
301-
"author": [
302-
{
303-
"@type": "Person",
304-
"credential": [
305-
{
306-
"alg": "sha256",
307-
"hash": "IcZeS318070nuvDYmPqfQdZmOI7jGumMjHTxNshA2ao=",
308-
"url": "self#jumbf=/c2pa/adobe:urn:uuid:4fd5a284-6fe9-479c-a8af-9bcbbf851d92/c2pa.credentials/did:adobe:ff76b2edfcdb600facacd7a165172c2aecc07718233798ed61bd3a9f4eba0969e"
309-
}
310-
],
311-
"identifier": "did:adobe:ff76b2edfcdb600facacd7a165172c2aecc07718233798ed61bd3a9f4eba0969e",
312-
"name": "obidigbo nzeribe"
313-
},
314-
{
315-
"@id": "https://www.instagram.com/obidinzeribe",
316-
"@type": "Person",
317-
"credential": [
318-
{
319-
"alg": "sha256",
320-
"hash": "IcZeS318070nuvDYmPqfQdZmOI7jGumMjHTxNshA2ao=",
321-
"url": "self#jumbf=/c2pa/adobe:urn:uuid:4fd5a284-6fe9-479c-a8af-9bcbbf851d92/c2pa.credentials/did:adobe:ff76b2edfcdb600facacd7a165172c2aecc07718233798ed61bd3a9f4eba0969e"
322-
}
323-
],
324-
"identifier": "did:adobe:ff76b2edfcdb600facacd7a165172c2aecc07718233798ed61bd3a9f4eba0969e",
325-
"name": "obidinzeribe"
326-
},
327-
{
328-
"@id": "https://www.behance.net/obidigbonzeribe",
329-
"@type": "Person",
330-
"credential": [
331-
{
332-
"alg": "sha256",
333-
"hash": "IcZeS318070nuvDYmPqfQdZmOI7jGumMjHTxNshA2ao=",
334-
"url": "self#jumbf=/c2pa/adobe:urn:uuid:4fd5a284-6fe9-479c-a8af-9bcbbf851d92/c2pa.credentials/did:adobe:ff76b2edfcdb600facacd7a165172c2aecc07718233798ed61bd3a9f4eba0969e"
335-
}
336-
],
337-
"identifier": "did:adobe:ff76b2edfcdb600facacd7a165172c2aecc07718233798ed61bd3a9f4eba0969e",
338-
"name": "obidigbo nzeribe"
339-
}
340-
]
341-
},
342-
"kind": "Json"
343-
}
344-
```
345-
346-
</details>
347-
348-
#### AI model usage
349-
350-
If the active manifest contains a [do not train assertion](manifest/assertions-actions#do-not-train-assertion), then the **Credit and usage** section displays the following message:
351-
352-
<div
353-
style={{
354-
width: '200px',
355-
border: '1px solid #ccc',
356-
backgroundColor: '#fff',
357-
padding: '7px',
358-
marginLeft: 'auto',
359-
marginRight: 'auto',
360-
fontSize: '80%',
361-
}}
362-
>
363-
<b>AI model usage</b>
364-
<br />
365-
Do not use my content to train AI models
366-
</div>
367-
368238
### Process
369239

370240
The **Process** section displays information about the process used to create the asset, divided into the following subsections:
@@ -535,8 +405,3 @@ See the above example yourself, based on a C2PA test image:
535405

536406
- [Inspect using Verify](https://contentcredentials.org/verify?source=https://c2pa.org/public-testfiles/image/jpeg/truepic-20230212-camera.jpg)
537407
- [View the corresponding manifest report from C2PA Tool](https://c2pa.org/public-testfiles/image/jpeg/manifests/truepic-20230212-camera/manifest_store.json)
538-
539-
## Searching for matching Content Credentials
540-
541-
Adobe products can save manifest stores in the [Adobe Content Credentials Cloud](getting-started#storing-a-manifest-in-the-cloud).
542-
Click **Search for possible matches** to search the Adobe Content Credentials Cloud for content similar to the asset's ingredients, as described in the [Ingredients](#ingredients) section above.

0 commit comments

Comments
 (0)