Skip to content

Commit

Permalink
deploy: f3ab7ac
Browse files Browse the repository at this point in the history
  • Loading branch information
imsdu committed Feb 27, 2024
1 parent 0a0073f commit a1352cf
Show file tree
Hide file tree
Showing 106 changed files with 899 additions and 57 deletions.
2 changes: 1 addition & 1 deletion paradox.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name" : "docs",
"version" : "0.0.0+1-eca76925+20240213-0846-SNAPSHOT"
"version" : "0.0.0+1-eca76925+20240227-1656-SNAPSHOT"
}
2 changes: 2 additions & 0 deletions snapshot/contexts/files.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
"_keywords": "https://bluebrain.github.io/nexus/vocabulary/keywords",
"_location": "https://bluebrain.github.io/nexus/vocabulary/location",
"_filename": "https://bluebrain.github.io/nexus/vocabulary/filename",
"description": "http://schema.org/description",
"name": "http://schema.org/name",
"_mediaType": "https://bluebrain.github.io/nexus/vocabulary/mediaType",
"_uuid": "https://bluebrain.github.io/nexus/vocabulary/uuid",
"_storage": {
Expand Down
7 changes: 7 additions & 0 deletions snapshot/contexts/type-hierarchy.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"@context": {
"@vocab": "https://bluebrain.github.io/nexus/vocabulary/",
"mapping": "https://bluebrain.github.io/nexus/vocabulary/mapping"
},
"@id": "https://bluebrain.github.io/nexus/contexts/type-hierarchy.json"
}
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/acls-api.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
<li><a href="../../../docs/delta/api/graph-analytics-api.html" class="page">Graph analytics</a></li>
<li><a href="../../../docs/delta/api/jira.html" class="page">Jira integration</a></li>
<li><a href="../../../docs/delta/api/supervision-api.html" class="page">Supervision</a></li>
<li><a href="../../../docs/delta/api/type-hierarchy-api.html" class="page">Type hierarchy</a></li>
</ul></li>
<li><a href="../../../docs/delta/metadata.html" class="page">Nexus Metadata</a></li>
<li><a href="../../../docs/delta/plugins/index.html" class="page">Plugins</a></li>
Expand Down
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/archives-api.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
<li><a href="../../../docs/delta/api/graph-analytics-api.html" class="page">Graph analytics</a></li>
<li><a href="../../../docs/delta/api/jira.html" class="page">Jira integration</a></li>
<li><a href="../../../docs/delta/api/supervision-api.html" class="page">Supervision</a></li>
<li><a href="../../../docs/delta/api/type-hierarchy-api.html" class="page">Type hierarchy</a></li>
</ul></li>
<li><a href="../../../docs/delta/metadata.html" class="page">Nexus Metadata</a></li>
<li><a href="../../../docs/delta/plugins/index.html" class="page">Plugins</a></li>
Expand Down
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/assets/files/create-post.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
curl -X POST \
-F "file=@/path/to/myfile.jpg;type=image/jpeg" \
-F 'metadata="{\"name\": \"My File\"}"' \
"http://localhost:8080/v1/files/myorg/myproject"
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/assets/files/create-put.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
curl -X PUT \
-F "file=@/path/to/myfile.pdf;type=application/pdf" \
-F 'metadata="{\"name\": \"My File\"}"' \
"http://localhost:8080/v1/files/myorg/myproject/myfile?storage=remote&tag=mytag"
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/assets/files/created-post.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
],
"@id": "http://localhost:8080/v1/resources/myorg/myproject/_/c581fdd4-6151-4430-aa33-f97ab6aa0b38",
"@type": "File",
"name": "My File",
"_bytes": 8615,
"_constrainedBy": "https://bluebrain.github.io/nexus/schemas/files.json",
"_createdAt": "2021-05-12T07:28:30.472Z",
Expand Down
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/assets/files/created-put.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
],
"@id": "http://localhost:8080/v1/resources/myorg/myproject/_/myfile",
"@type": "File",
"name": "My File",
"_bytes": 5963969,
"_constrainedBy": "https://bluebrain.github.io/nexus/schemas/files.json",
"_createdAt": "2021-05-12T07:30:54.576Z",
Expand Down
10 changes: 9 additions & 1 deletion snapshot/docs/delta/api/assets/files/link-post.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
{
"path": "relative/path/to/myfile.png",
"filename": "myfile.png",
"mediaType": "image/png"
"mediaType": "image/png",
"metadata": {
"name": "My File",
"description": "a description of the file",
"keywords": {
"key1": "value1",
"key2": "value2"
}
}
}
10 changes: 9 additions & 1 deletion snapshot/docs/delta/api/assets/files/link-post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,13 @@ curl -X POST \
'{
"path": "relative/path/to/myfile.png",
"filename": "myfile.png",
"mediaType": "image/png"
"mediaType": "image/png",
"metadata": {
"name": "My File",
"description": "a description of the file",
"keywords": {
"key1": "value1",
"key2": "value2"
}
}
}'
10 changes: 9 additions & 1 deletion snapshot/docs/delta/api/assets/files/link-put.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
"path": "relative/path/to/myfile2.png"
"path": "relative/path/to/myfile2.png",
"metadata": {
"name": "My File",
"description": "a description of the file",
"keywords": {
"key1": "value1",
"key2": "value2"
}
}
}
10 changes: 9 additions & 1 deletion snapshot/docs/delta/api/assets/files/link-put.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,13 @@ curl -X PUT \
-H "Content-Type: application/json" \
"http://localhost:8080/v1/files/myorg/myproject/mylink?storage=remote&tag=mytag" -d \
'{
"path": "relative/path/to/myfile2.png"
"path": "relative/path/to/myfile2.png",
"metadata": {
"name": "My File",
"description": "a description of the file",
"keywords": {
"key1": "value1",
"key2": "value2"
}
}
}'
6 changes: 6 additions & 0 deletions snapshot/docs/delta/api/assets/files/linked-post.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
],
"@id": "http://localhost:8080/v1/resources/myorg/myproject/_/9ca0d270-35f0-4369-9c17-296fe36fd9a5",
"@type": "File",
"name": "My File",
"description": "a description of the file",
"_bytes": 1658857,
"_constrainedBy": "https://bluebrain.github.io/nexus/schemas/files.json",
"_createdAt": "2021-05-12T07:56:42.991Z",
Expand All @@ -15,6 +17,10 @@
},
"_filename": "myfile.png",
"_incoming": "http://localhost:8080/v1/files/myorg/myproject/9ca0d270-35f0-4369-9c17-296fe36fd9a5/incoming",
"_keywords": {
"key1": "value1",
"key2": "value2"
},
"_location": "file:///tmp/test/nexus/myorg/myproject/3/4/c/4/9/1/a/1/myfile.png",
"_mediaType": "image/png",
"_origin": "Storage",
Expand Down
6 changes: 6 additions & 0 deletions snapshot/docs/delta/api/assets/files/linked-put.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
],
"@id": "http://localhost:8080/v1/resources/myorg/myproject/_/mylink",
"@type": "File",
"name": "My File",
"description": "description of the file",
"_bytes": 1658857,
"_constrainedBy": "https://bluebrain.github.io/nexus/schemas/files.json",
"_createdAt": "2021-05-12T08:00:34.563Z",
Expand All @@ -15,6 +17,10 @@
},
"_filename": "myfile2.png",
"_incoming": "http://localhost:8080/v1/files/myorg/myproject/mylink/incoming",
"_keywords": {
"key1": "value1",
"key2": "value2"
},
"_location": "file:///tmp/test/nexus/myorg/myproject/6/6/0/4/9/9/d/9/myfile2.png",
"_origin": "Storage",
"_outgoing": "http://localhost:8080/v1/files/myorg/myproject/mylink/outgoing",
Expand Down
13 changes: 13 additions & 0 deletions snapshot/docs/delta/api/assets/type-hierarchy/create.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
curl -X POST \
-H "Content-Type: application/json" \
"http://localhost:8080/v1/type-hierarchy" \
-d \
'{
"mapping": {
"https://schema.org/VideoGame": [
"https://schema.org/SoftwareApplication",
"https://schema.org/CreativeWork",
"https://schema.org/Thing"
]
}
}'
23 changes: 23 additions & 0 deletions snapshot/docs/delta/api/assets/type-hierarchy/created.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"@context": [
"https://bluebrain.github.io/nexus/contexts/type-hierarchy.json",
"https://bluebrain.github.io/nexus/contexts/metadata.json"
],
"@id": "https://bluebrain.github.io/nexus/vocabulary/TypeHierarchy",
"@type": "TypeHierarchy",
"mapping": {
"https://schema.org/VideoGame": [
"https://schema.org/SoftwareApplication",
"https://schema.org/CreativeWork",
"https://schema.org/Thing"
]
},
"_constrainedBy": "https://bluebrain.github.io/nexus/schemas/type-hierarchy.json",
"_createdAt": "1970-01-01T00:00:00Z",
"_createdBy": "http://localhost/v1/realms/qyjcmbqlkavvsbbo/users/jane-doe",
"_deprecated": false,
"_rev": 1,
"_self": "http://localhost/v1/type-hierarchy",
"_updatedAt": "1970-01-01T00:00:00Z",
"_updatedBy": "http://localhost/v1/realms/qyjcmbqlkavvsbbo/users/jane-doe"
}
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/assets/type-hierarchy/fetch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
curl "http://localhost:8080/v1/type-hierarchy
23 changes: 23 additions & 0 deletions snapshot/docs/delta/api/assets/type-hierarchy/fetched.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"@context" : [
"https://bluebrain.github.io/nexus/contexts/type-hierarchy.json",
"https://bluebrain.github.io/nexus/contexts/metadata.json"
],
"@id" : "https://bluebrain.github.io/nexus/vocabulary/TypeHierarchy",
"@type" : "TypeHierarchy",
"mapping" : {
"https://schema.org/VideoGame" : [
"https://schema.org/SoftwareApplication",
"https://schema.org/CreativeWork",
"https://schema.org/Thing"
]
},
"_constrainedBy" : "https://bluebrain.github.io/nexus/schemas/type-hierarchy.json",
"_createdAt" : "1970-01-01T00:00:00Z",
"_createdBy" : "http://localhost/v1/realms/sanwxierjnyajvxn/users/jane-doe",
"_deprecated" : false,
"_rev" : 1,
"_self" : "http://localhost/v1/type-hierarchy",
"_updatedAt" : "1970-01-01T00:00:00Z",
"_updatedBy" : "http://localhost/v1/realms/sanwxierjnyajvxn/users/jane-doe"
}
9 changes: 9 additions & 0 deletions snapshot/docs/delta/api/assets/type-hierarchy/payload.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"mapping": {
"https://schema.org/VideoGame": [
"https://schema.org/SoftwareApplication",
"https://schema.org/CreativeWork",
"https://schema.org/Thing"
]
}
}
13 changes: 13 additions & 0 deletions snapshot/docs/delta/api/assets/type-hierarchy/update.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
curl -X PUT \
-H "Content-Type: application/json" \
"http://localhost:8080/v1/type-hierarchy?rev=1" \
-d \
'{
"mapping": {
"https://schema.org/VideoGame": [
"https://schema.org/SoftwareApplication",
"https://schema.org/CreativeWork",
"https://schema.org/Thing"
]
}
}'
24 changes: 24 additions & 0 deletions snapshot/docs/delta/api/assets/type-hierarchy/updated.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"@context": [
"https://bluebrain.github.io/nexus/contexts/type-hierarchy.json",
"https://bluebrain.github.io/nexus/contexts/metadata.json"
],
"@id": "https://bluebrain.github.io/nexus/vocabulary/TypeHierarchy",
"@type": "TypeHierarchy",
"mapping": {
"https://schema.org/VideoGame": [
"https://schema.org/SoftwareApplication",
"https://schema.org/CreativeWork",
"https://schema.org/Thing"
]
},
"_constrainedBy": "https://bluebrain.github.io/nexus/schemas/type-hierarchy.json",
"_createdAt": "1970-01-01T00:00:00Z",
"_createdBy": "http://localhost/v1/realms/knntwmnuxprsqrio/users/jane-doe",
"_deprecated": false,
"_rev": 2,
"_self": "http://localhost/v1/type-hierarchy",
"_updatedAt": "1970-01-01T00:00:00Z",
"_updatedBy": "http://localhost/v1/realms/knntwmnuxprsqrio/users/jane-doe"
}

16 changes: 8 additions & 8 deletions snapshot/docs/delta/api/assets/version.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"@context": "https://bluebrain.github.io/nexus/contexts/version.json",
"delta": "1.9.0",
"delta": "1.10.0",
"dependencies": {
"blazegraph": "2.1.6-RC",
"postgresql": "15.5",
"elasticsearch": "8.11.1",
"postgresql": "15.6",
"elasticsearch": "8.12.1",
"remoteStorage": "1.9.0"
},
"plugins": {
"archive": "1.9.0",
"blazegraph": "1.9.0",
"composite-views": "1.9.0",
"elasticsearch": "1.9.0",
"storage": "1.9.0"
"archive": "1.10.0",
"blazegraph": "1.10.0",
"composite-views": "1.10.0",
"elasticsearch": "1.10.0",
"storage": "1.10.0"
}
}
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/authentication.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
<li><a href="../../../docs/delta/api/graph-analytics-api.html" class="page">Graph analytics</a></li>
<li><a href="../../../docs/delta/api/jira.html" class="page">Jira integration</a></li>
<li><a href="../../../docs/delta/api/supervision-api.html" class="page">Supervision</a></li>
<li><a href="../../../docs/delta/api/type-hierarchy-api.html" class="page">Type hierarchy</a></li>
</ul></li>
<li><a href="../../../docs/delta/metadata.html" class="page">Nexus Metadata</a></li>
<li><a href="../../../docs/delta/plugins/index.html" class="page">Plugins</a></li>
Expand Down
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/content-negotiation.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
<li><a href="../../../docs/delta/api/graph-analytics-api.html" class="page">Graph analytics</a></li>
<li><a href="../../../docs/delta/api/jira.html" class="page">Jira integration</a></li>
<li><a href="../../../docs/delta/api/supervision-api.html" class="page">Supervision</a></li>
<li><a href="../../../docs/delta/api/type-hierarchy-api.html" class="page">Type hierarchy</a></li>
</ul></li>
<li><a href="../../../docs/delta/metadata.html" class="page">Nexus Metadata</a></li>
<li><a href="../../../docs/delta/plugins/index.html" class="page">Plugins</a></li>
Expand Down
1 change: 1 addition & 0 deletions snapshot/docs/delta/api/error-signaling.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@
<li><a href="../../../docs/delta/api/graph-analytics-api.html" class="page">Graph analytics</a></li>
<li><a href="../../../docs/delta/api/jira.html" class="page">Jira integration</a></li>
<li><a href="../../../docs/delta/api/supervision-api.html" class="page">Supervision</a></li>
<li><a href="../../../docs/delta/api/type-hierarchy-api.html" class="page">Type hierarchy</a></li>
</ul></li>
<li><a href="../../../docs/delta/metadata.html" class="page">Nexus Metadata</a></li>
<li><a href="../../../docs/delta/plugins/index.html" class="page">Plugins</a></li>
Expand Down
Loading

0 comments on commit a1352cf

Please sign in to comment.