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/writing/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
@@ -133,7 +133,7 @@ Each object in the `actions` array has the following standard properties.
133
133
|`action`| Yes | The action name. See [Action names](#action-names). |`c2pa.created`|
134
134
|`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`|
135
135
|`softwareAgent`| No | The software or hardware used to perform the action. |`"Adobe Firefly"`|
136
-
|`parameters`| No | Additional information describing the action; see [Parameters](#parameters)| Reference to ingredients in the `org.cai.ingredientIds` array. |
136
+
|`parameters`| No | Additional information describing the action; see [Parameters](#parameters)| Reference to ingredients in the `ingredientIds` array. |
137
137
138
138
### Action names
139
139
@@ -216,10 +216,10 @@ The `parameters` property can contain any data that provide more details on the
216
216
]
217
217
```
218
218
219
-
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.
219
+
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.
220
220
221
221
:::info
222
-
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.
222
+
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.
223
223
:::
224
224
225
225
For example:
@@ -229,7 +229,7 @@ For example:
229
229
{
230
230
"action": "c2pa.opened",
231
231
"parameters": {
232
-
"org.cai.ingredientIds": [
232
+
"ingredientIds": [
233
233
"xmp.iid:813ee422-9736-4cdc-9be6-4e35ed8e41cb"
234
234
]
235
235
}
@@ -247,7 +247,7 @@ For more information on action parameters, see the [C2PA Technical Specification
247
247
248
248
When defining/writing a manifest, the `instance_id` property identifies an ingredient used in an action.
249
249
250
-
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.
250
+
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.
251
251
252
252
```json
253
253
"ingredients": [
@@ -263,7 +263,7 @@ Any `c2pa.opened` or `c2pa.placed` action must have an associated ingredient ide
263
263
{
264
264
"action": "c2pa.*",
265
265
"parameters": {
266
-
"org.cai.ingredientIds": [
266
+
"ingredientIds": [
267
267
"<String-instance-ID-of-ingredient>"
268
268
],
269
269
}
@@ -291,7 +291,7 @@ For example, the following action identifies that the `c2pa.opened` action was p
0 commit comments