Skip to content

fix: Update ADaaS artifacts example #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions fern/docs/pages/adaas/attachments-extraction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,29 @@ The uploaded artifact is structured like a normal artifact containing extracted
## Examples

Here is an example of an SSOR attachment file:
```json
[
{
"id": {
"external": "don:core:dvrv-us-1:devo/1:artifact/1" // The DON of the uploaded artifact
},
"parent_id": {
"external": "12345" // ID of the parent in the source system
},
"actor_id": {
"external": "123456" // ID of the uploader in the source system
}
},
{
"id": {
"external": "don:core:dvrv-us-1:devo/1:artifact/2" // The DON of the uploaded artifact
},
"parent_id": {
"external": "12344" // ID of the parent in the source system
},
"actor_id": {
"external": "123457" // ID of the uploader in the source system
}
}
]
```json lines
{
"id": {
"devrev": "don:core:dvrv-us-1:devo/1:artifact/1", // DON of the artifact, that S3interact returned
"external": "111" // ID of the artifact in the external service
},
"parent_id": {
"external": "1111" // ID of the parent object in the external service
},
"actor_id": {
"external": "11111" // ID of the actor that uploaded/modified the artifact in the external service
}
}
{
"id": {
"devrev": "don:core:dvrv-us-1:devo/1:artifact/2",
"external": "222"
},
"parent_id": {
"external": "2222"
},
"actor_id": {
"external": "22222"
}
}
```
Loading