Skip to content

Commit

Permalink
add metadata properties to ingest requests
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilbochno committed Jan 22, 2025
1 parent 52798d6 commit 8912f35
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ body: [
"sourceTimestamp": 1611227656423,
"properties": {
"cm:autoVersion": {"value": true},
"createdAt": {"value": 1611227655695},
"modifiedAt": {"value" : 1611227655695},
"createdAt": {"value": 1611227655695, "annotation": "dateCreated"},
"modifiedAt": {"value" : 1611227655695 , "annotation": "dateModified"},
"cm:versionType": {"value": "MAJOR"},
"aspectsNames": {"value": ["cm:versionable", "cm:auditable"]},
"aspectsNames": {"value": ["cm:versionable", "cm:auditable"], "annotation": "aspects"},
"cm:name": {
"value": "purchase-order-scan.doc",
"annotation" : "name"
},
"type": {"value": "cm:content"},
"createdBy": {"value": "admin"},
"modifiedBy": {"value": "admin"},
"type": {"value": "cm:content", "annotation": "type"},
"createdBy": {"value": "admin", "annotation": "createdBy"},
"modifiedBy": {"value": "admin", "annotation": "modifiedBy"},
"cm:content": {
"file": {
"content-metadata": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,27 @@ body: [
"cm:versionable",
"cm:author",
"cm:titled"
]
],
"annotation": "aspects"
},
"modifiedBy": {
"value": "abeecher"
"value": "abeecher",
"annotation": "modifiedBy"
},
"createdAt": {
"value": 1611227655695
"value": 1611227655695,
"annotation": "dateCreated"
},
"modifiedAt": {
"value": 1611227655695
"value": 1611227655695,
"annotation": "dateModified"
},
"cm:versionLabel": {
"value": "1.0"
},
"createdBy": {
"value": "admin"
"value": "admin",
"annotation": "createdBy"
},
"ALLOW_ACCESS": {
"value": [
Expand Down

0 comments on commit 8912f35

Please sign in to comment.