Skip to content

Commit b898d64

Browse files
committed
Change org.cai.ingredientIds to IngredientIds
1 parent 3af1829 commit b898d64

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/manifest/writing/assertions-actions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ Each object in the `actions` array has the following standard properties.
133133
| `action` | Yes | The action name. See [Action names](#action-names). | `c2pa.created` |
134134
| `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` |
135135
| `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. |
137137

138138
### Action names
139139

@@ -216,10 +216,10 @@ The `parameters` property can contain any data that provide more details on the
216216
]
217217
```
218218

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.
220220

221221
:::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.
223223
:::
224224

225225
For example:
@@ -229,7 +229,7 @@ For example:
229229
{
230230
"action": "c2pa.opened",
231231
"parameters": {
232-
"org.cai.ingredientIds": [
232+
"ingredientIds": [
233233
"xmp.iid:813ee422-9736-4cdc-9be6-4e35ed8e41cb"
234234
]
235235
}
@@ -247,7 +247,7 @@ For more information on action parameters, see the [C2PA Technical Specification
247247

248248
When defining/writing a manifest, the `instance_id` property identifies an ingredient used in an action.
249249

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.
251251

252252
```json
253253
"ingredients": [
@@ -263,7 +263,7 @@ Any `c2pa.opened` or `c2pa.placed` action must have an associated ingredient ide
263263
{
264264
"action": "c2pa.*",
265265
"parameters": {
266-
"org.cai.ingredientIds": [
266+
"ingredientIds": [
267267
"<String-instance-ID-of-ingredient>"
268268
],
269269
}
@@ -291,7 +291,7 @@ For example, the following action identifies that the `c2pa.opened` action was p
291291
{
292292
"action": "c2pa.opened",
293293
"parameters": {
294-
"org.cai.ingredientIds": [
294+
"ingredientIds": [
295295
"xmp.iid:3250038a-22ca-459b-8392-de275f8b155c"
296296
],
297297
}

0 commit comments

Comments
 (0)