Skip to content
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

change context url in response #265

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class WebUserSetFields extends WebUserSetModelFields {
public static final String TEXT_SCORE_SORT = "score";

// JsonLd Constants
public static final String CONTEXT = "http://www.europeana.eu/schemas/context/collection.jsonld";
public static final String CONTEXT = "https://api.europeana.eu/schema/context/set.jsonld";
public static final String CONTEXT_FIELD = "@context";
public static final String IDENTIFIER = "identifier";
public static final String TITLE = "title";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@ public class WebUserSetModelFields {
// Pinned items constants
public static final String PINNED_POSITION = "pin";


public static final String VALUE_CONTEXT_EUROPEANA_COLLECTION = "http://www.europeana.eu/schemas/context/collection.jsonld";

WebUserSetModelFields() {
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"http://data.europeana.eu/item/08641/1037479000000476467",
"http://data.europeana.eu/item/08641/1037479000000476875"
],
"@context": "http://www.europeana.eu/schemas/context/collection.jsonld",
"@context": "https://api.europeana.eu/schema/context/set.jsonld",
"id":"http://data.europeana.eu/set/1",
"created": "2020-08-28T13:43:07Z",
"modified": "2020-08-28T13:44:48Z",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"@context": "http://www.europeana.eu/schemas/context/collection.jsonld",
"@context": "https://api.europeana.eu/schema/context/set.jsonld",
"type": "EntityBestItemsSet",
"title":{
"en": "Sport - best items"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"@context":"http://www.europeana.eu/schemas/context/collection.jsonld",
"@context":"https://api.europeana.eu/schema/context/set.jsonld",
"type":"Collection",
"title":{
"en":"SGoaB Test Dataset"
Expand Down
Loading