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
@@ -138,17 +138,8 @@ In a future release, Events will be created independently from Assets.
138
138
139
139
### DataTrails Reserved Attributes
140
140
141
-
The DataTrails platform as reserved attributes starting with `arc_`.
142
-
Asset-Events have the following reserved attributes:
143
-
144
-
- **`arc_display_type`**: The value used to display in the DataTrails Application.
145
-
- **`arc_primary_image`**: A attribute containing a dictionary of references to a Blob, used to display in the DataTrails Application.
146
-
- **`arc_attribute_type`**: When set within a nested attribute, the value of `"arc_attachment"` identifies a reference to a [DataTrails Blob](/developers/api-reference/blobs-api/)
147
-
- **`arc_display_name"`**: When set to `"arc_primary_image"`, the blob is displayed in the DataTrails application.
148
-
- **`arc_blob_hash_value`**: When `arc_attribute_type` = `"arc_attachment"`, the value must equal the hash value within the associated `arc_blob_identity`.
149
-
- **`arc_blob_identity`**: A reference to a [Blob](/developers/api-reference/blobs-api/)
150
-
- **`arc_blob_hash_alg`**: The algorithm of the `arc_blob_hash_value` (eg: "SHA256")
151
-
- **`arc_file_name`**: When `arc_attribute_type` = `"arc_attachment"`, the file name of the blob.
141
+
The DataTrails platform has reserved attributes starting with `arc_` to perform specific capabilities.
142
+
See [Reserved Attributes](/glossary/reserved-attributes/) for more info.
152
143
153
144
### Event Primary Image
154
145
@@ -171,10 +162,10 @@ Asset-Events can use the [Blobs API](/developers/api-reference/blobs-api/) to as
171
162
172
163
Example:
173
164
174
-
ASSET_ID=assets/a1234567-8901
175
-
BLOB_ID=blobs/b1234567-8901
165
+
ASSET_ID=assets/a1234567-890a
166
+
BLOB_ID=blobs/b1234567-890b
176
167
BLOB_FILE=conformance.pdf
177
-
BLOB_HASH=h1234567
168
+
BLOB_HASH=h1234567hh
178
169
179
170
- Associate a Blob as the Event Primary Image:
180
171
@@ -187,9 +178,9 @@ Asset-Events can use the [Blobs API](/developers/api-reference/blobs-api/) to as
187
178
"arc_primary_image": {
188
179
"arc_attribute_type": "arc_attachment",
189
180
"arc_display_name": "arc_primary_image",
190
-
"arc_blob_hash_value": "$BLOB_HASH",
191
181
"arc_blob_identity": "$BLOB_ID",
192
182
"arc_blob_hash_alg": "SHA256",
183
+
"arc_blob_hash_value": "$BLOB_HASH",
193
184
"arc_file_name": "$BLOB_FILE"
194
185
}
195
186
}
@@ -204,7 +195,7 @@ Asset-Events can use the [Blobs API](/developers/api-reference/blobs-api/) to as
Copy file name to clipboardExpand all lines: content/developers/api-reference/attachments-api/index.md
+22-14Lines changed: 22 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,31 +32,39 @@ The steps include:
32
32
33
33
### Asset-Event Attachments
34
34
35
-
Assets support attachments by creating an [Asset-Event](/developers/api-reference/asset-events-api/) with nested `arc_` attributes.
35
+
Assets support attachments by creating an [Asset-Event](/developers/api-reference/asset-events-api/) with nested `arc_`[Reserved Attributes](/glossary/reserved-attributes/).
Copy file name to clipboardExpand all lines: content/developers/api-reference/events-api/index.md
+6-13Lines changed: 6 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,17 +93,10 @@ Additional YAML examples can be found in the articles in the [Overview](/platfor
93
93
94
94
### DataTrails Reserved Attributes
95
95
96
-
The DataTrails platform as reserved attributes starting with `arc_`.
97
-
Asset-Events have the following reserved attributes:
98
-
99
-
- **`arc_display_type`**: The value used to display in the DataTrails Application.
100
-
- **`arc_primary_image`**: A attribute containing a dictionary of references to a Blob, used to display in the DataTrails Application.
101
-
- **`arc_attribute_type`**: When set within a nested attribute, the value of `"arc_attachment"` identifies a reference to a [DataTrails Blob](/developers/api-reference/blobs-api/)
102
-
- **`arc_display_name"`**: When set to `"arc_primary_image"`, the blob is displayed in the DataTrails application.
103
-
- **`arc_blob_hash_value`**: When `arc_attribute_type` = `"arc_attachment"`, the value must equal the hash value within the associated `arc_blob_identity`.
104
-
- **`arc_blob_identity`**: A reference to a [Blob](/developers/api-reference/blobs-api/)
105
-
- **`arc_blob_hash_alg`**: The algorithm of the `arc_blob_hash_value` (eg: "SHA256")
106
-
- **`arc_file_name`**: When `arc_attribute_type` = `"arc_attachment"`, the file name of the blob.
96
+
### DataTrails Reserved Attributes
97
+
98
+
The DataTrails platform has reserved attributes starting with `arc_` to perform specific capabilities.
99
+
See [Reserved Attributes](/glossary/reserved-attributes/) for more info.
107
100
108
101
### Event Primary Image
109
102
@@ -121,9 +114,9 @@ Events can use the [Blobs API](/developers/api-reference/blobs-api/) to associat
0 commit comments