You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/manifest/assertions-actions.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -297,7 +297,7 @@ Each object in the `actions` array has the following standard properties.
297
297
|`action`| Yes | The action name. See [Action names](#action-names). |`c2pa.created`|
298
298
|`digitalSourceType`| No | A URL identifying a [IPTC term](https://cv.iptc.org/newscodes/digitalsourcetype/). See [Digital source type](#digital-source-type). |`http://cv.iptc.org/newscodes/`<br/> `digitalsourcetype/digitalCapture`|
299
299
|`softwareAgent`| No | The software or hardware used to perform the action. |`"Adobe Firefly"`|
300
-
|`parameters`| No | Additional information describing the action; see [Parameters](#parameters)| Reference to ingredients in the `org.cai.ingredientIds` array. |
300
+
|`parameters`| No | Additional information describing the action; see [Parameters](#parameters)| Reference to ingredients in the `ingredientIds` array. |
301
301
302
302
### Action names
303
303
@@ -381,10 +381,10 @@ The `parameters` property can contain any data that provide more details on the
381
381
]
382
382
```
383
383
384
-
When creating an actions assertion that has an associated ingredient, the `parameters` object must include a `org.cai.ingredientIds` property with an array of one or more [`instance_id` values](#the-instance_id-property) from ingredients. This is how you associate an action with one or more ingredients.
384
+
When creating an actions assertion that has an associated ingredient, the `parameters` object must include a `ingredientIds` property with an array of one or more [`instance_id` values](#the-instance_id-property) from ingredients. This is how you associate an action with one or more ingredients.
385
385
386
386
:::info
387
-
The [C2PA specification](https://c2pa.org/specifications/specifications/2.1/specs/C2PA_Specification.html#_parameters) requires that a `c2pa.transcoded`, `c2pa.repackaged`, `c2pa.opened`, or a `c2pa.placed` action have one or more associated ingredients, so it is very important to add the `org.cai.ingredientIds` parameter with a matching ingredient.
387
+
The [C2PA specification](https://c2pa.org/specifications/specifications/2.1/specs/C2PA_Specification.html#_parameters) requires that a `c2pa.transcoded`, `c2pa.repackaged`, `c2pa.opened`, or a `c2pa.placed` action have one or more associated ingredients, so it is very important to add the `ingredientIds` parameter with a matching ingredient.
388
388
:::
389
389
390
390
For example:
@@ -394,7 +394,7 @@ For example:
394
394
{
395
395
"action": "c2pa.opened",
396
396
"parameters": {
397
-
"org.cai.ingredientIds": [
397
+
"ingredientIds": [
398
398
"xmp.iid:813ee422-9736-4cdc-9be6-4e35ed8e41cb"
399
399
]
400
400
}
@@ -412,7 +412,7 @@ For more information on action parameters, see the [C2PA Technical Specification
412
412
413
413
When defining/writing a manifest, the `instance_id` property identifies an ingredient used in an action.
414
414
415
-
Any `c2pa.opened` or `c2pa.placed` action must have an associated ingredient identified by the `org.cai.ingredientIds` parameters field of the action with an array of ingredient `instance_id` values.
415
+
Any `c2pa.opened` or `c2pa.placed` action must have an associated ingredient identified by the `ingredientIds` parameters field of the action with an array of ingredient `instance_id` values. For example:
416
416
417
417
```json
418
418
"ingredients": [
@@ -428,7 +428,7 @@ Any `c2pa.opened` or `c2pa.placed` action must have an associated ingredient ide
428
428
{
429
429
"action": "c2pa.*",
430
430
"parameters": {
431
-
"org.cai.ingredientIds": [
431
+
"ingredientIds": [
432
432
"<String-instance-ID-of-ingredient>"
433
433
],
434
434
}
@@ -456,7 +456,7 @@ For example, the following action identifies that the `c2pa.opened` action was p
0 commit comments