Skip to content

Commit b47e890

Browse files
authored
Merge pull request #230 from contentauth/ingredientId-fix
Change org.cai.ingredientIds to IngredientIds
2 parents cc4043c + 232d824 commit b47e890

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/manifest/assertions-actions.md

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

302302
### Action names
303303

@@ -381,10 +381,10 @@ The `parameters` property can contain any data that provide more details on the
381381
]
382382
```
383383

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

386386
:::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.
388388
:::
389389

390390
For example:
@@ -394,7 +394,7 @@ For example:
394394
{
395395
"action": "c2pa.opened",
396396
"parameters": {
397-
"org.cai.ingredientIds": [
397+
"ingredientIds": [
398398
"xmp.iid:813ee422-9736-4cdc-9be6-4e35ed8e41cb"
399399
]
400400
}
@@ -412,7 +412,7 @@ For more information on action parameters, see the [C2PA Technical Specification
412412

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

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:
416416

417417
```json
418418
"ingredients": [
@@ -428,7 +428,7 @@ Any `c2pa.opened` or `c2pa.placed` action must have an associated ingredient ide
428428
{
429429
"action": "c2pa.*",
430430
"parameters": {
431-
"org.cai.ingredientIds": [
431+
"ingredientIds": [
432432
"<String-instance-ID-of-ingredient>"
433433
],
434434
}
@@ -456,7 +456,7 @@ For example, the following action identifies that the `c2pa.opened` action was p
456456
{
457457
"action": "c2pa.opened",
458458
"parameters": {
459-
"org.cai.ingredientIds": [
459+
"ingredientIds": [
460460
"xmp.iid:3250038a-22ca-459b-8392-de275f8b155c"
461461
],
462462
}

0 commit comments

Comments
 (0)