From 9fe686389acfceb28533bdf68182b4e1a875337c Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Mon, 10 Nov 2025 10:47:34 -0500
Subject: [PATCH 01/12] update manifesto dependancy to 4.3.0
---
package-lock.json | 8 ++++----
package.json | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/package-lock.json b/package-lock.json
index c7fb2bc..a512ce5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -11,7 +11,7 @@
"dependencies": {
"@edsilv/http-status-codes": "^1.0.3",
"@iiif/vocabulary": "^1.0.30",
- "manifesto.js": "^4.2.24"
+ "manifesto.js": "^4.3.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
@@ -6742,9 +6742,9 @@
}
},
"node_modules/manifesto.js": {
- "version": "4.2.24",
- "resolved": "https://registry.npmjs.org/manifesto.js/-/manifesto.js-4.2.24.tgz",
- "integrity": "sha512-PWwJ2arOJXk/nneu4osPJv3IORvHnwPt8Scgg2KWpGDvivwU16yCJs/lkpGLh4fO7VLljU/CxPUeKlK26Jkllg==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/manifesto.js/-/manifesto.js-4.3.0.tgz",
+ "integrity": "sha512-UhnJ/m4KrbVUrqjlJvURakAR68y3twBXecocRiWU8MIvDJdwA1clYTtHz+in0LeYIgb6yuLZ7vStQ7ixtkkEAw==",
"license": "MIT",
"dependencies": {
"@edsilv/http-status-codes": "^1.0.3",
diff --git a/package.json b/package.json
index cf39185..34aff05 100644
--- a/package.json
+++ b/package.json
@@ -36,7 +36,7 @@
"dependencies": {
"@edsilv/http-status-codes": "^1.0.3",
"@iiif/vocabulary": "^1.0.30",
- "manifesto.js": "^4.2.24"
+ "manifesto.js": "^4.3.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
From 90c8b2602e23e80380cbdfa8af3c8041923698e7 Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Tue, 11 Nov 2025 10:13:07 -0500
Subject: [PATCH 02/12] Updated Helper.ts to manage Description and Summary
independently
---
src/Helper.ts | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/src/Helper.ts b/src/Helper.ts
index a342e40..e00668c 100644
--- a/src/Helper.ts
+++ b/src/Helper.ts
@@ -225,6 +225,20 @@ export class Helper {
return null;
}
+ public getSummary(): string | null {
+ if (!this.manifest) {
+ throw new Error(Errors.manifestNotLoaded);
+ }
+
+ const summary = this.manifest.getSummary();
+
+ if (summary) {
+ return summary.getValue(this.options.locale);
+ }
+
+ return null;
+ }
+
public getLabel(): string | null {
if (!this.manifest) {
throw new Error(Errors.manifestNotLoaded);
@@ -304,12 +318,12 @@ export class Helper {
manifestGroup.addMetadata(manifestMetadata, true);
}
- if (this.manifest.getDescription().length) {
+ if (this.manifest.getSummary().length) {
const metadataItem: LabelValuePair = new LabelValuePair(locale);
metadataItem.label = new PropertyValue([
- new LocalizedValue("description", locale),
+ new LocalizedValue("Summary", locale),
]);
- metadataItem.value = this.manifest.getDescription();
+ metadataItem.value = this.manifest.getSummary();
(metadataItem).isRootLevel = true;
manifestGroup.addItem(metadataItem);
}
From 877b7ea2dc689ed47e34b3adfe0de60a6456ccff Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Tue, 18 Nov 2025 11:01:47 -0500
Subject: [PATCH 03/12] Will display a Description if included in metadata,
include summary if no description
---
src/Helper.ts | 42 ++++++++++++++++++++++++++++++++++--------
1 file changed, 34 insertions(+), 8 deletions(-)
diff --git a/src/Helper.ts b/src/Helper.ts
index e00668c..9788a1f 100644
--- a/src/Helper.ts
+++ b/src/Helper.ts
@@ -304,6 +304,29 @@ export class Helper {
return manifestType;
}
+ private _labelStringFromPair(item: LabelValuePair, locale: string): string {
+ if (item.label) {
+ const labelAny = item.label as any;
+ if (typeof labelAny.getValue === "function") {
+ return (labelAny.getValue(locale) || "").toString();
+ }
+ return String(labelAny || "");
+ }
+ return "";
+ }
+
+ public hasMetadataLabel(
+ metadata: LabelValuePair[],
+ wantedLabel: string,
+ locale: string = this.options.locale as string
+ ): boolean {
+ const wanted = wantedLabel.toLowerCase();
+ return metadata.some((item) => {
+ const label = this._labelStringFromPair(item, locale).toLowerCase();
+ return label === wanted;
+ });
+ }
+
public getMetadata(options?: MetadataOptions): MetadataGroup[] {
if (!this.manifest) {
throw new Error(Errors.manifestNotLoaded);
@@ -318,14 +341,17 @@ export class Helper {
manifestGroup.addMetadata(manifestMetadata, true);
}
- if (this.manifest.getSummary().length) {
- const metadataItem: LabelValuePair = new LabelValuePair(locale);
- metadataItem.label = new PropertyValue([
- new LocalizedValue("Summary", locale),
- ]);
- metadataItem.value = this.manifest.getSummary();
- (metadataItem).isRootLevel = true;
- manifestGroup.addItem(metadataItem);
+ //include summary if no description in metadata
+ if (!this.hasMetadataLabel(manifestMetadata, "description")) {
+ if (this.manifest.getSummary().length) {
+ const metadataItem: LabelValuePair = new LabelValuePair(locale);
+ metadataItem.label = new PropertyValue([
+ new LocalizedValue("Summary", locale),
+ ]);
+ metadataItem.value = this.manifest.getSummary();
+ (metadataItem).isRootLevel = true;
+ manifestGroup.addItem(metadataItem);
+ }
}
if (this.manifest.getAttribution().length) {
From 75f8a3850434e0a8cf0e462d19baaddecb43d7b3 Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Thu, 20 Nov 2025 13:16:02 -0500
Subject: [PATCH 04/12] revised summary/description logic to prefer description
if present and ommit summary if identical to description
---
src/Helper.ts | 49 +++++++++++++++++++++++--------------------------
1 file changed, 23 insertions(+), 26 deletions(-)
diff --git a/src/Helper.ts b/src/Helper.ts
index 9788a1f..fea2b83 100644
--- a/src/Helper.ts
+++ b/src/Helper.ts
@@ -304,29 +304,6 @@ export class Helper {
return manifestType;
}
- private _labelStringFromPair(item: LabelValuePair, locale: string): string {
- if (item.label) {
- const labelAny = item.label as any;
- if (typeof labelAny.getValue === "function") {
- return (labelAny.getValue(locale) || "").toString();
- }
- return String(labelAny || "");
- }
- return "";
- }
-
- public hasMetadataLabel(
- metadata: LabelValuePair[],
- wantedLabel: string,
- locale: string = this.options.locale as string
- ): boolean {
- const wanted = wantedLabel.toLowerCase();
- return metadata.some((item) => {
- const label = this._labelStringFromPair(item, locale).toLowerCase();
- return label === wanted;
- });
- }
-
public getMetadata(options?: MetadataOptions): MetadataGroup[] {
if (!this.manifest) {
throw new Error(Errors.manifestNotLoaded);
@@ -342,11 +319,31 @@ export class Helper {
}
//include summary if no description in metadata
- if (!this.hasMetadataLabel(manifestMetadata, "description")) {
- if (this.manifest.getSummary().length) {
+ if (this.manifest.getSummary().length) {
+ let descriptionMatches = false;
+ let description = "";
+ for (let i = 0; i < manifestMetadata.length; i++) {
+ const item = manifestMetadata[i];
+ let labelText = "";
+ labelText = String((item as any).getLabel() || "").trim();
+ if (labelText.toLowerCase() === "description") {
+ description = String((item as any).getValue(locale) || "").trim();
+ break;
+ }
+ }
+ const summaryText = String(
+ (this.manifest.getSummary() as any).getValue(locale) || ""
+ ).trim();
+ if (summaryText === description) {
+ descriptionMatches = true;
+ }
+
+ if (!descriptionMatches) {
+ const isNonEnglish = (locale || "").split("-")[0] !== "en";
+ const labelText = isNonEnglish ? "description" : "Summary";
const metadataItem: LabelValuePair = new LabelValuePair(locale);
metadataItem.label = new PropertyValue([
- new LocalizedValue("Summary", locale),
+ new LocalizedValue(labelText, locale),
]);
metadataItem.value = this.manifest.getSummary();
(metadataItem).isRootLevel = true;
From 184c359a8fbccb61084f284cfe93b10b3b78cf5d Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Fri, 21 Nov 2025 10:13:31 -0500
Subject: [PATCH 05/12] Applied changes suggested by D.Katz and tested
---
src/Helper.ts | 23 +++++++++++------------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/src/Helper.ts b/src/Helper.ts
index fea2b83..3589384 100644
--- a/src/Helper.ts
+++ b/src/Helper.ts
@@ -318,27 +318,26 @@ export class Helper {
manifestGroup.addMetadata(manifestMetadata, true);
}
- //include summary if no description in metadata
- if (this.manifest.getSummary().length) {
+ // include summary if no description in metadata
+ const summaryText = String(
+ (this.manifest.getSummary() as any).getValue(locale) || ""
+ ).trim();
+ if (summaryText.length > 0) {
let descriptionMatches = false;
let description = "";
for (let i = 0; i < manifestMetadata.length; i++) {
const item = manifestMetadata[i];
- let labelText = "";
- labelText = String((item as any).getLabel() || "").trim();
- if (labelText.toLowerCase() === "description") {
- description = String((item as any).getValue(locale) || "").trim();
+ description = String((item as any).getValue(locale) || "").trim();
+ if (description.length > 0 && summaryText === description) {
+ descriptionMatches = true;
break;
}
}
- const summaryText = String(
- (this.manifest.getSummary() as any).getValue(locale) || ""
- ).trim();
- if (summaryText === description) {
- descriptionMatches = true;
- }
if (!descriptionMatches) {
+ // If the locale is set to English, describe this as "Summary." Use the legacy "description" for
+ // other languages to ensure back-compatibility with existing i18n. We may wish to revisit
+ // this in the future!
const isNonEnglish = (locale || "").split("-")[0] !== "en";
const labelText = isNonEnglish ? "description" : "Summary";
const metadataItem: LabelValuePair = new LabelValuePair(locale);
From edd6feb9a8c8ab6cf0745465ba2a17e55da359d0 Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Tue, 2 Dec 2025 14:03:36 -0500
Subject: [PATCH 06/12] Added test for getSummary function
---
__tests__/fixtures/bride.json | 674 ++++++++++++++++++++++++++++++++++
__tests__/helper.test.ts | 9 +
2 files changed, 683 insertions(+)
create mode 100644 __tests__/fixtures/bride.json
diff --git a/__tests__/fixtures/bride.json b/__tests__/fixtures/bride.json
new file mode 100644
index 0000000..877b463
--- /dev/null
+++ b/__tests__/fixtures/bride.json
@@ -0,0 +1,674 @@
+{
+ "@context": "http://iiif.io/api/presentation/3/context.json",
+ "type": "Manifest",
+ "id": "http://localhost/Item/vudl:173/Manifest",
+ "label": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ },
+ "metadata": [
+ {
+ "label": {
+ "en": [
+ "Full Title"
+ ]
+ },
+ "value": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Author"
+ ]
+ },
+ "value": {
+ "en": [
+ "Miller, Alex. McVeigh, Mrs."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Contributor"
+ ]
+ },
+ "value": {
+ "en": [
+ "Street and Smith Publications."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Date Added"
+ ]
+ },
+ "value": {
+ "en": [
+ "2 October 2025"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Format"
+ ]
+ },
+ "value": {
+ "en": [
+ "Book"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Language"
+ ]
+ },
+ "value": {
+ "en": [
+ "English"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Publish Date"
+ ]
+ },
+ "value": {
+ "en": [
+ "1883"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Publisher"
+ ]
+ },
+ "value": {
+ "en": [
+ "New York : Street & Smith"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Series"
+ ]
+ },
+ "value": {
+ "en": [
+ "Eagle series > no. 426"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Source"
+ ]
+ },
+ "value": {
+ "en": [
+ "Dime Novel and Popular Literature"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Alternate Title"
+ ]
+ },
+ "value": {
+ "en": [
+ "Queenie's terrible secret"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Topic"
+ ]
+ },
+ "value": {
+ "en": [
+ "Popular literature > Specimens.
Dime novels > Specimens."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "About"
+ ]
+ },
+ "value": {
+ "en": [
+ "More Details
Permanent Link"
+ ]
+ }
+ }
+ ],
+ "summary": {
+ "en": [
+ "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
+ ]
+ },
+ "requiredStatement": {
+ "label": {
+ "en": [
+ "ATTRIBUTION"
+ ]
+ },
+ "value": {
+ "en": [
+ "Digital Library@Villanova University
Disclaimers:
Disclaimer of Liability
Disclaimer of Endorsement
License:
Rights Information"
+ ]
+ }
+ },
+ "seeAlso": [
+ {
+ "id": "http://localhost/Item/vudl:173",
+ "type": "Text",
+ "format": "text/html",
+ "label": {
+ "en": [
+ "More Details"
+ ]
+ }
+ }
+ ],
+ "items": [
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p0",
+ "label": {
+ "en": [
+ "Front cover"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 20.63 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3110,
+ "width": 2318,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:175/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3110,
+ "width": 2318,
+ "target": "http://localhost/Item/vudl:173/Canvas/p0",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p1",
+ "label": {
+ "en": [
+ "Inside front cover"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 19.00 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3055,
+ "width": 2174,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:176/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3055,
+ "width": 2174,
+ "target": "http://localhost/Item/vudl:173/Canvas/p1",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p2",
+ "label": {
+ "en": [
+ "[i]"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 18.24 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2097,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:177/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2097,
+ "target": "http://localhost/Item/vudl:173/Canvas/p2",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p3",
+ "label": {
+ "en": [
+ "[ii]"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 18.92 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2175,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:178/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2175,
+ "target": "http://localhost/Item/vudl:173/Canvas/p3",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p4",
+ "label": {
+ "en": [
+ "[iii]"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 18.40 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2115,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:179/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2115,
+ "target": "http://localhost/Item/vudl:173/Canvas/p4",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/__tests__/helper.test.ts b/__tests__/helper.test.ts
index 91fd490..2affbc3 100644
--- a/__tests__/helper.test.ts
+++ b/__tests__/helper.test.ts
@@ -8,6 +8,7 @@ const searchService2 = require('./fixtures/search-service-2.json');
const riksarkivetAltoAnnotations = require('./fixtures/riksarkivet.json');
const cookbookAnnotationsEmbedded = require('./fixtures/cookbook-annotations-embedded.json');
const wunder = require('./fixtures/wunder-pres2.json');
+const bride = require('./fixtures/bride.json');
function mockFetch(status: number, data?: any) {
const xhrMockObj = {
@@ -34,6 +35,14 @@ function mockFetch(status: number, data?: any) {
}
describe('Helper', () => {
+
+ test('getSummary returns summary for bride manifest', async () => {
+ const helper = await loadManifestJson(bride, {
+ manifestUri: bride.id
+ });
+ expect(helper).toBeDefined();
+ expect(helper.getSummary()=="OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
");
+ });
test('hasAnnotations returns true for single seeAlso object on pres2 manifest', async () => {
const helper = await loadManifestJson(wunder, {
From 80235efc37876690df260590090d7baa4b9a6852 Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Wed, 3 Dec 2025 13:08:22 -0500
Subject: [PATCH 07/12] Expanded tests to cover a number of scenarios for
'summary'
---
.../fixtures/{bride.json => bride-diff.json} | 8 +
__tests__/fixtures/bride-match.json | 686 ++++++++++++++++++
__tests__/helper.test.ts | 62 +-
src/Helper.ts | 3 +
4 files changed, 752 insertions(+), 7 deletions(-)
rename __tests__/fixtures/{bride.json => bride-diff.json} (99%)
create mode 100644 __tests__/fixtures/bride-match.json
diff --git a/__tests__/fixtures/bride.json b/__tests__/fixtures/bride-diff.json
similarity index 99%
rename from __tests__/fixtures/bride.json
rename to __tests__/fixtures/bride-diff.json
index 877b463..7576a0d 100644
--- a/__tests__/fixtures/bride.json
+++ b/__tests__/fixtures/bride-diff.json
@@ -163,6 +163,14 @@
"More Details
Permanent Link"
]
}
+ },
+ {
+ "label": {
+ "en": [
+ "Description"
+ ]
+ },
+ "value": "fnord"
}
],
"summary": {
diff --git a/__tests__/fixtures/bride-match.json b/__tests__/fixtures/bride-match.json
new file mode 100644
index 0000000..9067525
--- /dev/null
+++ b/__tests__/fixtures/bride-match.json
@@ -0,0 +1,686 @@
+{
+ "@context": "http://iiif.io/api/presentation/3/context.json",
+ "type": "Manifest",
+ "id": "http://localhost/Item/vudl:173/Manifest",
+ "label": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ },
+ "metadata": [
+ {
+ "label": {
+ "en": [
+ "Full Title"
+ ]
+ },
+ "value": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Author"
+ ]
+ },
+ "value": {
+ "en": [
+ "Miller, Alex. McVeigh, Mrs."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Contributor"
+ ]
+ },
+ "value": {
+ "en": [
+ "Street and Smith Publications."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Date Added"
+ ]
+ },
+ "value": {
+ "en": [
+ "2 October 2025"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Format"
+ ]
+ },
+ "value": {
+ "en": [
+ "Book"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Language"
+ ]
+ },
+ "value": {
+ "en": [
+ "English"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Publish Date"
+ ]
+ },
+ "value": {
+ "en": [
+ "1883"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Publisher"
+ ]
+ },
+ "value": {
+ "en": [
+ "New York : Street & Smith"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Series"
+ ]
+ },
+ "value": {
+ "en": [
+ "Eagle series > no. 426"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Source"
+ ]
+ },
+ "value": {
+ "en": [
+ "Dime Novel and Popular Literature"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Alternate Title"
+ ]
+ },
+ "value": {
+ "en": [
+ "Queenie's terrible secret"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Topic"
+ ]
+ },
+ "value": {
+ "en": [
+ "Popular literature > Specimens.
Dime novels > Specimens."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "About"
+ ]
+ },
+ "value": {
+ "en": [
+ "More Details
Permanent Link"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": [
+ "Description"
+ ]
+ },
+ "value": {
+ "en": [
+ "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
+ ]
+ }
+ }
+ ],
+ "summary": {
+ "en": [
+ "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
+ ]
+ },
+ "requiredStatement": {
+ "label": {
+ "en": [
+ "ATTRIBUTION"
+ ]
+ },
+ "value": {
+ "en": [
+ "Digital Library@Villanova University
Disclaimers:
Disclaimer of Liability
Disclaimer of Endorsement
License:
Rights Information"
+ ]
+ }
+ },
+ "seeAlso": [
+ {
+ "id": "http://localhost/Item/vudl:173",
+ "type": "Text",
+ "format": "text/html",
+ "label": {
+ "en": [
+ "More Details"
+ ]
+ }
+ }
+ ],
+ "items": [
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p0",
+ "label": {
+ "en": [
+ "Front cover"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 20.63 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3110,
+ "width": 2318,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:175/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3110,
+ "width": 2318,
+ "target": "http://localhost/Item/vudl:173/Canvas/p0",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p1",
+ "label": {
+ "en": [
+ "Inside front cover"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 19.00 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3055,
+ "width": 2174,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:176/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3055,
+ "width": 2174,
+ "target": "http://localhost/Item/vudl:173/Canvas/p1",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p2",
+ "label": {
+ "en": [
+ "[i]"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 18.24 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2097,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:177/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2097,
+ "target": "http://localhost/Item/vudl:173/Canvas/p2",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p3",
+ "label": {
+ "en": [
+ "[ii]"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 18.92 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2175,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:178/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2175,
+ "target": "http://localhost/Item/vudl:173/Canvas/p3",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p4",
+ "label": {
+ "en": [
+ "[iii]"
+ ]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": [
+ "Original source file - 18.40 MB"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": [
+ "Raw OCR Data"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": [
+ "Technical Metadata"
+ ]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": [
+ "PDF"
+ ]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2115,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:179/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2115,
+ "target": "http://localhost/Item/vudl:173/Canvas/p4",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/__tests__/helper.test.ts b/__tests__/helper.test.ts
index 2affbc3..a79a679 100644
--- a/__tests__/helper.test.ts
+++ b/__tests__/helper.test.ts
@@ -8,7 +8,8 @@ const searchService2 = require('./fixtures/search-service-2.json');
const riksarkivetAltoAnnotations = require('./fixtures/riksarkivet.json');
const cookbookAnnotationsEmbedded = require('./fixtures/cookbook-annotations-embedded.json');
const wunder = require('./fixtures/wunder-pres2.json');
-const bride = require('./fixtures/bride.json');
+const brideMatch = require('./fixtures/bride-match.json');
+const brideDiff = require('./fixtures/bride-diff.json');
function mockFetch(status: number, data?: any) {
const xhrMockObj = {
@@ -34,14 +35,61 @@ function mockFetch(status: number, data?: any) {
}, 0);
}
+function getMetadataValue(MetadataGroups: any[], metaLabel: string){
+ let metaValue = "";
+ MetadataGroups.forEach(group => {
+ group.items.forEach(item => {
+ const labelText =
+ item.label?.getValue?.("en-GB") ??
+ item.label?.getValue?.() ??
+ item.label?.toString?.();
+ if (labelText && labelText.trim().toLowerCase() === metaLabel) {
+ metaValue =
+ item.value?.getValue?.("en-GB") ??
+ item.value?.getValue?.() ??
+ item.value?.toString?.();
+ }
+ });
+ });
+ return (metaValue);
+}
+
describe('Helper', () => {
-
- test('getSummary returns summary for bride manifest', async () => {
- const helper = await loadManifestJson(bride, {
- manifestUri: bride.id
+
+ test('getMetadata records summary as description when duplicate value present in metadata for brideMatch manifest', async () => {
+ const helper = await loadManifestJson(brideMatch, {
+ manifestUri: brideMatch.id, locale: 'cy'
});
- expect(helper).toBeDefined();
- expect(helper.getSummary()=="OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
");
+ const MetadataGroups = helper.getMetadata();
+ let check = false;
+ let summary = getMetadataValue(MetadataGroups,'summary');
+ let description = getMetadataValue(MetadataGroups,'description');
+ if(description != "" && summary === ""){check = true};
+ expect(check).toBe(true);
+ });
+
+ test('getMetadata records summary as summary when no duplicate value present in metadata for brideDiff manifest', async () => {
+ const helper = await loadManifestJson(brideDiff, {
+ manifestUri: brideDiff.id
+ });
+ const MetadataGroups = helper.getMetadata();
+ let check = false;
+ let summary = getMetadataValue(MetadataGroups,'summary');
+ let description = getMetadataValue(MetadataGroups,'description');
+ if(description != "" && summary != ""){check = true};
+ expect(check).toBe(true);
+ });
+
+ test('getMetadata records summary as Description when locale is not En in metadata for brideDiff manifest', async () => {
+ const helper = await loadManifestJson(brideDiff, {
+ manifestUri: brideDiff.id, locale: 'cy'
+ });
+ const MetadataGroups = helper.getMetadata();
+ let check = false;
+ let summary = getMetadataValue(MetadataGroups,'summary');
+ let description = getMetadataValue(MetadataGroups,'description');
+ if(description != "" && summary === ""){check = true};
+ expect(check).toBe(true);
});
test('hasAnnotations returns true for single seeAlso object on pres2 manifest', async () => {
diff --git a/src/Helper.ts b/src/Helper.ts
index 3589384..853665a 100644
--- a/src/Helper.ts
+++ b/src/Helper.ts
@@ -211,6 +211,9 @@ export class Helper {
return this.getSequenceByIndex(this.sequenceIndex as number);
}
+ /**
+ * @deprecated Use getSummary instead
+ */
public getDescription(): string | null {
if (!this.manifest) {
throw new Error(Errors.manifestNotLoaded);
From 4f095d586d3115ff19e486df32110b0f92a5e22c Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Wed, 3 Dec 2025 13:25:01 -0500
Subject: [PATCH 08/12] modified package.json to enable lint and prettify in
tests
---
__tests__/fixtures/bl-av-auth.json | 112 +-
__tests__/fixtures/bride-diff.json | 1180 +-
__tests__/fixtures/bride-match.json | 1188 +-
.../cookbook-annotations-embedded.json | 6 +-
__tests__/fixtures/prev-auth.json | 100 +-
__tests__/fixtures/riksarkivet.json | 105000 ++-------------
__tests__/fixtures/wunder-pres2.json | 2148 +-
__tests__/helper.test.ts | 174 +-
package.json | 4 +-
9 files changed, 13133 insertions(+), 96779 deletions(-)
diff --git a/__tests__/fixtures/bl-av-auth.json b/__tests__/fixtures/bl-av-auth.json
index 81a5b03..da33923 100644
--- a/__tests__/fixtures/bl-av-auth.json
+++ b/__tests__/fixtures/bl-av-auth.json
@@ -6,88 +6,60 @@
"id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100063181190.0x000002/manifest.json",
"type": "Manifest",
"label": {
- "en": [
- "George Evans / Basil Bunting"
- ]
+ "en": ["George Evans / Basil Bunting"]
},
"metadata": [
{
"label": {
- "en": [
- "Full title"
- ]
+ "en": ["Full title"]
},
"value": {
- "en": [
- "George Evans / Basil Bunting"
- ]
+ "en": ["George Evans / Basil Bunting"]
}
},
{
"label": {
- "en": [
- "Collection"
- ]
+ "en": ["Collection"]
},
"value": {
- "en": [
- "Robert Hampson tapes"
- ]
+ "en": ["Robert Hampson tapes"]
}
},
{
"label": {
- "en": [
- "Format"
- ]
+ "en": ["Format"]
},
"value": {
- "en": [
- "1 compact cassette"
- ]
+ "en": ["1 compact cassette"]
}
},
{
"label": {
- "en": [
- "Usage"
- ]
+ "en": ["Usage"]
},
"value": {
- "en": [
- "Rights unassigned staff access only"
- ]
+ "en": ["Rights unassigned staff access only"]
}
},
{
"label": {
- "en": [
- "Held by"
- ]
+ "en": ["Held by"]
},
"value": {
- "en": [
- "The British Library"
- ]
+ "en": ["The British Library"]
}
},
{
"label": {
- "en": [
- "Digitised by"
- ]
+ "en": ["Digitised by"]
},
"value": {
- "en": [
- "The British Library 2018"
- ]
+ "en": ["The British Library 2018"]
}
},
{
"label": {
- "en": [
- "Digitisation funded by"
- ]
+ "en": ["Digitisation funded by"]
},
"value": {
"en": [
@@ -97,33 +69,23 @@
},
{
"label": {
- "en": [
- "Identifier"
- ]
+ "en": ["Identifier"]
},
"value": {
- "en": [
- "C1700/01"
- ]
+ "en": ["C1700/01"]
}
},
{
"label": {
- "en": [
- "Shelfmark"
- ]
+ "en": ["Shelfmark"]
},
"value": {
- "en": [
- "C1700/01"
- ]
+ "en": ["C1700/01"]
}
},
{
"label": {
- "en": [
- "Link to catalogue"
- ]
+ "en": ["Link to catalogue"]
},
"value": {
"en": [
@@ -134,9 +96,7 @@
],
"requiredStatement": {
"label": {
- "en": [
- "Copyright and Usage"
- ]
+ "en": ["Copyright and Usage"]
},
"value": {
"en": [
@@ -149,9 +109,7 @@
"id": "https://www.bl.uk/about-us",
"type": "Agent",
"label": {
- "en": [
- "The British Library"
- ]
+ "en": ["The British Library"]
},
"homepage": [
{
@@ -159,9 +117,7 @@
"type": "Text",
"format": "text/html",
"label": {
- "en": [
- "The British Library"
- ]
+ "en": ["The British Library"]
}
}
],
@@ -185,14 +141,10 @@
]
},
"header": {
- "en": [
- "Please Log-In"
- ]
+ "en": ["Please Log-In"]
},
"label": {
- "en": [
- "Login to The British Library"
- ]
+ "en": ["Login to The British Library"]
},
"service": [
{
@@ -214,23 +166,17 @@
"type": "Text",
"format": "text/html",
"label": {
- "en": [
- "View at the British Library"
- ]
+ "en": ["View at the British Library"]
}
}
],
- "behavior": [
- "auto-advance"
- ],
+ "behavior": ["auto-advance"],
"items": [
{
"id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100063181190.0x000004",
"type": "Canvas",
"label": {
- "en": [
- "Tape 1 Side 1"
- ]
+ "en": ["Tape 1 Side 1"]
},
"duration": 2808.8800000000001,
"items": [
@@ -297,9 +243,7 @@
"id": "https://api.bl.uk/metadata/iiif/ark:/81055/vdc_100063181190.0x000005",
"type": "Canvas",
"label": {
- "en": [
- "Tape 1 Side 2"
- ]
+ "en": ["Tape 1 Side 2"]
},
"duration": 1090.28,
"items": [
diff --git a/__tests__/fixtures/bride-diff.json b/__tests__/fixtures/bride-diff.json
index 7576a0d..443441d 100644
--- a/__tests__/fixtures/bride-diff.json
+++ b/__tests__/fixtures/bride-diff.json
@@ -1,682 +1,598 @@
{
- "@context": "http://iiif.io/api/presentation/3/context.json",
- "type": "Manifest",
- "id": "http://localhost/Item/vudl:173/Manifest",
- "label": {
+ "@context": "http://iiif.io/api/presentation/3/context.json",
+ "type": "Manifest",
+ "id": "http://localhost/Item/vudl:173/Manifest",
+ "label": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ },
+ "metadata": [
+ {
+ "label": {
+ "en": ["Full Title"]
+ },
+ "value": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Author"]
+ },
+ "value": {
+ "en": [
+ "Miller, Alex. McVeigh, Mrs."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Contributor"]
+ },
+ "value": {
+ "en": [
+ "Street and Smith Publications."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Date Added"]
+ },
+ "value": {
+ "en": ["2 October 2025"]
+ }
+ },
+ {
+ "label": {
+ "en": ["Format"]
+ },
+ "value": {
+ "en": [
+ "Book"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Language"]
+ },
+ "value": {
+ "en": [
+ "English"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Publish Date"]
+ },
+ "value": {
+ "en": [
+ "1883"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Publisher"]
+ },
+ "value": {
"en": [
- "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ "New York : Street & Smith"
]
+ }
},
- "metadata": [
+ {
+ "label": {
+ "en": ["Series"]
+ },
+ "value": {
+ "en": [
+ "Eagle series > no. 426"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Source"]
+ },
+ "value": {
+ "en": [
+ "Dime Novel and Popular Literature"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Alternate Title"]
+ },
+ "value": {
+ "en": [
+ "Queenie's terrible secret"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Topic"]
+ },
+ "value": {
+ "en": [
+ "Popular literature > Specimens.
Dime novels > Specimens."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["About"]
+ },
+ "value": {
+ "en": [
+ "More Details
Permanent Link"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Description"]
+ },
+ "value": "fnord"
+ }
+ ],
+ "summary": {
+ "en": [
+ "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
+ ]
+ },
+ "requiredStatement": {
+ "label": {
+ "en": ["ATTRIBUTION"]
+ },
+ "value": {
+ "en": [
+ "Digital Library@Villanova University
Disclaimers:
Disclaimer of Liability
Disclaimer of Endorsement
License:
Rights Information"
+ ]
+ }
+ },
+ "seeAlso": [
+ {
+ "id": "http://localhost/Item/vudl:173",
+ "type": "Text",
+ "format": "text/html",
+ "label": {
+ "en": ["More Details"]
+ }
+ }
+ ],
+ "items": [
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p0",
+ "label": {
+ "en": ["Front cover"]
+ },
+ "rendering": [
{
- "label": {
- "en": [
- "Full Title"
- ]
- },
- "value": {
- "en": [
- "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 20.63 MB"]
+ }
},
{
- "label": {
- "en": [
- "Author"
- ]
- },
- "value": {
- "en": [
- "Miller, Alex. McVeigh, Mrs."
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "label": {
- "en": [
- "Contributor"
- ]
- },
- "value": {
- "en": [
- "Street and Smith Publications."
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "label": {
- "en": [
- "Date Added"
- ]
- },
- "value": {
- "en": [
- "2 October 2025"
- ]
- }
- },
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
{
- "label": {
- "en": [
- "Format"
- ]
- },
- "value": {
- "en": [
- "Book"
- ]
- }
- },
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3110,
+ "width": 2318,
+ "items": [
{
- "label": {
- "en": [
- "Language"
- ]
- },
- "value": {
- "en": [
- "English"
- ]
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:175/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3110,
+ "width": 2318,
+ "target": "http://localhost/Item/vudl:173/Canvas/p0",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
}
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p1",
+ "label": {
+ "en": ["Inside front cover"]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 19.00 MB"]
+ }
},
{
- "label": {
- "en": [
- "Publish Date"
- ]
- },
- "value": {
- "en": [
- "1883"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "label": {
- "en": [
- "Publisher"
- ]
- },
- "value": {
- "en": [
- "New York : Street & Smith"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "label": {
- "en": [
- "Series"
- ]
- },
- "value": {
- "en": [
- "Eagle series > no. 426"
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3055,
+ "width": 2174,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:176/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3055,
+ "width": 2174,
+ "target": "http://localhost/Item/vudl:173/Canvas/p1",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
}
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p2",
+ "label": {
+ "en": ["[i]"]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 18.24 MB"]
+ }
},
{
- "label": {
- "en": [
- "Source"
- ]
- },
- "value": {
- "en": [
- "Dime Novel and Popular Literature"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "label": {
- "en": [
- "Alternate Title"
- ]
- },
- "value": {
- "en": [
- "Queenie's terrible secret"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "label": {
- "en": [
- "Topic"
- ]
- },
- "value": {
- "en": [
- "Popular literature > Specimens.
Dime novels > Specimens."
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2097,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:177/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2097,
+ "target": "http://localhost/Item/vudl:173/Canvas/p2",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
}
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p3",
+ "label": {
+ "en": ["[ii]"]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 18.92 MB"]
+ }
},
{
- "label": {
- "en": [
- "About"
- ]
- },
- "value": {
- "en": [
- "More Details
Permanent Link"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "label": {
- "en": [
- "Description"
- ]
- },
- "value": "fnord"
- }
- ],
- "summary": {
- "en": [
- "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
- ]
- },
- "requiredStatement": {
- "label": {
- "en": [
- "ATTRIBUTION"
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
- "value": {
- "en": [
- "Digital Library@Villanova University
Disclaimers:
Disclaimer of Liability
Disclaimer of Endorsement
License:
Rights Information"
- ]
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
}
- },
- "seeAlso": [
+ ],
+ "thumbnail": [
{
- "id": "http://localhost/Item/vudl:173",
- "type": "Text",
- "format": "text/html",
- "label": {
- "en": [
- "More Details"
- ]
- }
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
}
- ],
- "items": [
+ ],
+ "height": 3040,
+ "width": 2175,
+ "items": [
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p0",
- "label": {
- "en": [
- "Front cover"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:175/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 20.63 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:175/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:178/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2175,
+ "target": "http://localhost/Item/vudl:173/Canvas/p3",
+ "thumbnail": [
{
- "type": "rendering",
- "id": "http://localhost/files/vudl:175/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
}
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:175/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3110,
- "width": 2318,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:175/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A175",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A175",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3110,
- "width": 2318,
- "target": "http://localhost/Item/vudl:173/Canvas/p0",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:175/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
- },
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p4",
+ "label": {
+ "en": ["[iii]"]
+ },
+ "rendering": [
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p1",
- "label": {
- "en": [
- "Inside front cover"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:176/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 19.00 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:176/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:176/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:176/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3055,
- "width": 2174,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:176/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A176",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A176",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3055,
- "width": 2174,
- "target": "http://localhost/Item/vudl:173/Canvas/p1",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:176/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 18.40 MB"]
+ }
},
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p2",
- "label": {
- "en": [
- "[i]"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:177/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 18.24 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:177/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:177/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:177/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3040,
- "width": 2097,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:177/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A177",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A177",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3040,
- "width": 2097,
- "target": "http://localhost/Item/vudl:173/Canvas/p2",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:177/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p3",
- "label": {
- "en": [
- "[ii]"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:178/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 18.92 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:178/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:178/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:178/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3040,
- "width": 2175,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:178/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A178",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A178",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3040,
- "width": 2175,
- "target": "http://localhost/Item/vudl:173/Canvas/p3",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:178/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p4",
- "label": {
- "en": [
- "[iii]"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:179/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 18.40 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:179/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:179/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:179/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3040,
- "width": 2115,
- "items": [
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2115,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:179/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2115,
+ "target": "http://localhost/Item/vudl:173/Canvas/p4",
+ "thumbnail": [
{
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:179/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A179",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A179",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3040,
- "width": 2115,
- "target": "http://localhost/Item/vudl:173/Canvas/p4",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:179/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
}
- ]
+ ]
+ }
+ ]
}
- ]
+ ]
+ }
+ ]
}
diff --git a/__tests__/fixtures/bride-match.json b/__tests__/fixtures/bride-match.json
index 9067525..31a24e2 100644
--- a/__tests__/fixtures/bride-match.json
+++ b/__tests__/fixtures/bride-match.json
@@ -1,686 +1,602 @@
{
- "@context": "http://iiif.io/api/presentation/3/context.json",
- "type": "Manifest",
- "id": "http://localhost/Item/vudl:173/Manifest",
- "label": {
+ "@context": "http://iiif.io/api/presentation/3/context.json",
+ "type": "Manifest",
+ "id": "http://localhost/Item/vudl:173/Manifest",
+ "label": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ },
+ "metadata": [
+ {
+ "label": {
+ "en": ["Full Title"]
+ },
+ "value": {
+ "en": [
+ "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Author"]
+ },
+ "value": {
+ "en": [
+ "Miller, Alex. McVeigh, Mrs."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Contributor"]
+ },
+ "value": {
+ "en": [
+ "Street and Smith Publications."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Date Added"]
+ },
+ "value": {
+ "en": ["2 October 2025"]
+ }
+ },
+ {
+ "label": {
+ "en": ["Format"]
+ },
+ "value": {
+ "en": [
+ "Book"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Language"]
+ },
+ "value": {
"en": [
- "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
+ "English"
]
+ }
},
- "metadata": [
+ {
+ "label": {
+ "en": ["Publish Date"]
+ },
+ "value": {
+ "en": [
+ "1883"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Publisher"]
+ },
+ "value": {
+ "en": [
+ "New York : Street & Smith"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Series"]
+ },
+ "value": {
+ "en": [
+ "Eagle series > no. 426"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Source"]
+ },
+ "value": {
+ "en": [
+ "Dime Novel and Popular Literature"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Alternate Title"]
+ },
+ "value": {
+ "en": [
+ "Queenie's terrible secret"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Topic"]
+ },
+ "value": {
+ "en": [
+ "Popular literature > Specimens.
Dime novels > Specimens."
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["About"]
+ },
+ "value": {
+ "en": [
+ "More Details
Permanent Link"
+ ]
+ }
+ },
+ {
+ "label": {
+ "en": ["Description"]
+ },
+ "value": {
+ "en": [
+ "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
+ ]
+ }
+ }
+ ],
+ "summary": {
+ "en": [
+ "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
+ ]
+ },
+ "requiredStatement": {
+ "label": {
+ "en": ["ATTRIBUTION"]
+ },
+ "value": {
+ "en": [
+ "Digital Library@Villanova University
Disclaimers:
Disclaimer of Liability
Disclaimer of Endorsement
License:
Rights Information"
+ ]
+ }
+ },
+ "seeAlso": [
+ {
+ "id": "http://localhost/Item/vudl:173",
+ "type": "Text",
+ "format": "text/html",
+ "label": {
+ "en": ["More Details"]
+ }
+ }
+ ],
+ "items": [
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p0",
+ "label": {
+ "en": ["Front cover"]
+ },
+ "rendering": [
{
- "label": {
- "en": [
- "Full Title"
- ]
- },
- "value": {
- "en": [
- "The bride of the tomb ; and, Queenie's terrible secret / by Mrs. Alex. McVeigh Miller."
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 20.63 MB"]
+ }
},
{
- "label": {
- "en": [
- "Author"
- ]
- },
- "value": {
- "en": [
- "Miller, Alex. McVeigh, Mrs."
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "label": {
- "en": [
- "Contributor"
- ]
- },
- "value": {
- "en": [
- "Street and Smith Publications."
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:175/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "label": {
- "en": [
- "Date Added"
- ]
- },
- "value": {
- "en": [
- "2 October 2025"
- ]
- }
- },
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
{
- "label": {
- "en": [
- "Format"
- ]
- },
- "value": {
- "en": [
- "Book"
- ]
- }
- },
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3110,
+ "width": 2318,
+ "items": [
{
- "label": {
- "en": [
- "Language"
- ]
- },
- "value": {
- "en": [
- "English"
- ]
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:175/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A175",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3110,
+ "width": 2318,
+ "target": "http://localhost/Item/vudl:173/Canvas/p0",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:175/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
}
- },
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p1",
+ "label": {
+ "en": ["Inside front cover"]
+ },
+ "rendering": [
{
- "label": {
- "en": [
- "Publish Date"
- ]
- },
- "value": {
- "en": [
- "1883"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 19.00 MB"]
+ }
},
{
- "label": {
- "en": [
- "Publisher"
- ]
- },
- "value": {
- "en": [
- "New York : Street & Smith"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "label": {
- "en": [
- "Series"
- ]
- },
- "value": {
- "en": [
- "Eagle series > no. 426"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:176/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "label": {
- "en": [
- "Source"
- ]
- },
- "value": {
- "en": [
- "Dime Novel and Popular Literature"
- ]
- }
- },
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
{
- "label": {
- "en": [
- "Alternate Title"
- ]
- },
- "value": {
- "en": [
- "Queenie's terrible secret"
- ]
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3055,
+ "width": 2174,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:176/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A176",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3055,
+ "width": 2174,
+ "target": "http://localhost/Item/vudl:173/Canvas/p1",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:176/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
}
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p2",
+ "label": {
+ "en": ["[i]"]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 18.24 MB"]
+ }
},
{
- "label": {
- "en": [
- "Topic"
- ]
- },
- "value": {
- "en": [
- "Popular literature > Specimens.
Dime novels > Specimens."
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "label": {
- "en": [
- "About"
- ]
- },
- "value": {
- "en": [
- "More Details
Permanent Link"
- ]
- }
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:177/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "label": {
- "en": [
- "Description"
- ]
- },
- "value": {
- "en": [
- "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2097,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:177/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A177",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2097,
+ "target": "http://localhost/Item/vudl:173/Canvas/p2",
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:177/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ]
}
+ ]
}
- ],
- "summary": {
- "en": [
- "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
- ]
+ ]
},
- "requiredStatement": {
- "label": {
- "en": [
- "ATTRIBUTION"
- ]
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p3",
+ "label": {
+ "en": ["[ii]"]
+ },
+ "rendering": [
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 18.92 MB"]
+ }
},
- "value": {
- "en": [
- "Digital Library@Villanova University
Disclaimers:
Disclaimer of Liability
Disclaimer of Endorsement
License:
Rights Information"
- ]
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:178/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
+ },
+ {
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
}
- },
- "seeAlso": [
+ ],
+ "thumbnail": [
{
- "id": "http://localhost/Item/vudl:173",
- "type": "Text",
- "format": "text/html",
- "label": {
- "en": [
- "More Details"
- ]
- }
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
}
- ],
- "items": [
+ ],
+ "height": 3040,
+ "width": 2175,
+ "items": [
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p0",
- "label": {
- "en": [
- "Front cover"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:175/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 20.63 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:175/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:175/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:178/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A178",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2175,
+ "target": "http://localhost/Item/vudl:173/Canvas/p3",
+ "thumbnail": [
{
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
+ "id": "http://localhost/files/vudl:178/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
}
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:175/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3110,
- "width": 2318,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:175/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A175",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A175",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3110,
- "width": 2318,
- "target": "http://localhost/Item/vudl:173/Canvas/p0",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:175/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
- },
+ ]
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "type": "Canvas",
+ "id": "http://localhost/Item/vudl:173/Canvas/p4",
+ "label": {
+ "en": ["[iii]"]
+ },
+ "rendering": [
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p1",
- "label": {
- "en": [
- "Inside front cover"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:176/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 19.00 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:176/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:176/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:176/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3055,
- "width": 2174,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:176/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A176",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A176",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3055,
- "width": 2174,
- "target": "http://localhost/Item/vudl:173/Canvas/p1",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:176/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER",
+ "format": "image/tiff",
+ "label": {
+ "en": ["Original source file - 18.40 MB"]
+ }
},
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p2",
- "label": {
- "en": [
- "[i]"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:177/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 18.24 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:177/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:177/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:177/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3040,
- "width": 2097,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:177/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A177",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A177",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3040,
- "width": 2097,
- "target": "http://localhost/Item/vudl:173/Canvas/p2",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:177/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/OCR-DIRTY",
+ "format": "text/plain",
+ "label": {
+ "en": ["Raw OCR Data"]
+ }
},
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p3",
- "label": {
- "en": [
- "[ii]"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:178/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 18.92 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:178/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:178/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:178/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3040,
- "width": 2175,
- "items": [
- {
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:178/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A178",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A178",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3040,
- "width": 2175,
- "target": "http://localhost/Item/vudl:173/Canvas/p3",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:178/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
- }
- ]
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:179/MASTER-MD",
+ "format": "application/xml",
+ "label": {
+ "en": ["Technical Metadata"]
+ }
},
{
- "type": "Canvas",
- "id": "http://localhost/Item/vudl:173/Canvas/p4",
- "label": {
- "en": [
- "[iii]"
- ]
- },
- "rendering": [
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:179/MASTER",
- "format": "image/tiff",
- "label": {
- "en": [
- "Original source file - 18.40 MB"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:179/OCR-DIRTY",
- "format": "text/plain",
- "label": {
- "en": [
- "Raw OCR Data"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:179/MASTER-MD",
- "format": "application/xml",
- "label": {
- "en": [
- "Technical Metadata"
- ]
- }
- },
- {
- "type": "rendering",
- "id": "http://localhost/files/vudl:181/MASTER",
- "format": "application/pdf",
- "label": {
- "en": [
- "PDF"
- ]
- }
- }
- ],
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:179/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ],
- "height": 3040,
- "width": 2115,
- "items": [
+ "type": "rendering",
+ "id": "http://localhost/files/vudl:181/MASTER",
+ "format": "application/pdf",
+ "label": {
+ "en": ["PDF"]
+ }
+ }
+ ],
+ "thumbnail": [
+ {
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
+ }
+ ],
+ "height": 3040,
+ "width": 2115,
+ "items": [
+ {
+ "id": "http://localhost/Record/vudl:173",
+ "type": "AnnotationPage",
+ "items": [
+ {
+ "id": "http://localhost/files/vudl:179/LARGE",
+ "type": "Annotation",
+ "motivation": "painting",
+ "body": {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "Image",
+ "format": "image/jpeg",
+ "service": [
+ {
+ "id": "http://localhost:8182/iiif/2/vudl%3A179",
+ "type": "ImageService3",
+ "profile": "level1"
+ }
+ ]
+ },
+ "height": 3040,
+ "width": 2115,
+ "target": "http://localhost/Item/vudl:173/Canvas/p4",
+ "thumbnail": [
{
- "id": "http://localhost/Record/vudl:173",
- "type": "AnnotationPage",
- "items": [
- {
- "id": "http://localhost/files/vudl:179/LARGE",
- "type": "Annotation",
- "motivation": "painting",
- "body": {
- "id": "http://localhost:8182/iiif/2/vudl%3A179",
- "type": "Image",
- "format": "image/jpeg",
- "service": [
- {
- "id": "http://localhost:8182/iiif/2/vudl%3A179",
- "type": "ImageService3",
- "profile": "level1"
- }
- ]
- },
- "height": 3040,
- "width": 2115,
- "target": "http://localhost/Item/vudl:173/Canvas/p4",
- "thumbnail": [
- {
- "id": "http://localhost/files/vudl:179/THUMBNAIL",
- "type": "Image",
- "format": "image/png"
- }
- ]
- }
- ]
+ "id": "http://localhost/files/vudl:179/THUMBNAIL",
+ "type": "Image",
+ "format": "image/png"
}
- ]
+ ]
+ }
+ ]
}
- ]
+ ]
+ }
+ ]
}
diff --git a/__tests__/fixtures/cookbook-annotations-embedded.json b/__tests__/fixtures/cookbook-annotations-embedded.json
index fc243ee..4f1afe2 100644
--- a/__tests__/fixtures/cookbook-annotations-embedded.json
+++ b/__tests__/fixtures/cookbook-annotations-embedded.json
@@ -3,9 +3,7 @@
"id": "https://iiif.io/api/cookbook/recipe/0266-full-canvas-annotation/manifest.json",
"type": "Manifest",
"label": {
- "en": [
- "Picture of Göttingen taken during the 2019 IIIF Conference"
- ]
+ "en": ["Picture of Göttingen taken during the 2019 IIIF Conference"]
},
"items": [
{
@@ -63,4 +61,4 @@
]
}
]
-}
\ No newline at end of file
+}
diff --git a/__tests__/fixtures/prev-auth.json b/__tests__/fixtures/prev-auth.json
index 38b5065..7efcd7b 100644
--- a/__tests__/fixtures/prev-auth.json
+++ b/__tests__/fixtures/prev-auth.json
@@ -4,16 +4,12 @@
"http://www.w3.org/ns/anno.jsonld",
"http://iiif.io/api/presentation/3/context.json"
],
- "behavior": [
- "auto-advance"
- ],
+ "behavior": ["auto-advance"],
"homepage": {
"format": "text/html",
"id": "http://access.bl.uk/item/viewer/ark:/81055/vdc_100060861119.0x000002",
"label": {
- "en": [
- "View at the British Library"
- ]
+ "en": ["View at the British Library"]
},
"type": "Text"
},
@@ -110,17 +106,13 @@
}
],
"label": {
- "en": [
- "Tape 1 Side 1"
- ]
+ "en": ["Tape 1 Side 1"]
},
"type": "Canvas"
}
],
"label": {
- "en": [
- "C538/2/28 Sidetrax - Hills, 6.10.90"
- ]
+ "en": ["C538/2/28 Sidetrax - Hills, 6.10.90"]
},
"logo": [
{
@@ -131,81 +123,55 @@
"metadata": [
{
"label": {
- "en": [
- "Full title"
- ]
+ "en": ["Full title"]
},
"value": {
- "en": [
- "Sidetrax - Hills, 6.10.90"
- ]
+ "en": ["Sidetrax - Hills, 6.10.90"]
}
},
{
"label": {
- "en": [
- "Collection"
- ]
+ "en": ["Collection"]
},
"value": {
- "en": [
- "Jazz FM Tapes"
- ]
+ "en": ["Jazz FM Tapes"]
}
},
{
"label": {
- "en": [
- "Format"
- ]
+ "en": ["Format"]
},
"value": {
- "en": [
- "1 tape reel 18 cm 19 cm/sec stereo"
- ]
+ "en": ["1 tape reel 18 cm 19 cm/sec stereo"]
}
},
{
"label": {
- "en": [
- "Usage"
- ]
+ "en": ["Usage"]
},
"value": {
- "en": [
- "Rights unassigned - staff access only"
- ]
+ "en": ["Rights unassigned - staff access only"]
}
},
{
"label": {
- "en": [
- "Held by"
- ]
+ "en": ["Held by"]
},
"value": {
- "en": [
- "The British Library"
- ]
+ "en": ["The British Library"]
}
},
{
"label": {
- "en": [
- "Digitised by"
- ]
+ "en": ["Digitised by"]
},
"value": {
- "en": [
- "The British Library, 2018"
- ]
+ "en": ["The British Library, 2018"]
}
},
{
"label": {
- "en": [
- "Digitisation funded by"
- ]
+ "en": ["Digitisation funded by"]
},
"value": {
"en": [
@@ -215,33 +181,23 @@
},
{
"label": {
- "en": [
- "Identifier"
- ]
+ "en": ["Identifier"]
},
"value": {
- "en": [
- "C538/2/28"
- ]
+ "en": ["C538/2/28"]
}
},
{
"label": {
- "en": [
- "Shelfmark"
- ]
+ "en": ["Shelfmark"]
},
"value": {
- "en": [
- "C538/2/28"
- ]
+ "en": ["C538/2/28"]
}
},
{
"label": {
- "en": [
- "Link to catalogue"
- ]
+ "en": ["Link to catalogue"]
},
"value": {
"en": [
@@ -251,14 +207,10 @@
},
{
"label": {
- "en": [
- "Contents"
- ]
+ "en": ["Contents"]
},
"value": {
- "en": [
- "1) 10'48.- 2) e.o.s. 14'12 (to 17'10)"
- ]
+ "en": ["1) 10'48.- 2) e.o.s. 14'12 (to 17'10)"]
}
}
],
@@ -287,9 +239,7 @@
}
],
"label": {
- "en": [
- "world"
- ]
+ "en": ["world"]
},
"type": "Canvas",
"width": 962
diff --git a/__tests__/fixtures/riksarkivet.json b/__tests__/fixtures/riksarkivet.json
index ccdf474..bfe8771 100644
--- a/__tests__/fixtures/riksarkivet.json
+++ b/__tests__/fixtures/riksarkivet.json
@@ -1,5 +1,4 @@
{
-
"@context": "http://iiif.io/api/presentation/3/context.json",
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545/manifest",
@@ -7,363 +6,179 @@
"type": "Manifest",
"label": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816)"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816)"
-
]
-
},
"thumbnail": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00001/square/350,/0/default.jpg",
"type": "Thumbnail",
"format": "image/jpg"
-
}
-
],
"metadata": [
-
{
-
"label": {
+ "sv": ["Arkiv"],
- "sv": [
-
- "Arkiv"
-
- ],
-
- "en": [
-
- "Archive"
-
- ]
-
+ "en": ["Archive"]
},
- "value": {"none":["Bergskollegium"]}
-
+ "value": { "none": ["Bergskollegium"] }
},
{
-
"label": {
+ "sv": ["Serie"],
- "sv": [
-
- "Serie"
-
- ],
-
- "en": [
-
- "Serie"
-
- ]
-
+ "en": ["Serie"]
},
- "value": {"none":["Rättsprotokoll, slutserie (från o. 1811)"]}
-
+ "value": { "none": ["Rättsprotokoll, slutserie (från o. 1811)"] }
},
{
-
"label": {
+ "sv": ["Referenskod"],
- "sv": [
-
- "Referenskod"
-
- ],
-
- "en": [
-
- "Reference code"
-
- ]
-
+ "en": ["Reference code"]
},
- "value": {"none":["SE/RA/420013/02/E IV/5"]}
-
+ "value": { "none": ["SE/RA/420013/02/E IV/5"] }
},
{
-
"label": {
+ "sv": ["Datering"],
- "sv": [
-
- "Datering"
-
- ],
-
- "en": [
-
- "Date"
-
- ]
-
+ "en": ["Date"]
},
- "value": {"none":["1816"]}
-
+ "value": { "none": ["1816"] }
},
{
-
"label": {
+ "sv": ["Anmärkning"],
- "sv": [
-
- "Anmärkning"
-
- ],
-
- "en": [
-
- "Remark"
-
- ]
-
+ "en": ["Remark"]
},
- "value": {"none":["Del II. Nr 398. Öriga bergsmästaredömen."]}
-
+ "value": { "none": ["Del II. Nr 398. Öriga bergsmästaredömen."] }
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"none": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816)"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Rättigheter för digital reproduktion"],
- "sv": [
-
- "Rättigheter för digital reproduktion"
-
- ],
-
- "en": [
-
- "Rights"
-
- ]
-
+ "en": ["Rights"]
},
"value": {
-
- "none": [
-
- "http://creativecommons.org/publicdomain/mark/1.0/"
-
- ]
-
+ "none": ["http://creativecommons.org/publicdomain/mark/1.0/"]
}
-
},
{
-
"label": {
+ "sv": ["IIIF-manifest"],
- "sv": [
-
- "IIIF-manifest"
-
- ],
-
- "en": [
-
- "IIIF Manifest"
-
- ]
-
+ "en": ["IIIF Manifest"]
},
"value": {
-
- "none": [
-
- "https://lbiiif.riksarkivet.se/arkis!A0067545/manifest"
-
- ]
-
+ "none": ["https://lbiiif.riksarkivet.se/arkis!A0067545/manifest"]
}
-
}
-
],
"provider": [
-
{
-
"id": "http://data.riksarkivet.se/agent/Riksarkivet",
"type": "Agent",
"label": {
+ "sv": ["Riksarkivet"],
- "sv": [
-
- "Riksarkivet"
-
- ],
-
- "en": [
-
- "National Archives of Sweden"
-
- ]
-
+ "en": ["National Archives of Sweden"]
},
"homepage": [
-
{
-
"id": "https://riksarkivet.se",
"type": "Homepage",
"label": {
+ "sv": ["Riksarkivet"],
- "sv": [
-
- "Riksarkivet"
-
- ],
-
- "en": [
-
- "National Archives of Sweden"
-
- ]
-
+ "en": ["National Archives of Sweden"]
},
"format": "text/html",
- "language": [
-
- "sv"
-
- ]
-
+ "language": ["sv"]
}
-
]
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://data.riksarkivet.se/archive/3eOfDweJf4Y82PZrBG1jd1.jsonld",
"type": "Dataset",
"label": {
+ "sv": ["RDF-representation"],
- "sv": [
-
- "RDF-representation"
-
- ],
-
- "en": [
-
- "RDF representation"
-
- ]
-
+ "en": ["RDF representation"]
},
"format": "application/ld+json"
-
},
{
-
"id": "https://data.riksarkivet.se/archive/3eOfDweJf4Y82PZrBG1jd1.rdfxml",
"type": "Dataset",
"label": {
+ "sv": ["RDF-representation"],
- "sv": [
-
- "RDF-representation"
-
- ],
-
- "en": [
-
- "RDF representation"
-
- ]
-
+ "en": ["RDF representation"]
},
"format": "application/rdf+xml"
-
}
-
],
"service": [
-
{
-
"@context": "http://iiif.io/api/search/1/context.json",
"id": "https://lbiiif.riksarkivet.se/search/arkis!A0067545",
@@ -372,36 +187,22 @@
"profile": "http://iiif.io/api/search/1/search",
- "label": {"en":["Search within this manifest"]}
-
+ "label": { "en": ["Search within this manifest"] }
}
-
],
"viewingDirection": "left-to-right",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00001/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 1"],
- "sv": [
-
- "Bild 1"
-
- ],
-
- "en": [
-
- "Image 1"
-
- ]
-
+ "en": ["Image 1"]
},
"width": 3507,
@@ -409,199 +210,105 @@
"height": 2480,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00001"]}
-
+ "value": { "none": ["A0067545_00001"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00001"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00001"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00001"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00001"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.0000
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.0000
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00001.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00001"]},
+ "label": { "en": ["ALTO XML for A0067545_00001"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00001/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00001/annotation",
"type": "Annotation",
@@ -609,7 +316,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00001/full/max/0/default.jpg",
"type": "Image",
@@ -621,9 +327,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00001",
"type": "ImageService3",
@@ -633,11 +337,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00001",
"@type": "ImageService2",
@@ -647,45 +349,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00001/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00002/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 2"],
- "sv": [
-
- "Bild 2"
-
- ],
-
- "en": [
-
- "Image 2"
-
- ]
-
+ "en": ["Image 2"]
},
"width": 5896,
@@ -693,199 +376,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00002"]}
-
+ "value": { "none": ["A0067545_00002"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00002"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00002"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00002"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00002"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.0000
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.0000
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00002.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00002"]},
+ "label": { "en": ["ALTO XML for A0067545_00002"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00002/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00002/annotation",
"type": "Annotation",
@@ -893,7 +482,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00002/full/max/0/default.jpg",
"type": "Image",
@@ -905,9 +493,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00002",
"type": "ImageService3",
@@ -917,11 +503,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00002",
"@type": "ImageService2",
@@ -931,45 +515,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00002/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00003/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 3"],
- "sv": [
-
- "Bild 3"
-
- ],
-
- "en": [
-
- "Image 3"
-
- ]
-
+ "en": ["Image 3"]
},
"width": 5864,
@@ -977,199 +542,105 @@
"height": 5192,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00003"]}
-
+ "value": { "none": ["A0067545_00003"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00003"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00003"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00003"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00003"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.0000
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.0000
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00003.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00003"]},
+ "label": { "en": ["ALTO XML for A0067545_00003"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00003/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00003/annotation",
"type": "Annotation",
@@ -1177,7 +648,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00003/full/max/0/default.jpg",
"type": "Image",
@@ -1189,9 +659,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00003",
"type": "ImageService3",
@@ -1201,11 +669,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00003",
"@type": "ImageService2",
@@ -1215,45 +681,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00003/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00004/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 4"],
- "sv": [
-
- "Bild 4"
-
- ],
-
- "en": [
-
- "Image 4"
-
- ]
-
+ "en": ["Image 4"]
},
"width": 5896,
@@ -1261,199 +708,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00004"]}
-
+ "value": { "none": ["A0067545_00004"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00004"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00004"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00004"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00004"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.0000
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.0000
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00004.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00004"]},
+ "label": { "en": ["ALTO XML for A0067545_00004"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00004/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00004/annotation",
"type": "Annotation",
@@ -1461,7 +814,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00004/full/max/0/default.jpg",
"type": "Image",
@@ -1473,9 +825,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00004",
"type": "ImageService3",
@@ -1485,11 +835,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00004",
"@type": "ImageService2",
@@ -1499,45 +847,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00004/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00005/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 5"],
- "sv": [
-
- "Bild 5"
-
- ],
-
- "en": [
-
- "Image 5"
-
- ]
-
+ "en": ["Image 5"]
},
"width": 5896,
@@ -1545,199 +874,105 @@
"height": 5192,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00005"]}
-
+ "value": { "none": ["A0067545_00005"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00005"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00005"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00005"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00005"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9946
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9946
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00005.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00005"]},
+ "label": { "en": ["ALTO XML for A0067545_00005"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00005/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00005/annotation",
"type": "Annotation",
@@ -1745,7 +980,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00005/full/max/0/default.jpg",
"type": "Image",
@@ -1757,9 +991,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00005",
"type": "ImageService3",
@@ -1769,11 +1001,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00005",
"@type": "ImageService2",
@@ -1783,45 +1013,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00005/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00006/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 6"],
- "sv": [
-
- "Bild 6"
-
- ],
-
- "en": [
-
- "Image 6"
-
- ]
-
+ "en": ["Image 6"]
},
"width": 5984,
@@ -1829,199 +1040,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00006"]}
-
+ "value": { "none": ["A0067545_00006"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00006"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00006"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00006"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00006"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00006.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00006"]},
+ "label": { "en": ["ALTO XML for A0067545_00006"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00006/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00006/annotation",
"type": "Annotation",
@@ -2029,7 +1146,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00006/full/max/0/default.jpg",
"type": "Image",
@@ -2041,9 +1157,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00006",
"type": "ImageService3",
@@ -2053,11 +1167,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00006",
"@type": "ImageService2",
@@ -2067,45 +1179,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00006/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00007/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 7"],
- "sv": [
-
- "Bild 7"
-
- ],
-
- "en": [
-
- "Image 7"
-
- ]
-
+ "en": ["Image 7"]
},
"width": 5896,
@@ -2113,199 +1206,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00007"]}
-
+ "value": { "none": ["A0067545_00007"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00007"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00007"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00007"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00007"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00007.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00007"]},
+ "label": { "en": ["ALTO XML for A0067545_00007"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00007/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00007/annotation",
"type": "Annotation",
@@ -2313,7 +1312,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00007/full/max/0/default.jpg",
"type": "Image",
@@ -2325,9 +1323,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00007",
"type": "ImageService3",
@@ -2337,11 +1333,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00007",
"@type": "ImageService2",
@@ -2351,45 +1345,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00007/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00008/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 8"],
- "sv": [
-
- "Bild 8"
-
- ],
-
- "en": [
-
- "Image 8"
-
- ]
-
+ "en": ["Image 8"]
},
"width": 6016,
@@ -2397,199 +1372,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00008"]}
-
+ "value": { "none": ["A0067545_00008"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00008"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00008"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00008"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00008"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9915
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9915
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00008.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00008"]},
+ "label": { "en": ["ALTO XML for A0067545_00008"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00008/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00008/annotation",
"type": "Annotation",
@@ -2597,7 +1478,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00008/full/max/0/default.jpg",
"type": "Image",
@@ -2609,9 +1489,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00008",
"type": "ImageService3",
@@ -2621,11 +1499,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00008",
"@type": "ImageService2",
@@ -2635,45 +1511,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00008/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00009/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 9"],
- "sv": [
-
- "Bild 9"
-
- ],
-
- "en": [
-
- "Image 9"
-
- ]
-
+ "en": ["Image 9"]
},
"width": 5984,
@@ -2681,199 +1538,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00009"]}
-
+ "value": { "none": ["A0067545_00009"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00009"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00009"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00009"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00009"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9836
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9836
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00009.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00009"]},
+ "label": { "en": ["ALTO XML for A0067545_00009"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00009/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00009/annotation",
"type": "Annotation",
@@ -2881,7 +1644,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00009/full/max/0/default.jpg",
"type": "Image",
@@ -2893,9 +1655,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00009",
"type": "ImageService3",
@@ -2905,11 +1665,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00009",
"@type": "ImageService2",
@@ -2919,45 +1677,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00009/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00010/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 10"],
- "sv": [
-
- "Bild 10"
-
- ],
-
- "en": [
-
- "Image 10"
-
- ]
-
+ "en": ["Image 10"]
},
"width": 6016,
@@ -2965,199 +1704,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00010"]}
-
+ "value": { "none": ["A0067545_00010"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00010"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00010"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00010"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00010"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9962
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9962
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00010.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00010"]},
+ "label": { "en": ["ALTO XML for A0067545_00010"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00010/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00010/annotation",
"type": "Annotation",
@@ -3165,7 +1810,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00010/full/max/0/default.jpg",
"type": "Image",
@@ -3177,9 +1821,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00010",
"type": "ImageService3",
@@ -3189,11 +1831,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00010",
"@type": "ImageService2",
@@ -3203,45 +1843,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00010/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00011/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 11"],
- "sv": [
-
- "Bild 11"
-
- ],
-
- "en": [
-
- "Image 11"
-
- ]
-
+ "en": ["Image 11"]
},
"width": 6056,
@@ -3249,199 +1870,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00011"]}
-
+ "value": { "none": ["A0067545_00011"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00011"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00011"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00011"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00011"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00011.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00011"]},
+ "label": { "en": ["ALTO XML for A0067545_00011"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00011/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00011/annotation",
"type": "Annotation",
@@ -3449,7 +1976,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00011/full/max/0/default.jpg",
"type": "Image",
@@ -3461,9 +1987,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00011",
"type": "ImageService3",
@@ -3473,11 +1997,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00011",
"@type": "ImageService2",
@@ -3487,45 +2009,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00011/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00012/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 12"],
- "sv": [
-
- "Bild 12"
-
- ],
-
- "en": [
-
- "Image 12"
-
- ]
-
+ "en": ["Image 12"]
},
"width": 6144,
@@ -3533,199 +2036,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00012"]}
-
+ "value": { "none": ["A0067545_00012"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00012"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00012"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00012"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00012"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9909
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9909
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00012.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00012"]},
+ "label": { "en": ["ALTO XML for A0067545_00012"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00012/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00012/annotation",
"type": "Annotation",
@@ -3733,7 +2142,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00012/full/max/0/default.jpg",
"type": "Image",
@@ -3745,9 +2153,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00012",
"type": "ImageService3",
@@ -3757,11 +2163,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00012",
"@type": "ImageService2",
@@ -3771,45 +2175,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00012/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00013/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 13"],
- "sv": [
-
- "Bild 13"
-
- ],
-
- "en": [
-
- "Image 13"
-
- ]
-
+ "en": ["Image 13"]
},
"width": 5960,
@@ -3817,199 +2202,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00013"]}
-
+ "value": { "none": ["A0067545_00013"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00013"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00013"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00013"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00013"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00013.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00013"]},
+ "label": { "en": ["ALTO XML for A0067545_00013"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00013/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00013/annotation",
"type": "Annotation",
@@ -4017,7 +2308,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00013/full/max/0/default.jpg",
"type": "Image",
@@ -4029,9 +2319,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00013",
"type": "ImageService3",
@@ -4041,11 +2329,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00013",
"@type": "ImageService2",
@@ -4055,45 +2341,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00013/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00014/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 14"],
- "sv": [
-
- "Bild 14"
-
- ],
-
- "en": [
-
- "Image 14"
-
- ]
-
+ "en": ["Image 14"]
},
"width": 6016,
@@ -4101,199 +2368,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00014"]}
-
+ "value": { "none": ["A0067545_00014"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00014"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00014"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00014"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00014"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00014.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00014"]},
+ "label": { "en": ["ALTO XML for A0067545_00014"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00014/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00014/annotation",
"type": "Annotation",
@@ -4301,7 +2474,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00014/full/max/0/default.jpg",
"type": "Image",
@@ -4313,9 +2485,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00014",
"type": "ImageService3",
@@ -4325,11 +2495,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00014",
"@type": "ImageService2",
@@ -4339,45 +2507,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00014/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00015/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 15"],
- "sv": [
-
- "Bild 15"
-
- ],
-
- "en": [
-
- "Image 15"
-
- ]
-
+ "en": ["Image 15"]
},
"width": 5896,
@@ -4385,199 +2534,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00015"]}
-
+ "value": { "none": ["A0067545_00015"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00015"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00015"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00015"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00015"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00015.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00015"]},
+ "label": { "en": ["ALTO XML for A0067545_00015"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00015/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00015/annotation",
"type": "Annotation",
@@ -4585,7 +2640,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00015/full/max/0/default.jpg",
"type": "Image",
@@ -4597,9 +2651,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00015",
"type": "ImageService3",
@@ -4609,11 +2661,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00015",
"@type": "ImageService2",
@@ -4623,45 +2673,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00015/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00016/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 16"],
- "sv": [
-
- "Bild 16"
-
- ],
-
- "en": [
-
- "Image 16"
-
- ]
-
+ "en": ["Image 16"]
},
"width": 6016,
@@ -4669,199 +2700,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00016"]}
-
+ "value": { "none": ["A0067545_00016"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00016"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00016"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00016"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00016"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9879
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9879
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00016.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00016"]},
+ "label": { "en": ["ALTO XML for A0067545_00016"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00016/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00016/annotation",
"type": "Annotation",
@@ -4869,7 +2806,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00016/full/max/0/default.jpg",
"type": "Image",
@@ -4881,9 +2817,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00016",
"type": "ImageService3",
@@ -4893,11 +2827,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00016",
"@type": "ImageService2",
@@ -4907,45 +2839,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00016/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00017/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 17"],
- "sv": [
-
- "Bild 17"
-
- ],
-
- "en": [
-
- "Image 17"
-
- ]
-
+ "en": ["Image 17"]
},
"width": 6016,
@@ -4953,199 +2866,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00017"]}
-
+ "value": { "none": ["A0067545_00017"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00017"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00017"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00017"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00017"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9841
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9841
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00017.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00017"]},
+ "label": { "en": ["ALTO XML for A0067545_00017"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00017/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00017/annotation",
"type": "Annotation",
@@ -5153,7 +2972,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00017/full/max/0/default.jpg",
"type": "Image",
@@ -5165,9 +2983,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00017",
"type": "ImageService3",
@@ -5177,11 +2993,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00017",
"@type": "ImageService2",
@@ -5191,45 +3005,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00017/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00018/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 18"],
- "sv": [
-
- "Bild 18"
-
- ],
-
- "en": [
-
- "Image 18"
-
- ]
-
+ "en": ["Image 18"]
},
"width": 6016,
@@ -5237,199 +3032,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00018"]}
-
+ "value": { "none": ["A0067545_00018"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00018"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00018"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00018"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00018"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00018.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00018"]},
+ "label": { "en": ["ALTO XML for A0067545_00018"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00018/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00018/annotation",
"type": "Annotation",
@@ -5437,7 +3138,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00018/full/max/0/default.jpg",
"type": "Image",
@@ -5449,9 +3149,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00018",
"type": "ImageService3",
@@ -5461,11 +3159,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00018",
"@type": "ImageService2",
@@ -5475,45 +3171,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00018/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00019/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 19"],
- "sv": [
-
- "Bild 19"
-
- ],
-
- "en": [
-
- "Image 19"
-
- ]
-
+ "en": ["Image 19"]
},
"width": 5960,
@@ -5521,199 +3198,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00019"]}
-
+ "value": { "none": ["A0067545_00019"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00019"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00019"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00019"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00019"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00019.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00019"]},
+ "label": { "en": ["ALTO XML for A0067545_00019"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00019/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00019/annotation",
"type": "Annotation",
@@ -5721,7 +3304,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00019/full/max/0/default.jpg",
"type": "Image",
@@ -5733,9 +3315,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00019",
"type": "ImageService3",
@@ -5745,11 +3325,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00019",
"@type": "ImageService2",
@@ -5759,45 +3337,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00019/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00020/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 20"],
- "sv": [
-
- "Bild 20"
-
- ],
-
- "en": [
-
- "Image 20"
-
- ]
-
+ "en": ["Image 20"]
},
"width": 5928,
@@ -5805,199 +3364,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00020"]}
-
+ "value": { "none": ["A0067545_00020"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00020"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00020"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00020"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00020"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00020.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00020"]},
+ "label": { "en": ["ALTO XML for A0067545_00020"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00020/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00020/annotation",
"type": "Annotation",
@@ -6005,7 +3470,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00020/full/max/0/default.jpg",
"type": "Image",
@@ -6017,9 +3481,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00020",
"type": "ImageService3",
@@ -6029,11 +3491,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00020",
"@type": "ImageService2",
@@ -6043,45 +3503,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00020/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00021/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 21"],
- "sv": [
-
- "Bild 21"
-
- ],
-
- "en": [
-
- "Image 21"
-
- ]
-
+ "en": ["Image 21"]
},
"width": 5896,
@@ -6089,199 +3530,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00021"]}
-
+ "value": { "none": ["A0067545_00021"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00021"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00021"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00021"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00021"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00021.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00021"]},
+ "label": { "en": ["ALTO XML for A0067545_00021"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00021/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00021/annotation",
"type": "Annotation",
@@ -6289,7 +3636,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00021/full/max/0/default.jpg",
"type": "Image",
@@ -6301,9 +3647,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00021",
"type": "ImageService3",
@@ -6313,11 +3657,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00021",
"@type": "ImageService2",
@@ -6327,45 +3669,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00021/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00022/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 22"],
- "sv": [
-
- "Bild 22"
-
- ],
-
- "en": [
-
- "Image 22"
-
- ]
-
+ "en": ["Image 22"]
},
"width": 6016,
@@ -6373,199 +3696,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00022"]}
-
+ "value": { "none": ["A0067545_00022"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00022"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00022"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00022"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00022"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9831
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9831
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00022.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00022"]},
+ "label": { "en": ["ALTO XML for A0067545_00022"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00022/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00022/annotation",
"type": "Annotation",
@@ -6573,7 +3802,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00022/full/max/0/default.jpg",
"type": "Image",
@@ -6585,9 +3813,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00022",
"type": "ImageService3",
@@ -6597,11 +3823,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00022",
"@type": "ImageService2",
@@ -6611,45 +3835,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00022/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00023/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 23"],
- "sv": [
-
- "Bild 23"
-
- ],
-
- "en": [
-
- "Image 23"
-
- ]
-
+ "en": ["Image 23"]
},
"width": 6016,
@@ -6657,199 +3862,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00023"]}
-
+ "value": { "none": ["A0067545_00023"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00023"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00023"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00023"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00023"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9826
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9826
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00023.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00023"]},
+ "label": { "en": ["ALTO XML for A0067545_00023"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00023/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00023/annotation",
"type": "Annotation",
@@ -6857,7 +3968,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00023/full/max/0/default.jpg",
"type": "Image",
@@ -6869,9 +3979,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00023",
"type": "ImageService3",
@@ -6881,11 +3989,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00023",
"@type": "ImageService2",
@@ -6895,45 +4001,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00023/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00024/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 24"],
- "sv": [
-
- "Bild 24"
-
- ],
-
- "en": [
-
- "Image 24"
-
- ]
-
+ "en": ["Image 24"]
},
"width": 6016,
@@ -6941,199 +4028,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00024"]}
-
+ "value": { "none": ["A0067545_00024"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00024"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00024"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00024"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00024"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9916
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9916
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00024.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00024"]},
+ "label": { "en": ["ALTO XML for A0067545_00024"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00024/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00024/annotation",
"type": "Annotation",
@@ -7141,7 +4134,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00024/full/max/0/default.jpg",
"type": "Image",
@@ -7153,9 +4145,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00024",
"type": "ImageService3",
@@ -7165,11 +4155,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00024",
"@type": "ImageService2",
@@ -7179,45 +4167,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00024/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00025/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 25"],
- "sv": [
-
- "Bild 25"
-
- ],
-
- "en": [
-
- "Image 25"
-
- ]
-
+ "en": ["Image 25"]
},
"width": 5984,
@@ -7225,199 +4194,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00025"]}
-
+ "value": { "none": ["A0067545_00025"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00025"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00025"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00025"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00025"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00025.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00025"]},
+ "label": { "en": ["ALTO XML for A0067545_00025"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00025/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00025/annotation",
"type": "Annotation",
@@ -7425,7 +4300,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00025/full/max/0/default.jpg",
"type": "Image",
@@ -7437,9 +4311,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00025",
"type": "ImageService3",
@@ -7449,11 +4321,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00025",
"@type": "ImageService2",
@@ -7463,45 +4333,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00025/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00026/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 26"],
- "sv": [
-
- "Bild 26"
-
- ],
-
- "en": [
-
- "Image 26"
-
- ]
-
+ "en": ["Image 26"]
},
"width": 6016,
@@ -7509,199 +4360,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00026"]}
-
+ "value": { "none": ["A0067545_00026"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00026"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00026"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00026"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00026"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9904
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9904
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00026.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00026"]},
+ "label": { "en": ["ALTO XML for A0067545_00026"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00026/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00026/annotation",
"type": "Annotation",
@@ -7709,7 +4466,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00026/full/max/0/default.jpg",
"type": "Image",
@@ -7721,9 +4477,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00026",
"type": "ImageService3",
@@ -7733,11 +4487,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00026",
"@type": "ImageService2",
@@ -7747,45 +4499,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00026/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00027/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 27"],
- "sv": [
-
- "Bild 27"
-
- ],
-
- "en": [
-
- "Image 27"
-
- ]
-
+ "en": ["Image 27"]
},
"width": 6016,
@@ -7793,199 +4526,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00027"]}
-
+ "value": { "none": ["A0067545_00027"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00027"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00027"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00027"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00027"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9962
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9962
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00027.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00027"]},
+ "label": { "en": ["ALTO XML for A0067545_00027"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00027/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00027/annotation",
"type": "Annotation",
@@ -7993,7 +4632,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00027/full/max/0/default.jpg",
"type": "Image",
@@ -8005,9 +4643,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00027",
"type": "ImageService3",
@@ -8017,11 +4653,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00027",
"@type": "ImageService2",
@@ -8031,45 +4665,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00027/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00028/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 28"],
- "sv": [
-
- "Bild 28"
-
- ],
-
- "en": [
-
- "Image 28"
-
- ]
-
+ "en": ["Image 28"]
},
"width": 5864,
@@ -8077,199 +4692,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00028"]}
-
+ "value": { "none": ["A0067545_00028"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00028"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00028"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00028"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00028"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00028.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00028"]},
+ "label": { "en": ["ALTO XML for A0067545_00028"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00028/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00028/annotation",
"type": "Annotation",
@@ -8277,7 +4798,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00028/full/max/0/default.jpg",
"type": "Image",
@@ -8289,9 +4809,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00028",
"type": "ImageService3",
@@ -8301,11 +4819,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00028",
"@type": "ImageService2",
@@ -8315,45 +4831,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00028/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00029/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 29"],
- "sv": [
-
- "Bild 29"
-
- ],
-
- "en": [
-
- "Image 29"
-
- ]
-
+ "en": ["Image 29"]
},
"width": 5984,
@@ -8361,199 +4858,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00029"]}
-
+ "value": { "none": ["A0067545_00029"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00029"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00029"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00029"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00029"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9903
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9903
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00029.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00029"]},
+ "label": { "en": ["ALTO XML for A0067545_00029"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00029/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00029/annotation",
"type": "Annotation",
@@ -8561,7 +4964,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00029/full/max/0/default.jpg",
"type": "Image",
@@ -8573,9 +4975,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00029",
"type": "ImageService3",
@@ -8585,11 +4985,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00029",
"@type": "ImageService2",
@@ -8599,45 +4997,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00029/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00030/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 30"],
- "sv": [
-
- "Bild 30"
-
- ],
-
- "en": [
-
- "Image 30"
-
- ]
-
+ "en": ["Image 30"]
},
"width": 6016,
@@ -8645,199 +5024,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00030"]}
-
+ "value": { "none": ["A0067545_00030"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00030"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00030"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00030"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00030"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9938
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9938
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00030.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00030"]},
+ "label": { "en": ["ALTO XML for A0067545_00030"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00030/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00030/annotation",
"type": "Annotation",
@@ -8845,7 +5130,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00030/full/max/0/default.jpg",
"type": "Image",
@@ -8857,9 +5141,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00030",
"type": "ImageService3",
@@ -8869,11 +5151,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00030",
"@type": "ImageService2",
@@ -8883,45 +5163,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00030/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00031/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 31"],
- "sv": [
-
- "Bild 31"
-
- ],
-
- "en": [
-
- "Image 31"
-
- ]
-
+ "en": ["Image 31"]
},
"width": 6080,
@@ -8929,199 +5190,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00031"]}
-
+ "value": { "none": ["A0067545_00031"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00031"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00031"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00031"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00031"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00031.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00031"]},
+ "label": { "en": ["ALTO XML for A0067545_00031"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00031/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00031/annotation",
"type": "Annotation",
@@ -9129,7 +5296,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00031/full/max/0/default.jpg",
"type": "Image",
@@ -9141,9 +5307,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00031",
"type": "ImageService3",
@@ -9153,11 +5317,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00031",
"@type": "ImageService2",
@@ -9167,45 +5329,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00031/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00032/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 32"],
- "sv": [
-
- "Bild 32"
-
- ],
-
- "en": [
-
- "Image 32"
-
- ]
-
+ "en": ["Image 32"]
},
"width": 6112,
@@ -9213,199 +5356,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00032"]}
-
+ "value": { "none": ["A0067545_00032"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00032"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00032"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00032"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00032"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9972
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9972
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00032.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00032"]},
+ "label": { "en": ["ALTO XML for A0067545_00032"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00032/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00032/annotation",
"type": "Annotation",
@@ -9413,7 +5462,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00032/full/max/0/default.jpg",
"type": "Image",
@@ -9425,9 +5473,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00032",
"type": "ImageService3",
@@ -9437,11 +5483,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00032",
"@type": "ImageService2",
@@ -9451,45 +5495,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00032/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00033/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 33"],
- "sv": [
-
- "Bild 33"
-
- ],
-
- "en": [
-
- "Image 33"
-
- ]
-
+ "en": ["Image 33"]
},
"width": 6016,
@@ -9497,199 +5522,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00033"]}
-
+ "value": { "none": ["A0067545_00033"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00033"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00033"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00033"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00033"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9758
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9758
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00033.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00033"]},
+ "label": { "en": ["ALTO XML for A0067545_00033"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00033/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00033/annotation",
"type": "Annotation",
@@ -9697,7 +5628,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00033/full/max/0/default.jpg",
"type": "Image",
@@ -9709,9 +5639,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00033",
"type": "ImageService3",
@@ -9721,11 +5649,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00033",
"@type": "ImageService2",
@@ -9735,45 +5661,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00033/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00034/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 34"],
- "sv": [
-
- "Bild 34"
-
- ],
-
- "en": [
-
- "Image 34"
-
- ]
-
+ "en": ["Image 34"]
},
"width": 5984,
@@ -9781,199 +5688,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00034"]}
-
+ "value": { "none": ["A0067545_00034"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00034"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00034"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00034"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00034"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00034.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00034"]},
+ "label": { "en": ["ALTO XML for A0067545_00034"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00034/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00034/annotation",
"type": "Annotation",
@@ -9981,7 +5794,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00034/full/max/0/default.jpg",
"type": "Image",
@@ -9993,9 +5805,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00034",
"type": "ImageService3",
@@ -10005,11 +5815,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00034",
"@type": "ImageService2",
@@ -10019,45 +5827,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00034/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00035/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 35"],
- "sv": [
-
- "Bild 35"
-
- ],
-
- "en": [
-
- "Image 35"
-
- ]
-
+ "en": ["Image 35"]
},
"width": 6016,
@@ -10065,199 +5854,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00035"]}
-
+ "value": { "none": ["A0067545_00035"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00035"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00035"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00035"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00035"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00035.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00035"]},
+ "label": { "en": ["ALTO XML for A0067545_00035"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00035/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00035/annotation",
"type": "Annotation",
@@ -10265,7 +5960,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00035/full/max/0/default.jpg",
"type": "Image",
@@ -10277,9 +5971,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00035",
"type": "ImageService3",
@@ -10289,11 +5981,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00035",
"@type": "ImageService2",
@@ -10303,45 +5993,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00035/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00036/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 36"],
- "sv": [
-
- "Bild 36"
-
- ],
-
- "en": [
-
- "Image 36"
-
- ]
-
+ "en": ["Image 36"]
},
"width": 6016,
@@ -10349,199 +6020,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00036"]}
-
+ "value": { "none": ["A0067545_00036"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00036"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00036"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00036"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00036"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00036.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00036"]},
+ "label": { "en": ["ALTO XML for A0067545_00036"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00036/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00036/annotation",
"type": "Annotation",
@@ -10549,7 +6126,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00036/full/max/0/default.jpg",
"type": "Image",
@@ -10561,9 +6137,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00036",
"type": "ImageService3",
@@ -10573,11 +6147,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00036",
"@type": "ImageService2",
@@ -10587,45 +6159,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00036/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00037/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 37"],
- "sv": [
-
- "Bild 37"
-
- ],
-
- "en": [
-
- "Image 37"
-
- ]
-
+ "en": ["Image 37"]
},
"width": 6016,
@@ -10633,199 +6186,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00037"]}
-
+ "value": { "none": ["A0067545_00037"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00037"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00037"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00037"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00037"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00037.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00037"]},
+ "label": { "en": ["ALTO XML for A0067545_00037"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00037/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00037/annotation",
"type": "Annotation",
@@ -10833,7 +6292,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00037/full/max/0/default.jpg",
"type": "Image",
@@ -10845,9 +6303,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00037",
"type": "ImageService3",
@@ -10857,11 +6313,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00037",
"@type": "ImageService2",
@@ -10871,45 +6325,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00037/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00038/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 38"],
- "sv": [
-
- "Bild 38"
-
- ],
-
- "en": [
-
- "Image 38"
-
- ]
-
+ "en": ["Image 38"]
},
"width": 6016,
@@ -10917,199 +6352,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00038"]}
-
+ "value": { "none": ["A0067545_00038"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00038"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00038"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00038"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00038"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00038.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00038"]},
+ "label": { "en": ["ALTO XML for A0067545_00038"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00038/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00038/annotation",
"type": "Annotation",
@@ -11117,7 +6458,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00038/full/max/0/default.jpg",
"type": "Image",
@@ -11129,9 +6469,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00038",
"type": "ImageService3",
@@ -11141,11 +6479,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00038",
"@type": "ImageService2",
@@ -11155,45 +6491,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00038/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00039/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 39"],
- "sv": [
-
- "Bild 39"
-
- ],
-
- "en": [
-
- "Image 39"
-
- ]
-
+ "en": ["Image 39"]
},
"width": 6016,
@@ -11201,199 +6518,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00039"]}
-
+ "value": { "none": ["A0067545_00039"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00039"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00039"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00039"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00039"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9946
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9946
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00039.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00039"]},
+ "label": { "en": ["ALTO XML for A0067545_00039"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00039/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00039/annotation",
"type": "Annotation",
@@ -11401,7 +6624,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00039/full/max/0/default.jpg",
"type": "Image",
@@ -11413,9 +6635,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00039",
"type": "ImageService3",
@@ -11425,11 +6645,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00039",
"@type": "ImageService2",
@@ -11439,45 +6657,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00039/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00040/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 40"],
- "sv": [
-
- "Bild 40"
-
- ],
-
- "en": [
-
- "Image 40"
-
- ]
-
+ "en": ["Image 40"]
},
"width": 5952,
@@ -11485,199 +6684,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00040"]}
-
+ "value": { "none": ["A0067545_00040"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00040"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00040"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00040"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00040"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00040.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00040"]},
+ "label": { "en": ["ALTO XML for A0067545_00040"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00040/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00040/annotation",
"type": "Annotation",
@@ -11685,7 +6790,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00040/full/max/0/default.jpg",
"type": "Image",
@@ -11697,9 +6801,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00040",
"type": "ImageService3",
@@ -11709,11 +6811,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00040",
"@type": "ImageService2",
@@ -11723,45 +6823,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00040/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00041/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 41"],
- "sv": [
-
- "Bild 41"
-
- ],
-
- "en": [
-
- "Image 41"
-
- ]
-
+ "en": ["Image 41"]
},
"width": 5984,
@@ -11769,199 +6850,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00041"]}
-
+ "value": { "none": ["A0067545_00041"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00041"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00041"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00041"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00041"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9949
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9949
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00041.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00041"]},
+ "label": { "en": ["ALTO XML for A0067545_00041"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00041/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00041/annotation",
"type": "Annotation",
@@ -11969,7 +6956,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00041/full/max/0/default.jpg",
"type": "Image",
@@ -11981,9 +6967,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00041",
"type": "ImageService3",
@@ -11993,11 +6977,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00041",
"@type": "ImageService2",
@@ -12007,45 +6989,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00041/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00042/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 42"],
- "sv": [
-
- "Bild 42"
-
- ],
-
- "en": [
-
- "Image 42"
-
- ]
-
+ "en": ["Image 42"]
},
"width": 6016,
@@ -12053,199 +7016,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00042"]}
-
+ "value": { "none": ["A0067545_00042"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00042"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00042"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00042"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00042"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9938
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9938
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00042.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00042"]},
+ "label": { "en": ["ALTO XML for A0067545_00042"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00042/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00042/annotation",
"type": "Annotation",
@@ -12253,7 +7122,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00042/full/max/0/default.jpg",
"type": "Image",
@@ -12265,9 +7133,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00042",
"type": "ImageService3",
@@ -12277,11 +7143,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00042",
"@type": "ImageService2",
@@ -12291,45 +7155,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00042/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00043/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 43"],
- "sv": [
-
- "Bild 43"
-
- ],
-
- "en": [
-
- "Image 43"
-
- ]
-
+ "en": ["Image 43"]
},
"width": 6016,
@@ -12337,199 +7182,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00043"]}
-
+ "value": { "none": ["A0067545_00043"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00043"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00043"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00043"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00043"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00043.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00043"]},
+ "label": { "en": ["ALTO XML for A0067545_00043"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00043/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00043/annotation",
"type": "Annotation",
@@ -12537,7 +7288,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00043/full/max/0/default.jpg",
"type": "Image",
@@ -12549,9 +7299,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00043",
"type": "ImageService3",
@@ -12561,11 +7309,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00043",
"@type": "ImageService2",
@@ -12575,45 +7321,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00043/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00044/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 44"],
- "sv": [
-
- "Bild 44"
-
- ],
-
- "en": [
-
- "Image 44"
-
- ]
-
+ "en": ["Image 44"]
},
"width": 6016,
@@ -12621,199 +7348,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00044"]}
-
+ "value": { "none": ["A0067545_00044"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00044"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00044"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00044"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00044"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9949
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9949
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00044.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00044"]},
+ "label": { "en": ["ALTO XML for A0067545_00044"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00044/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00044/annotation",
"type": "Annotation",
@@ -12821,7 +7454,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00044/full/max/0/default.jpg",
"type": "Image",
@@ -12833,9 +7465,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00044",
"type": "ImageService3",
@@ -12845,11 +7475,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00044",
"@type": "ImageService2",
@@ -12859,45 +7487,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00044/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00045/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 45"],
- "sv": [
-
- "Bild 45"
-
- ],
-
- "en": [
-
- "Image 45"
-
- ]
-
+ "en": ["Image 45"]
},
"width": 6016,
@@ -12905,199 +7514,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00045"]}
-
+ "value": { "none": ["A0067545_00045"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00045"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00045"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00045"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00045"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00045.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00045"]},
+ "label": { "en": ["ALTO XML for A0067545_00045"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00045/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00045/annotation",
"type": "Annotation",
@@ -13105,7 +7620,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00045/full/max/0/default.jpg",
"type": "Image",
@@ -13117,9 +7631,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00045",
"type": "ImageService3",
@@ -13129,11 +7641,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00045",
"@type": "ImageService2",
@@ -13143,45 +7653,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00045/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00046/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 46"],
- "sv": [
-
- "Bild 46"
-
- ],
-
- "en": [
-
- "Image 46"
-
- ]
-
+ "en": ["Image 46"]
},
"width": 6016,
@@ -13189,199 +7680,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00046"]}
-
+ "value": { "none": ["A0067545_00046"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00046"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00046"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00046"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00046"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00046.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00046"]},
+ "label": { "en": ["ALTO XML for A0067545_00046"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00046/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00046/annotation",
"type": "Annotation",
@@ -13389,7 +7786,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00046/full/max/0/default.jpg",
"type": "Image",
@@ -13401,9 +7797,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00046",
"type": "ImageService3",
@@ -13413,11 +7807,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00046",
"@type": "ImageService2",
@@ -13427,45 +7819,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00046/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00047/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 47"],
- "sv": [
-
- "Bild 47"
-
- ],
-
- "en": [
-
- "Image 47"
-
- ]
-
+ "en": ["Image 47"]
},
"width": 6016,
@@ -13473,199 +7846,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00047"]}
-
+ "value": { "none": ["A0067545_00047"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00047"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00047"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00047"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00047"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9910
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9910
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00047.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00047"]},
+ "label": { "en": ["ALTO XML for A0067545_00047"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00047/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00047/annotation",
"type": "Annotation",
@@ -13673,7 +7952,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00047/full/max/0/default.jpg",
"type": "Image",
@@ -13685,9 +7963,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00047",
"type": "ImageService3",
@@ -13697,11 +7973,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00047",
"@type": "ImageService2",
@@ -13711,45 +7985,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00047/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00048/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 48"],
- "sv": [
-
- "Bild 48"
-
- ],
-
- "en": [
-
- "Image 48"
-
- ]
-
+ "en": ["Image 48"]
},
"width": 6016,
@@ -13757,199 +8012,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00048"]}
-
+ "value": { "none": ["A0067545_00048"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00048"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00048"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00048"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00048"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00048.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00048"]},
+ "label": { "en": ["ALTO XML for A0067545_00048"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00048/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00048/annotation",
"type": "Annotation",
@@ -13957,7 +8118,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00048/full/max/0/default.jpg",
"type": "Image",
@@ -13969,9 +8129,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00048",
"type": "ImageService3",
@@ -13981,11 +8139,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00048",
"@type": "ImageService2",
@@ -13995,45 +8151,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00048/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00049/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 49"],
- "sv": [
-
- "Bild 49"
-
- ],
-
- "en": [
-
- "Image 49"
-
- ]
-
+ "en": ["Image 49"]
},
"width": 5984,
@@ -14041,199 +8178,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00049"]}
-
+ "value": { "none": ["A0067545_00049"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00049"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00049"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00049"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00049"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9901
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9901
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00049.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00049"]},
+ "label": { "en": ["ALTO XML for A0067545_00049"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00049/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00049/annotation",
"type": "Annotation",
@@ -14241,7 +8284,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00049/full/max/0/default.jpg",
"type": "Image",
@@ -14253,9 +8295,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00049",
"type": "ImageService3",
@@ -14265,11 +8305,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00049",
"@type": "ImageService2",
@@ -14279,45 +8317,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00049/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00050/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 50"],
- "sv": [
-
- "Bild 50"
-
- ],
-
- "en": [
-
- "Image 50"
-
- ]
-
+ "en": ["Image 50"]
},
"width": 6176,
@@ -14325,199 +8344,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00050"]}
-
+ "value": { "none": ["A0067545_00050"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00050"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00050"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00050"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00050"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00050.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00050"]},
+ "label": { "en": ["ALTO XML for A0067545_00050"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00050/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00050/annotation",
"type": "Annotation",
@@ -14525,7 +8450,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00050/full/max/0/default.jpg",
"type": "Image",
@@ -14537,9 +8461,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00050",
"type": "ImageService3",
@@ -14549,11 +8471,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00050",
"@type": "ImageService2",
@@ -14563,45 +8483,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00050/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00051/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 51"],
- "sv": [
-
- "Bild 51"
-
- ],
-
- "en": [
-
- "Image 51"
-
- ]
-
+ "en": ["Image 51"]
},
"width": 6176,
@@ -14609,199 +8510,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00051"]}
-
+ "value": { "none": ["A0067545_00051"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00051"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00051"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00051"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00051"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9832
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9832
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00051.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00051"]},
+ "label": { "en": ["ALTO XML for A0067545_00051"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00051/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00051/annotation",
"type": "Annotation",
@@ -14809,7 +8616,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00051/full/max/0/default.jpg",
"type": "Image",
@@ -14821,9 +8627,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00051",
"type": "ImageService3",
@@ -14833,11 +8637,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00051",
"@type": "ImageService2",
@@ -14847,45 +8649,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00051/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00052/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 52"],
- "sv": [
-
- "Bild 52"
-
- ],
-
- "en": [
-
- "Image 52"
-
- ]
-
+ "en": ["Image 52"]
},
"width": 6016,
@@ -14893,199 +8676,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00052"]}
-
+ "value": { "none": ["A0067545_00052"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00052"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00052"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00052"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00052"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9859
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9859
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00052.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00052"]},
+ "label": { "en": ["ALTO XML for A0067545_00052"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00052/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00052/annotation",
"type": "Annotation",
@@ -15093,7 +8782,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00052/full/max/0/default.jpg",
"type": "Image",
@@ -15105,9 +8793,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00052",
"type": "ImageService3",
@@ -15117,11 +8803,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00052",
"@type": "ImageService2",
@@ -15131,45 +8815,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00052/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00053/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 53"],
- "sv": [
-
- "Bild 53"
-
- ],
-
- "en": [
-
- "Image 53"
-
- ]
-
+ "en": ["Image 53"]
},
"width": 6016,
@@ -15177,199 +8842,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00053"]}
-
+ "value": { "none": ["A0067545_00053"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00053"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00053"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00053"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00053"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00053.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00053"]},
+ "label": { "en": ["ALTO XML for A0067545_00053"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00053/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00053/annotation",
"type": "Annotation",
@@ -15377,7 +8948,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00053/full/max/0/default.jpg",
"type": "Image",
@@ -15389,9 +8959,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00053",
"type": "ImageService3",
@@ -15401,11 +8969,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00053",
"@type": "ImageService2",
@@ -15415,45 +8981,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00053/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00054/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 54"],
- "sv": [
-
- "Bild 54"
-
- ],
-
- "en": [
-
- "Image 54"
-
- ]
-
+ "en": ["Image 54"]
},
"width": 6144,
@@ -15461,199 +9008,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00054"]}
-
+ "value": { "none": ["A0067545_00054"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00054"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00054"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00054"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00054"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9915
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9915
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00054.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00054"]},
+ "label": { "en": ["ALTO XML for A0067545_00054"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00054/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00054/annotation",
"type": "Annotation",
@@ -15661,7 +9114,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00054/full/max/0/default.jpg",
"type": "Image",
@@ -15673,9 +9125,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00054",
"type": "ImageService3",
@@ -15685,11 +9135,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00054",
"@type": "ImageService2",
@@ -15699,45 +9147,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00054/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00055/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 55"],
- "sv": [
-
- "Bild 55"
-
- ],
-
- "en": [
-
- "Image 55"
-
- ]
-
+ "en": ["Image 55"]
},
"width": 6176,
@@ -15745,199 +9174,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00055"]}
-
+ "value": { "none": ["A0067545_00055"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00055"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00055"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00055"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00055"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9918
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9918
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00055.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00055"]},
+ "label": { "en": ["ALTO XML for A0067545_00055"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00055/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00055/annotation",
"type": "Annotation",
@@ -15945,7 +9280,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00055/full/max/0/default.jpg",
"type": "Image",
@@ -15957,9 +9291,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00055",
"type": "ImageService3",
@@ -15969,11 +9301,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00055",
"@type": "ImageService2",
@@ -15983,45 +9313,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00055/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00056/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 56"],
- "sv": [
-
- "Bild 56"
-
- ],
-
- "en": [
-
- "Image 56"
-
- ]
-
+ "en": ["Image 56"]
},
"width": 6112,
@@ -16029,199 +9340,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00056"]}
-
+ "value": { "none": ["A0067545_00056"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00056"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00056"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00056"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00056"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00056.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00056"]},
+ "label": { "en": ["ALTO XML for A0067545_00056"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00056/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00056/annotation",
"type": "Annotation",
@@ -16229,7 +9446,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00056/full/max/0/default.jpg",
"type": "Image",
@@ -16241,9 +9457,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00056",
"type": "ImageService3",
@@ -16253,11 +9467,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00056",
"@type": "ImageService2",
@@ -16267,45 +9479,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00056/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00057/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 57"],
- "sv": [
-
- "Bild 57"
-
- ],
-
- "en": [
-
- "Image 57"
-
- ]
-
+ "en": ["Image 57"]
},
"width": 6016,
@@ -16313,199 +9506,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00057"]}
-
+ "value": { "none": ["A0067545_00057"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00057"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00057"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00057"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00057"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9933
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9933
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00057.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00057"]},
+ "label": { "en": ["ALTO XML for A0067545_00057"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00057/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00057/annotation",
"type": "Annotation",
@@ -16513,7 +9612,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00057/full/max/0/default.jpg",
"type": "Image",
@@ -16525,9 +9623,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00057",
"type": "ImageService3",
@@ -16537,11 +9633,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00057",
"@type": "ImageService2",
@@ -16551,45 +9645,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00057/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00058/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 58"],
- "sv": [
-
- "Bild 58"
-
- ],
-
- "en": [
-
- "Image 58"
-
- ]
-
+ "en": ["Image 58"]
},
"width": 5864,
@@ -16597,199 +9672,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00058"]}
-
+ "value": { "none": ["A0067545_00058"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00058"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00058"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00058"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00058"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00058.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00058"]},
+ "label": { "en": ["ALTO XML for A0067545_00058"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00058/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00058/annotation",
"type": "Annotation",
@@ -16797,7 +9778,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00058/full/max/0/default.jpg",
"type": "Image",
@@ -16809,9 +9789,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00058",
"type": "ImageService3",
@@ -16821,11 +9799,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00058",
"@type": "ImageService2",
@@ -16835,45 +9811,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00058/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00059/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 59"],
- "sv": [
-
- "Bild 59"
-
- ],
-
- "en": [
-
- "Image 59"
-
- ]
-
+ "en": ["Image 59"]
},
"width": 6016,
@@ -16881,199 +9838,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00059"]}
-
+ "value": { "none": ["A0067545_00059"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00059"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00059"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00059"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00059"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9933
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9933
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00059.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00059"]},
+ "label": { "en": ["ALTO XML for A0067545_00059"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00059/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00059/annotation",
"type": "Annotation",
@@ -17081,7 +9944,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00059/full/max/0/default.jpg",
"type": "Image",
@@ -17093,9 +9955,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00059",
"type": "ImageService3",
@@ -17105,11 +9965,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00059",
"@type": "ImageService2",
@@ -17119,45 +9977,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00059/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00060/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 60"],
- "sv": [
-
- "Bild 60"
-
- ],
-
- "en": [
-
- "Image 60"
-
- ]
-
+ "en": ["Image 60"]
},
"width": 6016,
@@ -17165,199 +10004,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00060"]}
-
+ "value": { "none": ["A0067545_00060"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00060"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00060"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00060"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00060"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00060.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00060"]},
+ "label": { "en": ["ALTO XML for A0067545_00060"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00060/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00060/annotation",
"type": "Annotation",
@@ -17365,7 +10110,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00060/full/max/0/default.jpg",
"type": "Image",
@@ -17377,9 +10121,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00060",
"type": "ImageService3",
@@ -17389,11 +10131,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00060",
"@type": "ImageService2",
@@ -17403,45 +10143,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00060/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00061/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 61"],
- "sv": [
-
- "Bild 61"
-
- ],
-
- "en": [
-
- "Image 61"
-
- ]
-
+ "en": ["Image 61"]
},
"width": 6016,
@@ -17449,199 +10170,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00061"]}
-
+ "value": { "none": ["A0067545_00061"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00061"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00061"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00061"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00061"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9887
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9887
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00061.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00061"]},
+ "label": { "en": ["ALTO XML for A0067545_00061"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00061/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00061/annotation",
"type": "Annotation",
@@ -17649,7 +10276,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00061/full/max/0/default.jpg",
"type": "Image",
@@ -17661,9 +10287,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00061",
"type": "ImageService3",
@@ -17673,11 +10297,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00061",
"@type": "ImageService2",
@@ -17687,45 +10309,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00061/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00062/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 62"],
- "sv": [
-
- "Bild 62"
-
- ],
-
- "en": [
-
- "Image 62"
-
- ]
-
+ "en": ["Image 62"]
},
"width": 6016,
@@ -17733,199 +10336,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00062"]}
-
+ "value": { "none": ["A0067545_00062"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00062"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00062"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00062"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00062"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
- "value": {
-
- "sv": [
-
- "Texten är skapad med artificiell intelligens och kan innehålla fel."
-
- ],
-
- "en": [
-
- "The text is created with artificial intelligence and may contain errors."
-
- ]
-
- }
-
- },
-
- {
-
- "label": {
-
- "sv": [
-
- "Konfidensvärde"
-
+ "value": {
+ "sv": [
+ "Texten är skapad med artificiell intelligens och kan innehålla fel."
],
"en": [
-
- "Confidence value"
-
+ "The text is created with artificial intelligence and may contain errors."
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Konfidensvärde"],
+
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9914
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9914
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00062.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00062"]},
+ "label": { "en": ["ALTO XML for A0067545_00062"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00062/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00062/annotation",
"type": "Annotation",
@@ -17933,7 +10442,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00062/full/max/0/default.jpg",
"type": "Image",
@@ -17945,9 +10453,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00062",
"type": "ImageService3",
@@ -17957,11 +10463,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00062",
"@type": "ImageService2",
@@ -17971,45 +10475,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00062/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00063/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 63"],
- "sv": [
-
- "Bild 63"
-
- ],
-
- "en": [
-
- "Image 63"
-
- ]
-
+ "en": ["Image 63"]
},
"width": 6016,
@@ -18017,199 +10502,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00063"]}
-
+ "value": { "none": ["A0067545_00063"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00063"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00063"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00063"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00063"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9925
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9925
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00063.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00063"]},
+ "label": { "en": ["ALTO XML for A0067545_00063"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00063/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00063/annotation",
"type": "Annotation",
@@ -18217,7 +10608,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00063/full/max/0/default.jpg",
"type": "Image",
@@ -18229,9 +10619,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00063",
"type": "ImageService3",
@@ -18241,11 +10629,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00063",
"@type": "ImageService2",
@@ -18255,45 +10641,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00063/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00064/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 64"],
- "sv": [
-
- "Bild 64"
-
- ],
-
- "en": [
-
- "Image 64"
-
- ]
-
+ "en": ["Image 64"]
},
"width": 6016,
@@ -18301,199 +10668,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00064"]}
-
+ "value": { "none": ["A0067545_00064"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00064"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00064"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00064"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00064"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9915
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9915
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00064.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00064"]},
+ "label": { "en": ["ALTO XML for A0067545_00064"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00064/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00064/annotation",
"type": "Annotation",
@@ -18501,7 +10774,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00064/full/max/0/default.jpg",
"type": "Image",
@@ -18513,9 +10785,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00064",
"type": "ImageService3",
@@ -18525,11 +10795,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00064",
"@type": "ImageService2",
@@ -18539,45 +10807,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00064/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00065/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 65"],
- "sv": [
-
- "Bild 65"
-
- ],
-
- "en": [
-
- "Image 65"
-
- ]
-
+ "en": ["Image 65"]
},
"width": 6016,
@@ -18585,199 +10834,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00065"]}
-
+ "value": { "none": ["A0067545_00065"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00065"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00065"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00065"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00065"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9912
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9912
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00065.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00065"]},
+ "label": { "en": ["ALTO XML for A0067545_00065"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00065/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00065/annotation",
"type": "Annotation",
@@ -18785,7 +10940,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00065/full/max/0/default.jpg",
"type": "Image",
@@ -18797,9 +10951,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00065",
"type": "ImageService3",
@@ -18809,11 +10961,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00065",
"@type": "ImageService2",
@@ -18823,45 +10973,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00065/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00066/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 66"],
- "sv": [
-
- "Bild 66"
-
- ],
-
- "en": [
-
- "Image 66"
-
- ]
-
+ "en": ["Image 66"]
},
"width": 5984,
@@ -18869,199 +11000,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00066"]}
-
+ "value": { "none": ["A0067545_00066"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00066"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00066"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00066"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00066"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9895
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9895
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00066.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00066"]},
+ "label": { "en": ["ALTO XML for A0067545_00066"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00066/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00066/annotation",
"type": "Annotation",
@@ -19069,7 +11106,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00066/full/max/0/default.jpg",
"type": "Image",
@@ -19081,9 +11117,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00066",
"type": "ImageService3",
@@ -19093,11 +11127,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00066",
"@type": "ImageService2",
@@ -19107,45 +11139,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00066/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00067/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 67"],
- "sv": [
-
- "Bild 67"
-
- ],
-
- "en": [
-
- "Image 67"
-
- ]
-
+ "en": ["Image 67"]
},
"width": 5896,
@@ -19153,199 +11166,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00067"]}
-
+ "value": { "none": ["A0067545_00067"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00067"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00067"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00067"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00067"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9810
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9810
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00067.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00067"]},
+ "label": { "en": ["ALTO XML for A0067545_00067"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00067/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00067/annotation",
"type": "Annotation",
@@ -19353,7 +11272,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00067/full/max/0/default.jpg",
"type": "Image",
@@ -19365,9 +11283,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00067",
"type": "ImageService3",
@@ -19377,11 +11293,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00067",
"@type": "ImageService2",
@@ -19391,45 +11305,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00067/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00068/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 68"],
- "sv": [
-
- "Bild 68"
-
- ],
-
- "en": [
-
- "Image 68"
-
- ]
-
+ "en": ["Image 68"]
},
"width": 5928,
@@ -19437,199 +11332,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00068"]}
-
+ "value": { "none": ["A0067545_00068"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00068"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00068"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00068"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00068"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00068.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00068"]},
+ "label": { "en": ["ALTO XML for A0067545_00068"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00068/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00068/annotation",
"type": "Annotation",
@@ -19637,7 +11438,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00068/full/max/0/default.jpg",
"type": "Image",
@@ -19649,9 +11449,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00068",
"type": "ImageService3",
@@ -19661,11 +11459,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00068",
"@type": "ImageService2",
@@ -19675,45 +11471,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00068/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00069/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 69"],
- "sv": [
-
- "Bild 69"
-
- ],
-
- "en": [
-
- "Image 69"
-
- ]
-
+ "en": ["Image 69"]
},
"width": 5928,
@@ -19721,199 +11498,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00069"]}
-
+ "value": { "none": ["A0067545_00069"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00069"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00069"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00069"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00069"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9928
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9928
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00069.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00069"]},
+ "label": { "en": ["ALTO XML for A0067545_00069"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00069/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00069/annotation",
"type": "Annotation",
@@ -19921,7 +11604,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00069/full/max/0/default.jpg",
"type": "Image",
@@ -19933,9 +11615,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00069",
"type": "ImageService3",
@@ -19945,11 +11625,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00069",
"@type": "ImageService2",
@@ -19959,45 +11637,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00069/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00070/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 70"],
- "sv": [
-
- "Bild 70"
-
- ],
-
- "en": [
-
- "Image 70"
-
- ]
-
+ "en": ["Image 70"]
},
"width": 6016,
@@ -20005,199 +11664,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00070"]}
-
+ "value": { "none": ["A0067545_00070"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00070"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00070"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00070"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00070"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9921
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9921
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00070.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00070"]},
+ "label": { "en": ["ALTO XML for A0067545_00070"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00070/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00070/annotation",
"type": "Annotation",
@@ -20205,7 +11770,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00070/full/max/0/default.jpg",
"type": "Image",
@@ -20217,9 +11781,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00070",
"type": "ImageService3",
@@ -20229,11 +11791,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00070",
"@type": "ImageService2",
@@ -20243,45 +11803,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00070/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00071/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 71"],
- "sv": [
-
- "Bild 71"
-
- ],
-
- "en": [
-
- "Image 71"
-
- ]
-
+ "en": ["Image 71"]
},
"width": 5984,
@@ -20289,199 +11830,105 @@
"height": 5320,
"metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00071"]}
-
- },
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00071"
-
- ]
-
- }
-
+ "value": { "none": ["A0067545_00071"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "sv": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00071"
-
- ],
-
- "en": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00071"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00071"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Transkriptionsmetod"
+ "en": ["Source reference"]
+ },
+ "value": {
+ "sv": [
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00071"
],
"en": [
-
- "Transcription method"
-
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00071"
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Transkriptionsmetod"],
+
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9923
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9923
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00071.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00071"]},
+ "label": { "en": ["ALTO XML for A0067545_00071"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00071/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00071/annotation",
"type": "Annotation",
@@ -20489,7 +11936,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00071/full/max/0/default.jpg",
"type": "Image",
@@ -20501,9 +11947,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00071",
"type": "ImageService3",
@@ -20513,11 +11957,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00071",
"@type": "ImageService2",
@@ -20527,45 +11969,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00071/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00072/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 72"],
- "sv": [
-
- "Bild 72"
-
- ],
-
- "en": [
-
- "Image 72"
-
- ]
-
+ "en": ["Image 72"]
},
"width": 5984,
@@ -20573,199 +11996,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00072"]}
-
+ "value": { "none": ["A0067545_00072"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00072"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00072"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00072"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00072"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9912
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9912
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00072.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00072"]},
+ "label": { "en": ["ALTO XML for A0067545_00072"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00072/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00072/annotation",
"type": "Annotation",
@@ -20773,7 +12102,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00072/full/max/0/default.jpg",
"type": "Image",
@@ -20785,9 +12113,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00072",
"type": "ImageService3",
@@ -20797,11 +12123,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00072",
"@type": "ImageService2",
@@ -20811,45 +12135,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00072/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00073/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 73"],
- "sv": [
-
- "Bild 73"
-
- ],
-
- "en": [
-
- "Image 73"
-
- ]
-
+ "en": ["Image 73"]
},
"width": 6016,
@@ -20857,199 +12162,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00073"]}
-
+ "value": { "none": ["A0067545_00073"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00073"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00073"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00073"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00073"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9920
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9920
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00073.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00073"]},
+ "label": { "en": ["ALTO XML for A0067545_00073"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00073/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00073/annotation",
"type": "Annotation",
@@ -21057,7 +12268,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00073/full/max/0/default.jpg",
"type": "Image",
@@ -21069,9 +12279,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00073",
"type": "ImageService3",
@@ -21081,11 +12289,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00073",
"@type": "ImageService2",
@@ -21095,45 +12301,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00073/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00074/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 74"],
- "sv": [
-
- "Bild 74"
-
- ],
-
- "en": [
-
- "Image 74"
-
- ]
-
+ "en": ["Image 74"]
},
"width": 5960,
@@ -21141,199 +12328,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00074"]}
-
+ "value": { "none": ["A0067545_00074"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00074"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00074"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00074"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00074"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00074.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00074"]},
+ "label": { "en": ["ALTO XML for A0067545_00074"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00074/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00074/annotation",
"type": "Annotation",
@@ -21341,7 +12434,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00074/full/max/0/default.jpg",
"type": "Image",
@@ -21353,9 +12445,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00074",
"type": "ImageService3",
@@ -21365,11 +12455,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00074",
"@type": "ImageService2",
@@ -21379,45 +12467,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00074/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00075/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 75"],
- "sv": [
-
- "Bild 75"
-
- ],
-
- "en": [
-
- "Image 75"
-
- ]
-
+ "en": ["Image 75"]
},
"width": 6016,
@@ -21425,199 +12494,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00075"]}
-
+ "value": { "none": ["A0067545_00075"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00075"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00075"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00075"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00075"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00075.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00075"]},
+ "label": { "en": ["ALTO XML for A0067545_00075"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00075/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00075/annotation",
"type": "Annotation",
@@ -21625,7 +12600,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00075/full/max/0/default.jpg",
"type": "Image",
@@ -21637,9 +12611,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00075",
"type": "ImageService3",
@@ -21649,11 +12621,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00075",
"@type": "ImageService2",
@@ -21663,45 +12633,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00075/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00076/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 76"],
- "sv": [
-
- "Bild 76"
-
- ],
-
- "en": [
-
- "Image 76"
-
- ]
-
+ "en": ["Image 76"]
},
"width": 6016,
@@ -21709,199 +12660,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00076"]}
-
+ "value": { "none": ["A0067545_00076"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00076"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00076"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00076"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00076"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00076.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00076"]},
+ "label": { "en": ["ALTO XML for A0067545_00076"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00076/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00076/annotation",
"type": "Annotation",
@@ -21909,7 +12766,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00076/full/max/0/default.jpg",
"type": "Image",
@@ -21921,9 +12777,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00076",
"type": "ImageService3",
@@ -21933,11 +12787,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00076",
"@type": "ImageService2",
@@ -21947,45 +12799,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00076/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00077/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 77"],
- "sv": [
-
- "Bild 77"
-
- ],
-
- "en": [
-
- "Image 77"
-
- ]
-
+ "en": ["Image 77"]
},
"width": 5984,
@@ -21993,199 +12826,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00077"]}
-
+ "value": { "none": ["A0067545_00077"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00077"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00077"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00077"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00077"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9926
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9926
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00077.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00077"]},
+ "label": { "en": ["ALTO XML for A0067545_00077"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00077/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00077/annotation",
"type": "Annotation",
@@ -22193,7 +12932,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00077/full/max/0/default.jpg",
"type": "Image",
@@ -22205,9 +12943,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00077",
"type": "ImageService3",
@@ -22217,11 +12953,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00077",
"@type": "ImageService2",
@@ -22231,45 +12965,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00077/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00078/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 78"],
- "sv": [
-
- "Bild 78"
-
- ],
-
- "en": [
-
- "Image 78"
-
- ]
-
+ "en": ["Image 78"]
},
"width": 6016,
@@ -22277,199 +12992,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00078"]}
-
+ "value": { "none": ["A0067545_00078"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00078"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00078"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00078"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00078"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9918
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9918
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00078.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00078"]},
+ "label": { "en": ["ALTO XML for A0067545_00078"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00078/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00078/annotation",
"type": "Annotation",
@@ -22477,7 +13098,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00078/full/max/0/default.jpg",
"type": "Image",
@@ -22489,9 +13109,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00078",
"type": "ImageService3",
@@ -22501,11 +13119,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00078",
"@type": "ImageService2",
@@ -22515,45 +13131,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00078/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00079/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 79"],
- "sv": [
-
- "Bild 79"
-
- ],
-
- "en": [
-
- "Image 79"
-
- ]
-
+ "en": ["Image 79"]
},
"width": 6016,
@@ -22561,199 +13158,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00079"]}
-
+ "value": { "none": ["A0067545_00079"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00079"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00079"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00079"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00079"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9921
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9921
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00079.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00079"]},
+ "label": { "en": ["ALTO XML for A0067545_00079"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00079/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00079/annotation",
"type": "Annotation",
@@ -22761,7 +13264,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00079/full/max/0/default.jpg",
"type": "Image",
@@ -22773,9 +13275,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00079",
"type": "ImageService3",
@@ -22785,11 +13285,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00079",
"@type": "ImageService2",
@@ -22799,45 +13297,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00079/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00080/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 80"],
- "sv": [
-
- "Bild 80"
-
- ],
-
- "en": [
-
- "Image 80"
-
- ]
-
+ "en": ["Image 80"]
},
"width": 6016,
@@ -22845,199 +13324,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00080"]}
-
+ "value": { "none": ["A0067545_00080"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00080"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00080"]
}
-
},
- {
-
- "label": {
-
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
+ {
+ "label": {
+ "sv": ["Källhänvisning"],
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00080"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00080"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9915
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9915
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00080.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00080"]},
+ "label": { "en": ["ALTO XML for A0067545_00080"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00080/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00080/annotation",
"type": "Annotation",
@@ -23045,7 +13430,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00080/full/max/0/default.jpg",
"type": "Image",
@@ -23057,9 +13441,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00080",
"type": "ImageService3",
@@ -23069,11 +13451,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00080",
"@type": "ImageService2",
@@ -23083,45 +13463,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00080/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00081/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 81"],
- "sv": [
-
- "Bild 81"
-
- ],
-
- "en": [
-
- "Image 81"
-
- ]
-
+ "en": ["Image 81"]
},
"width": 6016,
@@ -23129,199 +13490,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00081"]}
-
+ "value": { "none": ["A0067545_00081"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00081"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00081"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00081"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00081"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9903
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9903
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00081.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00081"]},
+ "label": { "en": ["ALTO XML for A0067545_00081"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00081/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00081/annotation",
"type": "Annotation",
@@ -23329,7 +13596,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00081/full/max/0/default.jpg",
"type": "Image",
@@ -23341,9 +13607,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00081",
"type": "ImageService3",
@@ -23353,11 +13617,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00081",
"@type": "ImageService2",
@@ -23367,45 +13629,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00081/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00082/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 82"],
- "sv": [
-
- "Bild 82"
-
- ],
-
- "en": [
-
- "Image 82"
-
- ]
-
+ "en": ["Image 82"]
},
"width": 5984,
@@ -23413,199 +13656,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00082"]}
-
+ "value": { "none": ["A0067545_00082"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00082"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00082"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00082"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00082"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9790
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9790
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00082.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00082"]},
+ "label": { "en": ["ALTO XML for A0067545_00082"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00082/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00082/annotation",
"type": "Annotation",
@@ -23613,7 +13762,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00082/full/max/0/default.jpg",
"type": "Image",
@@ -23625,9 +13773,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00082",
"type": "ImageService3",
@@ -23637,11 +13783,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00082",
"@type": "ImageService2",
@@ -23651,45 +13795,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00082/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00083/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 83"],
- "sv": [
-
- "Bild 83"
-
- ],
-
- "en": [
-
- "Image 83"
-
- ]
-
+ "en": ["Image 83"]
},
"width": 5984,
@@ -23697,199 +13822,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00083"]}
-
+ "value": { "none": ["A0067545_00083"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00083"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00083"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00083"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00083"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9802
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9802
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00083.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00083"]},
+ "label": { "en": ["ALTO XML for A0067545_00083"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00083/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00083/annotation",
"type": "Annotation",
@@ -23897,7 +13928,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00083/full/max/0/default.jpg",
"type": "Image",
@@ -23909,9 +13939,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00083",
"type": "ImageService3",
@@ -23921,11 +13949,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00083",
"@type": "ImageService2",
@@ -23935,45 +13961,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00083/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00084/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 84"],
- "sv": [
-
- "Bild 84"
-
- ],
-
- "en": [
-
- "Image 84"
-
- ]
-
+ "en": ["Image 84"]
},
"width": 6112,
@@ -23981,199 +13988,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00084"]}
-
+ "value": { "none": ["A0067545_00084"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00084"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00084"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00084"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00084"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00084.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00084"]},
+ "label": { "en": ["ALTO XML for A0067545_00084"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00084/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00084/annotation",
"type": "Annotation",
@@ -24181,7 +14094,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00084/full/max/0/default.jpg",
"type": "Image",
@@ -24193,9 +14105,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00084",
"type": "ImageService3",
@@ -24205,11 +14115,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00084",
"@type": "ImageService2",
@@ -24219,45 +14127,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00084/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00085/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 85"],
- "sv": [
-
- "Bild 85"
-
- ],
-
- "en": [
-
- "Image 85"
-
- ]
-
+ "en": ["Image 85"]
},
"width": 6080,
@@ -24265,199 +14154,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00085"]}
-
+ "value": { "none": ["A0067545_00085"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00085"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00085"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00085"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00085"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9814
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9814
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00085.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00085"]},
+ "label": { "en": ["ALTO XML for A0067545_00085"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00085/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00085/annotation",
"type": "Annotation",
@@ -24465,7 +14260,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00085/full/max/0/default.jpg",
"type": "Image",
@@ -24477,9 +14271,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00085",
"type": "ImageService3",
@@ -24489,11 +14281,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00085",
"@type": "ImageService2",
@@ -24503,45 +14293,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00085/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00086/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 86"],
- "sv": [
-
- "Bild 86"
-
- ],
-
- "en": [
-
- "Image 86"
-
- ]
-
+ "en": ["Image 86"]
},
"width": 6016,
@@ -24549,199 +14320,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00086"]}
-
+ "value": { "none": ["A0067545_00086"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00086"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00086"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00086"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00086"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00086.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00086"]},
+ "label": { "en": ["ALTO XML for A0067545_00086"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00086/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00086/annotation",
"type": "Annotation",
@@ -24749,7 +14426,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00086/full/max/0/default.jpg",
"type": "Image",
@@ -24761,9 +14437,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00086",
"type": "ImageService3",
@@ -24773,11 +14447,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00086",
"@type": "ImageService2",
@@ -24787,45 +14459,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00086/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00087/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 87"],
- "sv": [
-
- "Bild 87"
-
- ],
-
- "en": [
-
- "Image 87"
-
- ]
-
+ "en": ["Image 87"]
},
"width": 6016,
@@ -24833,199 +14486,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00087"]}
-
+ "value": { "none": ["A0067545_00087"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00087"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00087"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00087"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00087"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00087.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00087"]},
+ "label": { "en": ["ALTO XML for A0067545_00087"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00087/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00087/annotation",
"type": "Annotation",
@@ -25033,7 +14592,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00087/full/max/0/default.jpg",
"type": "Image",
@@ -25045,9 +14603,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00087",
"type": "ImageService3",
@@ -25057,11 +14613,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00087",
"@type": "ImageService2",
@@ -25071,45 +14625,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00087/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00088/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 88"],
- "sv": [
-
- "Bild 88"
-
- ],
-
- "en": [
-
- "Image 88"
-
- ]
-
+ "en": ["Image 88"]
},
"width": 5984,
@@ -25117,199 +14652,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00088"]}
-
+ "value": { "none": ["A0067545_00088"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00088"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00088"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00088"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00088"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9930
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9930
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00088.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00088"]},
+ "label": { "en": ["ALTO XML for A0067545_00088"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00088/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00088/annotation",
"type": "Annotation",
@@ -25317,7 +14758,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00088/full/max/0/default.jpg",
"type": "Image",
@@ -25329,9 +14769,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00088",
"type": "ImageService3",
@@ -25341,11 +14779,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00088",
"@type": "ImageService2",
@@ -25355,245 +14791,132 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00088/canvas"
-
}
-
]
-
}
-
]
-
},
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00089/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 89"
-
- ],
-
- "en": [
-
- "Image 89"
-
- ]
-
- },
-
- "width": 6112,
-
- "height": 5288,
-
- "metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00089"]}
-
- },
-
- {
-
- "label": {
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00089/canvas",
- "sv": [
+ "type": "Canvas",
- "Länk"
+ "label": {
+ "sv": ["Bild 89"],
- ],
+ "en": ["Image 89"]
+ },
- "en": [
+ "width": 6112,
- "Link"
+ "height": 5288,
- ]
+ "metadata": [
+ {
+ "label": {
+ "sv": ["Bildid"],
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
+ "value": { "none": ["A0067545_00089"] }
+ },
- "https://sok.riksarkivet.se/bildvisning/A0067545_00089"
+ {
+ "label": {
+ "sv": ["Länk"],
- ]
+ "en": ["Link"]
+ },
+ "value": {
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00089"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00089"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00089"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00089.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00089"]},
+ "label": { "en": ["ALTO XML for A0067545_00089"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00089/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00089/annotation",
"type": "Annotation",
@@ -25601,7 +14924,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00089/full/max/0/default.jpg",
"type": "Image",
@@ -25613,9 +14935,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00089",
"type": "ImageService3",
@@ -25625,11 +14945,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00089",
"@type": "ImageService2",
@@ -25639,45 +14957,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00089/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00090/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 90"],
- "sv": [
-
- "Bild 90"
-
- ],
-
- "en": [
-
- "Image 90"
-
- ]
-
+ "en": ["Image 90"]
},
"width": 6016,
@@ -25685,199 +14984,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00090"]}
-
+ "value": { "none": ["A0067545_00090"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00090"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00090"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00090"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00090"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00090.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00090"]},
+ "label": { "en": ["ALTO XML for A0067545_00090"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00090/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00090/annotation",
"type": "Annotation",
@@ -25885,7 +15090,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00090/full/max/0/default.jpg",
"type": "Image",
@@ -25897,9 +15101,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00090",
"type": "ImageService3",
@@ -25909,11 +15111,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00090",
"@type": "ImageService2",
@@ -25923,45 +15123,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00090/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00091/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 91"],
- "sv": [
-
- "Bild 91"
-
- ],
-
- "en": [
-
- "Image 91"
-
- ]
-
+ "en": ["Image 91"]
},
"width": 6016,
@@ -25969,199 +15150,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00091"]}
-
+ "value": { "none": ["A0067545_00091"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00091"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00091"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00091"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00091"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00091.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00091"]},
+ "label": { "en": ["ALTO XML for A0067545_00091"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00091/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00091/annotation",
"type": "Annotation",
@@ -26169,7 +15256,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00091/full/max/0/default.jpg",
"type": "Image",
@@ -26181,9 +15267,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00091",
"type": "ImageService3",
@@ -26193,11 +15277,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00091",
"@type": "ImageService2",
@@ -26207,45 +15289,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00091/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00092/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 92"],
- "sv": [
-
- "Bild 92"
-
- ],
-
- "en": [
-
- "Image 92"
-
- ]
-
+ "en": ["Image 92"]
},
"width": 6016,
@@ -26253,199 +15316,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00092"]}
-
+ "value": { "none": ["A0067545_00092"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00092"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00092"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00092"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00092"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00092.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00092"]},
+ "label": { "en": ["ALTO XML for A0067545_00092"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00092/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00092/annotation",
"type": "Annotation",
@@ -26453,7 +15422,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00092/full/max/0/default.jpg",
"type": "Image",
@@ -26465,9 +15433,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00092",
"type": "ImageService3",
@@ -26477,11 +15443,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00092",
"@type": "ImageService2",
@@ -26491,45 +15455,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00092/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00093/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 93"],
- "sv": [
-
- "Bild 93"
-
- ],
-
- "en": [
-
- "Image 93"
-
- ]
-
+ "en": ["Image 93"]
},
"width": 6016,
@@ -26537,199 +15482,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00093"]}
-
+ "value": { "none": ["A0067545_00093"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00093"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00093"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00093"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00093"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9911
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9911
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00093.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00093"]},
+ "label": { "en": ["ALTO XML for A0067545_00093"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00093/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00093/annotation",
"type": "Annotation",
@@ -26737,7 +15588,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00093/full/max/0/default.jpg",
"type": "Image",
@@ -26749,9 +15599,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00093",
"type": "ImageService3",
@@ -26761,11 +15609,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00093",
"@type": "ImageService2",
@@ -26775,45 +15621,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00093/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00094/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 94"],
- "sv": [
-
- "Bild 94"
-
- ],
-
- "en": [
-
- "Image 94"
-
- ]
-
+ "en": ["Image 94"]
},
"width": 6016,
@@ -26821,199 +15648,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00094"]}
-
+ "value": { "none": ["A0067545_00094"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00094"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00094"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00094"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00094"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9789
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9789
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00094.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00094"]},
+ "label": { "en": ["ALTO XML for A0067545_00094"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00094/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00094/annotation",
"type": "Annotation",
@@ -27021,7 +15754,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00094/full/max/0/default.jpg",
"type": "Image",
@@ -27033,9 +15765,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00094",
"type": "ImageService3",
@@ -27045,11 +15775,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00094",
"@type": "ImageService2",
@@ -27059,45 +15787,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00094/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00095/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 95"],
- "sv": [
-
- "Bild 95"
-
- ],
-
- "en": [
-
- "Image 95"
-
- ]
-
+ "en": ["Image 95"]
},
"width": 6016,
@@ -27105,199 +15814,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00095"]}
-
+ "value": { "none": ["A0067545_00095"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00095"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00095"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00095"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00095"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9919
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9919
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00095.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00095"]},
+ "label": { "en": ["ALTO XML for A0067545_00095"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00095/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00095/annotation",
"type": "Annotation",
@@ -27305,7 +15920,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00095/full/max/0/default.jpg",
"type": "Image",
@@ -27317,9 +15931,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00095",
"type": "ImageService3",
@@ -27329,11 +15941,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00095",
"@type": "ImageService2",
@@ -27343,45 +15953,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00095/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00096/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 96"],
- "sv": [
-
- "Bild 96"
-
- ],
-
- "en": [
-
- "Image 96"
-
- ]
-
+ "en": ["Image 96"]
},
"width": 5896,
@@ -27389,199 +15980,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00096"]}
-
+ "value": { "none": ["A0067545_00096"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00096"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00096"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00096"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00096"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00096.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00096"]},
+ "label": { "en": ["ALTO XML for A0067545_00096"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00096/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00096/annotation",
"type": "Annotation",
@@ -27589,7 +16086,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00096/full/max/0/default.jpg",
"type": "Image",
@@ -27601,9 +16097,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00096",
"type": "ImageService3",
@@ -27613,11 +16107,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00096",
"@type": "ImageService2",
@@ -27627,45 +16119,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00096/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00097/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 97"],
- "sv": [
-
- "Bild 97"
-
- ],
-
- "en": [
-
- "Image 97"
-
- ]
-
+ "en": ["Image 97"]
},
"width": 5928,
@@ -27673,199 +16146,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00097"]}
-
+ "value": { "none": ["A0067545_00097"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00097"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00097"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00097"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00097"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00097.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00097"]},
+ "label": { "en": ["ALTO XML for A0067545_00097"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00097/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00097/annotation",
"type": "Annotation",
@@ -27873,7 +16252,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00097/full/max/0/default.jpg",
"type": "Image",
@@ -27885,9 +16263,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00097",
"type": "ImageService3",
@@ -27897,11 +16273,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00097",
"@type": "ImageService2",
@@ -27911,45 +16285,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00097/canvas"
-
}
-
]
-
}
-
]
+ },
- },
-
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00098/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 98"
-
- ],
-
- "en": [
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00098/canvas",
- "Image 98"
+ "type": "Canvas",
- ]
+ "label": {
+ "sv": ["Bild 98"],
+ "en": ["Image 98"]
},
"width": 5896,
@@ -27957,199 +16312,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00098"]}
-
+ "value": { "none": ["A0067545_00098"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00098"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00098"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00098"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00098"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00098.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00098"]},
+ "label": { "en": ["ALTO XML for A0067545_00098"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00098/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00098/annotation",
"type": "Annotation",
@@ -28157,7 +16418,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00098/full/max/0/default.jpg",
"type": "Image",
@@ -28169,9 +16429,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00098",
"type": "ImageService3",
@@ -28181,11 +16439,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00098",
"@type": "ImageService2",
@@ -28195,45 +16451,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00098/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00099/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 99"],
- "sv": [
-
- "Bild 99"
-
- ],
-
- "en": [
-
- "Image 99"
-
- ]
-
+ "en": ["Image 99"]
},
"width": 5984,
@@ -28241,199 +16478,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00099"]}
-
+ "value": { "none": ["A0067545_00099"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00099"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00099"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00099"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00099"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00099.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00099"]},
+ "label": { "en": ["ALTO XML for A0067545_00099"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00099/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00099/annotation",
"type": "Annotation",
@@ -28441,7 +16584,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00099/full/max/0/default.jpg",
"type": "Image",
@@ -28453,9 +16595,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00099",
"type": "ImageService3",
@@ -28465,11 +16605,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00099",
"@type": "ImageService2",
@@ -28479,45 +16617,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00099/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00100/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 100"],
- "sv": [
-
- "Bild 100"
-
- ],
-
- "en": [
-
- "Image 100"
-
- ]
-
+ "en": ["Image 100"]
},
"width": 6016,
@@ -28525,199 +16644,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00100"]}
-
+ "value": { "none": ["A0067545_00100"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00100"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00100"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00100"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00100"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00100.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00100"]},
+ "label": { "en": ["ALTO XML for A0067545_00100"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00100/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00100/annotation",
"type": "Annotation",
@@ -28725,7 +16750,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00100/full/max/0/default.jpg",
"type": "Image",
@@ -28737,9 +16761,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00100",
"type": "ImageService3",
@@ -28749,11 +16771,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00100",
"@type": "ImageService2",
@@ -28763,45 +16783,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00100/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00101/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 101"],
- "sv": [
-
- "Bild 101"
-
- ],
-
- "en": [
-
- "Image 101"
-
- ]
-
+ "en": ["Image 101"]
},
"width": 6016,
@@ -28809,199 +16810,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00101"]}
-
+ "value": { "none": ["A0067545_00101"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00101"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00101"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00101"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00101"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9956
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9956
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00101.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00101"]},
+ "label": { "en": ["ALTO XML for A0067545_00101"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00101/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00101/annotation",
"type": "Annotation",
@@ -29009,7 +16916,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00101/full/max/0/default.jpg",
"type": "Image",
@@ -29021,9 +16927,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00101",
"type": "ImageService3",
@@ -29033,11 +16937,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00101",
"@type": "ImageService2",
@@ -29047,45 +16949,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00101/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00102/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 102"],
- "sv": [
-
- "Bild 102"
-
- ],
-
- "en": [
-
- "Image 102"
-
- ]
-
+ "en": ["Image 102"]
},
"width": 6016,
@@ -29093,199 +16976,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00102"]}
-
+ "value": { "none": ["A0067545_00102"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00102"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00102"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00102"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00102"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00102.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00102"]},
+ "label": { "en": ["ALTO XML for A0067545_00102"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00102/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00102/annotation",
"type": "Annotation",
@@ -29293,7 +17082,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00102/full/max/0/default.jpg",
"type": "Image",
@@ -29305,9 +17093,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00102",
"type": "ImageService3",
@@ -29317,11 +17103,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00102",
"@type": "ImageService2",
@@ -29331,45 +17115,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00102/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00103/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 103"],
- "sv": [
-
- "Bild 103"
-
- ],
-
- "en": [
-
- "Image 103"
-
- ]
-
+ "en": ["Image 103"]
},
"width": 6016,
@@ -29377,199 +17142,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00103"]}
-
+ "value": { "none": ["A0067545_00103"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00103"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00103"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00103"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00103"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00103.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00103"]},
+ "label": { "en": ["ALTO XML for A0067545_00103"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00103/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00103/annotation",
"type": "Annotation",
@@ -29577,7 +17248,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00103/full/max/0/default.jpg",
"type": "Image",
@@ -29589,9 +17259,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00103",
"type": "ImageService3",
@@ -29601,11 +17269,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00103",
"@type": "ImageService2",
@@ -29615,45 +17281,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00103/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00104/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 104"],
- "sv": [
-
- "Bild 104"
-
- ],
-
- "en": [
-
- "Image 104"
-
- ]
-
+ "en": ["Image 104"]
},
"width": 6016,
@@ -29661,199 +17308,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00104"]}
-
+ "value": { "none": ["A0067545_00104"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00104"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00104"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00104"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00104"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00104.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00104"]},
+ "label": { "en": ["ALTO XML for A0067545_00104"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00104/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00104/annotation",
"type": "Annotation",
@@ -29861,7 +17414,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00104/full/max/0/default.jpg",
"type": "Image",
@@ -29873,9 +17425,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00104",
"type": "ImageService3",
@@ -29885,11 +17435,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00104",
"@type": "ImageService2",
@@ -29899,45 +17447,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00104/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00105/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 105"],
- "sv": [
-
- "Bild 105"
-
- ],
-
- "en": [
-
- "Image 105"
-
- ]
-
+ "en": ["Image 105"]
},
"width": 6016,
@@ -29945,199 +17474,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00105"]}
-
+ "value": { "none": ["A0067545_00105"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00105"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00105"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00105"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00105"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00105.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00105"]},
+ "label": { "en": ["ALTO XML for A0067545_00105"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00105/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00105/annotation",
"type": "Annotation",
@@ -30145,7 +17580,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00105/full/max/0/default.jpg",
"type": "Image",
@@ -30157,9 +17591,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00105",
"type": "ImageService3",
@@ -30169,11 +17601,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00105",
"@type": "ImageService2",
@@ -30183,45 +17613,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00105/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00106/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 106"],
- "sv": [
-
- "Bild 106"
-
- ],
-
- "en": [
-
- "Image 106"
-
- ]
-
+ "en": ["Image 106"]
},
"width": 6016,
@@ -30229,199 +17640,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00106"]}
-
+ "value": { "none": ["A0067545_00106"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00106"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00106"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00106"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00106"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00106.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00106"]},
+ "label": { "en": ["ALTO XML for A0067545_00106"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00106/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00106/annotation",
"type": "Annotation",
@@ -30429,7 +17746,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00106/full/max/0/default.jpg",
"type": "Image",
@@ -30441,9 +17757,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00106",
"type": "ImageService3",
@@ -30453,11 +17767,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00106",
"@type": "ImageService2",
@@ -30467,45 +17779,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00106/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00107/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 107"],
- "sv": [
-
- "Bild 107"
-
- ],
-
- "en": [
-
- "Image 107"
-
- ]
-
+ "en": ["Image 107"]
},
"width": 6176,
@@ -30513,199 +17806,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00107"]}
-
+ "value": { "none": ["A0067545_00107"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00107"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00107"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00107"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00107"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00107.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00107"]},
+ "label": { "en": ["ALTO XML for A0067545_00107"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00107/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00107/annotation",
"type": "Annotation",
@@ -30713,7 +17912,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00107/full/max/0/default.jpg",
"type": "Image",
@@ -30725,9 +17923,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00107",
"type": "ImageService3",
@@ -30737,11 +17933,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00107",
"@type": "ImageService2",
@@ -30751,45 +17945,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00107/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00108/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 108"],
- "sv": [
-
- "Bild 108"
-
- ],
-
- "en": [
-
- "Image 108"
-
- ]
-
+ "en": ["Image 108"]
},
"width": 6016,
@@ -30797,199 +17972,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00108"]}
-
+ "value": { "none": ["A0067545_00108"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00108"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00108"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00108"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00108"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00108.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00108"]},
+ "label": { "en": ["ALTO XML for A0067545_00108"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00108/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00108/annotation",
"type": "Annotation",
@@ -30997,7 +18078,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00108/full/max/0/default.jpg",
"type": "Image",
@@ -31009,9 +18089,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00108",
"type": "ImageService3",
@@ -31021,11 +18099,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00108",
"@type": "ImageService2",
@@ -31035,45 +18111,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00108/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00109/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 109"],
- "sv": [
-
- "Bild 109"
-
- ],
-
- "en": [
-
- "Image 109"
-
- ]
-
+ "en": ["Image 109"]
},
"width": 6080,
@@ -31081,199 +18138,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00109"]}
-
+ "value": { "none": ["A0067545_00109"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00109"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00109"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00109"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00109"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9854
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9854
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00109.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00109"]},
+ "label": { "en": ["ALTO XML for A0067545_00109"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00109/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00109/annotation",
"type": "Annotation",
@@ -31281,7 +18244,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00109/full/max/0/default.jpg",
"type": "Image",
@@ -31293,9 +18255,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00109",
"type": "ImageService3",
@@ -31305,11 +18265,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00109",
"@type": "ImageService2",
@@ -31319,45 +18277,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00109/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00110/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 110"],
- "sv": [
-
- "Bild 110"
-
- ],
-
- "en": [
-
- "Image 110"
-
- ]
-
+ "en": ["Image 110"]
},
"width": 6016,
@@ -31365,199 +18304,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00110"]}
-
+ "value": { "none": ["A0067545_00110"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00110"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00110"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00110"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00110"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9903
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9903
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00110.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00110"]},
+ "label": { "en": ["ALTO XML for A0067545_00110"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00110/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00110/annotation",
"type": "Annotation",
@@ -31565,7 +18410,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00110/full/max/0/default.jpg",
"type": "Image",
@@ -31577,9 +18421,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00110",
"type": "ImageService3",
@@ -31589,11 +18431,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00110",
"@type": "ImageService2",
@@ -31603,45 +18443,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00110/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00111/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 111"],
- "sv": [
-
- "Bild 111"
-
- ],
-
- "en": [
-
- "Image 111"
-
- ]
-
+ "en": ["Image 111"]
},
"width": 6016,
@@ -31649,199 +18470,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00111"]}
-
+ "value": { "none": ["A0067545_00111"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00111"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00111"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00111"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00111"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9965
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9965
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00111.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00111"]},
+ "label": { "en": ["ALTO XML for A0067545_00111"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00111/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00111/annotation",
"type": "Annotation",
@@ -31849,7 +18576,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00111/full/max/0/default.jpg",
"type": "Image",
@@ -31861,9 +18587,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00111",
"type": "ImageService3",
@@ -31873,11 +18597,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00111",
"@type": "ImageService2",
@@ -31887,45 +18609,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00111/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00112/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 112"],
- "sv": [
-
- "Bild 112"
-
- ],
-
- "en": [
-
- "Image 112"
-
- ]
-
+ "en": ["Image 112"]
},
"width": 6016,
@@ -31933,199 +18636,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00112"]}
-
+ "value": { "none": ["A0067545_00112"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00112"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00112"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00112"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00112"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00112.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00112"]},
+ "label": { "en": ["ALTO XML for A0067545_00112"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00112/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00112/annotation",
"type": "Annotation",
@@ -32133,7 +18742,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00112/full/max/0/default.jpg",
"type": "Image",
@@ -32145,9 +18753,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00112",
"type": "ImageService3",
@@ -32157,11 +18763,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00112",
"@type": "ImageService2",
@@ -32171,45 +18775,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00112/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00113/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 113"],
- "sv": [
-
- "Bild 113"
-
- ],
-
- "en": [
-
- "Image 113"
-
- ]
-
+ "en": ["Image 113"]
},
"width": 6016,
@@ -32217,199 +18802,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00113"]}
-
+ "value": { "none": ["A0067545_00113"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00113"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00113"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00113"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00113"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00113.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00113"]},
+ "label": { "en": ["ALTO XML for A0067545_00113"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00113/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00113/annotation",
"type": "Annotation",
@@ -32417,7 +18908,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00113/full/max/0/default.jpg",
"type": "Image",
@@ -32429,9 +18919,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00113",
"type": "ImageService3",
@@ -32441,11 +18929,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00113",
"@type": "ImageService2",
@@ -32455,45 +18941,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00113/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00114/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 114"],
- "sv": [
-
- "Bild 114"
-
- ],
-
- "en": [
-
- "Image 114"
-
- ]
-
+ "en": ["Image 114"]
},
"width": 5984,
@@ -32501,199 +18968,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00114"]}
-
+ "value": { "none": ["A0067545_00114"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00114"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00114"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00114"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00114"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00114.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00114"]},
+ "label": { "en": ["ALTO XML for A0067545_00114"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00114/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00114/annotation",
"type": "Annotation",
@@ -32701,7 +19074,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00114/full/max/0/default.jpg",
"type": "Image",
@@ -32713,9 +19085,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00114",
"type": "ImageService3",
@@ -32725,11 +19095,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00114",
"@type": "ImageService2",
@@ -32739,45 +19107,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00114/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00115/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 115"],
- "sv": [
-
- "Bild 115"
-
- ],
-
- "en": [
-
- "Image 115"
-
- ]
-
+ "en": ["Image 115"]
},
"width": 5984,
@@ -32785,199 +19134,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00115"]}
-
+ "value": { "none": ["A0067545_00115"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00115"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00115"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00115"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00115"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00115.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00115"]},
+ "label": { "en": ["ALTO XML for A0067545_00115"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00115/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00115/annotation",
"type": "Annotation",
@@ -32985,7 +19240,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00115/full/max/0/default.jpg",
"type": "Image",
@@ -32997,9 +19251,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00115",
"type": "ImageService3",
@@ -33009,11 +19261,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00115",
"@type": "ImageService2",
@@ -33023,45 +19273,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00115/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00116/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 116"],
- "sv": [
-
- "Bild 116"
-
- ],
-
- "en": [
-
- "Image 116"
-
- ]
-
+ "en": ["Image 116"]
},
"width": 5896,
@@ -33069,199 +19300,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00116"]}
-
+ "value": { "none": ["A0067545_00116"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00116"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00116"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00116"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00116"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00116.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00116"]},
+ "label": { "en": ["ALTO XML for A0067545_00116"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00116/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00116/annotation",
"type": "Annotation",
@@ -33269,7 +19406,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00116/full/max/0/default.jpg",
"type": "Image",
@@ -33281,9 +19417,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00116",
"type": "ImageService3",
@@ -33293,11 +19427,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00116",
"@type": "ImageService2",
@@ -33307,45 +19439,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00116/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00117/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 117"],
- "sv": [
-
- "Bild 117"
-
- ],
-
- "en": [
-
- "Image 117"
-
- ]
-
+ "en": ["Image 117"]
},
"width": 6016,
@@ -33353,199 +19466,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00117"]}
-
+ "value": { "none": ["A0067545_00117"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00117"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00117"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00117"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00117"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00117.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00117"]},
+ "label": { "en": ["ALTO XML for A0067545_00117"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00117/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00117/annotation",
"type": "Annotation",
@@ -33553,7 +19572,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00117/full/max/0/default.jpg",
"type": "Image",
@@ -33565,9 +19583,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00117",
"type": "ImageService3",
@@ -33577,11 +19593,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00117",
"@type": "ImageService2",
@@ -33591,45 +19605,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00117/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00118/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 118"],
- "sv": [
-
- "Bild 118"
-
- ],
-
- "en": [
-
- "Image 118"
-
- ]
-
+ "en": ["Image 118"]
},
"width": 6016,
@@ -33637,199 +19632,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00118"]}
-
+ "value": { "none": ["A0067545_00118"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00118"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00118"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00118"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00118"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00118.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00118"]},
+ "label": { "en": ["ALTO XML for A0067545_00118"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00118/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00118/annotation",
"type": "Annotation",
@@ -33837,7 +19738,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00118/full/max/0/default.jpg",
"type": "Image",
@@ -33849,9 +19749,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00118",
"type": "ImageService3",
@@ -33861,11 +19759,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00118",
"@type": "ImageService2",
@@ -33875,45 +19771,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00118/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00119/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 119"],
- "sv": [
-
- "Bild 119"
-
- ],
-
- "en": [
-
- "Image 119"
-
- ]
-
+ "en": ["Image 119"]
},
"width": 6016,
@@ -33921,199 +19798,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00119"]}
-
+ "value": { "none": ["A0067545_00119"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00119"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00119"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00119"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00119"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9964
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9964
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00119.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00119"]},
+ "label": { "en": ["ALTO XML for A0067545_00119"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00119/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00119/annotation",
"type": "Annotation",
@@ -34121,7 +19904,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00119/full/max/0/default.jpg",
"type": "Image",
@@ -34133,9 +19915,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00119",
"type": "ImageService3",
@@ -34145,11 +19925,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00119",
"@type": "ImageService2",
@@ -34159,45 +19937,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00119/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00120/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 120"],
- "sv": [
-
- "Bild 120"
-
- ],
-
- "en": [
-
- "Image 120"
-
- ]
-
+ "en": ["Image 120"]
},
"width": 6176,
@@ -34205,199 +19964,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00120"]}
-
+ "value": { "none": ["A0067545_00120"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00120"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00120"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00120"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00120"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00120.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00120"]},
+ "label": { "en": ["ALTO XML for A0067545_00120"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00120/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00120/annotation",
"type": "Annotation",
@@ -34405,7 +20070,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00120/full/max/0/default.jpg",
"type": "Image",
@@ -34417,9 +20081,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00120",
"type": "ImageService3",
@@ -34429,11 +20091,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00120",
"@type": "ImageService2",
@@ -34443,45 +20103,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00120/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00121/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 121"],
- "sv": [
-
- "Bild 121"
-
- ],
-
- "en": [
-
- "Image 121"
-
- ]
-
+ "en": ["Image 121"]
},
"width": 5992,
@@ -34489,199 +20130,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00121"]}
-
+ "value": { "none": ["A0067545_00121"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00121"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00121"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00121"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00121"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9909
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9909
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00121.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00121"]},
+ "label": { "en": ["ALTO XML for A0067545_00121"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00121/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00121/annotation",
"type": "Annotation",
@@ -34689,7 +20236,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00121/full/max/0/default.jpg",
"type": "Image",
@@ -34701,9 +20247,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00121",
"type": "ImageService3",
@@ -34713,11 +20257,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00121",
"@type": "ImageService2",
@@ -34727,45 +20269,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00121/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00122/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 122"],
- "sv": [
-
- "Bild 122"
-
- ],
-
- "en": [
-
- "Image 122"
-
- ]
-
+ "en": ["Image 122"]
},
"width": 6016,
@@ -34773,199 +20296,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00122"]}
-
+ "value": { "none": ["A0067545_00122"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00122"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00122"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00122"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00122"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00122.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00122"]},
+ "label": { "en": ["ALTO XML for A0067545_00122"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00122/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00122/annotation",
"type": "Annotation",
@@ -34973,7 +20402,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00122/full/max/0/default.jpg",
"type": "Image",
@@ -34985,9 +20413,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00122",
"type": "ImageService3",
@@ -34997,11 +20423,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00122",
"@type": "ImageService2",
@@ -35011,45 +20435,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00122/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00123/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 123"],
- "sv": [
-
- "Bild 123"
-
- ],
-
- "en": [
-
- "Image 123"
-
- ]
-
+ "en": ["Image 123"]
},
"width": 6016,
@@ -35057,199 +20462,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00123"]}
-
+ "value": { "none": ["A0067545_00123"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00123"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00123"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00123"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00123"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00123.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00123"]},
+ "label": { "en": ["ALTO XML for A0067545_00123"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00123/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00123/annotation",
"type": "Annotation",
@@ -35257,7 +20568,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00123/full/max/0/default.jpg",
"type": "Image",
@@ -35269,9 +20579,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00123",
"type": "ImageService3",
@@ -35281,11 +20589,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00123",
"@type": "ImageService2",
@@ -35295,45 +20601,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00123/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00124/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 124"],
- "sv": [
-
- "Bild 124"
-
- ],
-
- "en": [
-
- "Image 124"
-
- ]
-
+ "en": ["Image 124"]
},
"width": 6016,
@@ -35341,199 +20628,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00124"]}
-
+ "value": { "none": ["A0067545_00124"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00124"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00124"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00124"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00124"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9881
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9881
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00124.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00124"]},
+ "label": { "en": ["ALTO XML for A0067545_00124"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00124/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00124/annotation",
"type": "Annotation",
@@ -35541,7 +20734,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00124/full/max/0/default.jpg",
"type": "Image",
@@ -35553,9 +20745,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00124",
"type": "ImageService3",
@@ -35565,11 +20755,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00124",
"@type": "ImageService2",
@@ -35579,45 +20767,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00124/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00125/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 125"],
- "sv": [
-
- "Bild 125"
-
- ],
-
- "en": [
-
- "Image 125"
-
- ]
-
+ "en": ["Image 125"]
},
"width": 6080,
@@ -35625,199 +20794,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00125"]}
-
+ "value": { "none": ["A0067545_00125"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00125"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00125"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00125"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00125"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9679
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9679
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00125.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00125"]},
+ "label": { "en": ["ALTO XML for A0067545_00125"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00125/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00125/annotation",
"type": "Annotation",
@@ -35825,7 +20900,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00125/full/max/0/default.jpg",
"type": "Image",
@@ -35837,9 +20911,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00125",
"type": "ImageService3",
@@ -35849,11 +20921,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00125",
"@type": "ImageService2",
@@ -35863,45 +20933,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00125/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00126/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 126"],
- "sv": [
-
- "Bild 126"
-
- ],
-
- "en": [
-
- "Image 126"
-
- ]
-
+ "en": ["Image 126"]
},
"width": 6112,
@@ -35909,199 +20960,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00126"]}
-
+ "value": { "none": ["A0067545_00126"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00126"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00126"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00126"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00126"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00126.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00126"]},
+ "label": { "en": ["ALTO XML for A0067545_00126"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00126/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00126/annotation",
"type": "Annotation",
@@ -36109,7 +21066,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00126/full/max/0/default.jpg",
"type": "Image",
@@ -36121,9 +21077,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00126",
"type": "ImageService3",
@@ -36133,11 +21087,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00126",
"@type": "ImageService2",
@@ -36147,45 +21099,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00126/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00127/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 127"],
- "sv": [
-
- "Bild 127"
-
- ],
-
- "en": [
-
- "Image 127"
-
- ]
-
+ "en": ["Image 127"]
},
"width": 5896,
@@ -36193,199 +21126,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00127"]}
-
+ "value": { "none": ["A0067545_00127"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00127"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00127"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00127"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00127"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00127.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00127"]},
+ "label": { "en": ["ALTO XML for A0067545_00127"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00127/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00127/annotation",
"type": "Annotation",
@@ -36393,7 +21232,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00127/full/max/0/default.jpg",
"type": "Image",
@@ -36405,9 +21243,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00127",
"type": "ImageService3",
@@ -36417,11 +21253,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00127",
"@type": "ImageService2",
@@ -36431,45 +21265,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00127/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00128/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 128"],
- "sv": [
-
- "Bild 128"
-
- ],
-
- "en": [
-
- "Image 128"
-
- ]
-
+ "en": ["Image 128"]
},
"width": 6016,
@@ -36477,199 +21292,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00128"]}
-
+ "value": { "none": ["A0067545_00128"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00128"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00128"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00128"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00128"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00128.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00128"]},
+ "label": { "en": ["ALTO XML for A0067545_00128"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00128/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00128/annotation",
"type": "Annotation",
@@ -36677,7 +21398,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00128/full/max/0/default.jpg",
"type": "Image",
@@ -36689,9 +21409,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00128",
"type": "ImageService3",
@@ -36701,11 +21419,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00128",
"@type": "ImageService2",
@@ -36715,45 +21431,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00128/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00129/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 129"],
- "sv": [
-
- "Bild 129"
-
- ],
-
- "en": [
-
- "Image 129"
-
- ]
-
+ "en": ["Image 129"]
},
"width": 5896,
@@ -36761,199 +21458,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00129"]}
-
+ "value": { "none": ["A0067545_00129"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00129"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00129"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00129"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00129"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00129.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00129"]},
+ "label": { "en": ["ALTO XML for A0067545_00129"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00129/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00129/annotation",
"type": "Annotation",
@@ -36961,7 +21564,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00129/full/max/0/default.jpg",
"type": "Image",
@@ -36973,9 +21575,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00129",
"type": "ImageService3",
@@ -36985,11 +21585,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00129",
"@type": "ImageService2",
@@ -36999,45 +21597,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00129/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00130/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 130"],
- "sv": [
-
- "Bild 130"
-
- ],
-
- "en": [
-
- "Image 130"
-
- ]
-
+ "en": ["Image 130"]
},
"width": 6016,
@@ -37045,199 +21624,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00130"]}
-
+ "value": { "none": ["A0067545_00130"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00130"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00130"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00130"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00130"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9911
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9911
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00130.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00130"]},
+ "label": { "en": ["ALTO XML for A0067545_00130"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00130/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00130/annotation",
"type": "Annotation",
@@ -37245,7 +21730,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00130/full/max/0/default.jpg",
"type": "Image",
@@ -37257,9 +21741,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00130",
"type": "ImageService3",
@@ -37269,11 +21751,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00130",
"@type": "ImageService2",
@@ -37283,45 +21763,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00130/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00131/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 131"],
- "sv": [
-
- "Bild 131"
-
- ],
-
- "en": [
-
- "Image 131"
-
- ]
-
+ "en": ["Image 131"]
},
"width": 5984,
@@ -37329,199 +21790,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00131"]}
-
+ "value": { "none": ["A0067545_00131"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00131"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00131"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00131"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00131"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00131.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00131"]},
+ "label": { "en": ["ALTO XML for A0067545_00131"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00131/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00131/annotation",
"type": "Annotation",
@@ -37529,7 +21896,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00131/full/max/0/default.jpg",
"type": "Image",
@@ -37541,9 +21907,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00131",
"type": "ImageService3",
@@ -37553,11 +21917,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00131",
"@type": "ImageService2",
@@ -37567,45 +21929,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00131/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00132/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 132"],
- "sv": [
-
- "Bild 132"
-
- ],
-
- "en": [
-
- "Image 132"
-
- ]
-
+ "en": ["Image 132"]
},
"width": 6016,
@@ -37613,199 +21956,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00132"]}
-
+ "value": { "none": ["A0067545_00132"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00132"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00132"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00132"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00132"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9942
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9942
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00132.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00132"]},
+ "label": { "en": ["ALTO XML for A0067545_00132"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00132/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00132/annotation",
"type": "Annotation",
@@ -37813,7 +22062,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00132/full/max/0/default.jpg",
"type": "Image",
@@ -37825,9 +22073,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00132",
"type": "ImageService3",
@@ -37837,11 +22083,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00132",
"@type": "ImageService2",
@@ -37851,45 +22095,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00132/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00133/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 133"],
- "sv": [
-
- "Bild 133"
-
- ],
-
- "en": [
-
- "Image 133"
-
- ]
-
+ "en": ["Image 133"]
},
"width": 5984,
@@ -37897,199 +22122,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00133"]}
-
+ "value": { "none": ["A0067545_00133"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00133"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00133"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00133"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00133"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9913
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9913
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00133.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00133"]},
+ "label": { "en": ["ALTO XML for A0067545_00133"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00133/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00133/annotation",
"type": "Annotation",
@@ -38097,7 +22228,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00133/full/max/0/default.jpg",
"type": "Image",
@@ -38109,9 +22239,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00133",
"type": "ImageService3",
@@ -38121,11 +22249,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00133",
"@type": "ImageService2",
@@ -38135,45 +22261,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00133/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00134/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 134"],
- "sv": [
-
- "Bild 134"
-
- ],
-
- "en": [
-
- "Image 134"
-
- ]
-
+ "en": ["Image 134"]
},
"width": 5896,
@@ -38181,199 +22288,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00134"]}
-
+ "value": { "none": ["A0067545_00134"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00134"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00134"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00134"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00134"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00134.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00134"]},
+ "label": { "en": ["ALTO XML for A0067545_00134"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00134/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00134/annotation",
"type": "Annotation",
@@ -38381,7 +22394,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00134/full/max/0/default.jpg",
"type": "Image",
@@ -38393,9 +22405,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00134",
"type": "ImageService3",
@@ -38405,11 +22415,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00134",
"@type": "ImageService2",
@@ -38419,45 +22427,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00134/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00135/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 135"],
- "sv": [
-
- "Bild 135"
-
- ],
-
- "en": [
-
- "Image 135"
-
- ]
-
+ "en": ["Image 135"]
},
"width": 5960,
@@ -38465,199 +22454,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00135"]}
-
+ "value": { "none": ["A0067545_00135"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00135"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00135"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00135"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00135"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00135.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00135"]},
+ "label": { "en": ["ALTO XML for A0067545_00135"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00135/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00135/annotation",
"type": "Annotation",
@@ -38665,7 +22560,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00135/full/max/0/default.jpg",
"type": "Image",
@@ -38677,9 +22571,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00135",
"type": "ImageService3",
@@ -38689,11 +22581,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00135",
"@type": "ImageService2",
@@ -38703,45 +22593,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00135/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00136/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 136"],
- "sv": [
-
- "Bild 136"
-
- ],
-
- "en": [
-
- "Image 136"
-
- ]
-
+ "en": ["Image 136"]
},
"width": 5896,
@@ -38749,199 +22620,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00136"]}
-
+ "value": { "none": ["A0067545_00136"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00136"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00136"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00136"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00136"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9885
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9885
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00136.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00136"]},
+ "label": { "en": ["ALTO XML for A0067545_00136"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00136/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00136/annotation",
"type": "Annotation",
@@ -38949,7 +22726,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00136/full/max/0/default.jpg",
"type": "Image",
@@ -38961,9 +22737,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00136",
"type": "ImageService3",
@@ -38973,11 +22747,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00136",
"@type": "ImageService2",
@@ -38987,45 +22759,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00136/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00137/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 137"],
- "sv": [
-
- "Bild 137"
-
- ],
-
- "en": [
-
- "Image 137"
-
- ]
-
+ "en": ["Image 137"]
},
"width": 5928,
@@ -39033,199 +22786,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00137"]}
-
+ "value": { "none": ["A0067545_00137"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00137"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00137"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00137"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00137"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9898
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9898
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00137.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00137"]},
+ "label": { "en": ["ALTO XML for A0067545_00137"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00137/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00137/annotation",
"type": "Annotation",
@@ -39233,7 +22892,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00137/full/max/0/default.jpg",
"type": "Image",
@@ -39245,9 +22903,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00137",
"type": "ImageService3",
@@ -39257,11 +22913,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00137",
"@type": "ImageService2",
@@ -39271,45 +22925,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00137/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00138/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 138"],
- "sv": [
-
- "Bild 138"
-
- ],
-
- "en": [
-
- "Image 138"
-
- ]
-
+ "en": ["Image 138"]
},
"width": 5928,
@@ -39317,199 +22952,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00138"]}
-
+ "value": { "none": ["A0067545_00138"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00138"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00138"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00138"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00138"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00138.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00138"]},
+ "label": { "en": ["ALTO XML for A0067545_00138"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00138/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00138/annotation",
"type": "Annotation",
@@ -39517,7 +23058,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00138/full/max/0/default.jpg",
"type": "Image",
@@ -39529,9 +23069,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00138",
"type": "ImageService3",
@@ -39541,11 +23079,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00138",
"@type": "ImageService2",
@@ -39555,45 +23091,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00138/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00139/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 139"],
- "sv": [
-
- "Bild 139"
-
- ],
-
- "en": [
-
- "Image 139"
-
- ]
-
+ "en": ["Image 139"]
},
"width": 5984,
@@ -39601,199 +23118,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00139"]}
-
+ "value": { "none": ["A0067545_00139"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00139"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00139"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00139"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00139"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9921
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9921
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00139.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00139"]},
+ "label": { "en": ["ALTO XML for A0067545_00139"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00139/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00139/annotation",
"type": "Annotation",
@@ -39801,7 +23224,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00139/full/max/0/default.jpg",
"type": "Image",
@@ -39813,9 +23235,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00139",
"type": "ImageService3",
@@ -39825,11 +23245,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00139",
"@type": "ImageService2",
@@ -39839,45 +23257,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00139/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00140/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 140"],
- "sv": [
-
- "Bild 140"
-
- ],
-
- "en": [
-
- "Image 140"
-
- ]
-
+ "en": ["Image 140"]
},
"width": 6016,
@@ -39885,199 +23284,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00140"]}
-
+ "value": { "none": ["A0067545_00140"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00140"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00140"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00140"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00140"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9897
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9897
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00140.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00140"]},
+ "label": { "en": ["ALTO XML for A0067545_00140"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00140/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00140/annotation",
"type": "Annotation",
@@ -40085,7 +23390,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00140/full/max/0/default.jpg",
"type": "Image",
@@ -40097,9 +23401,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00140",
"type": "ImageService3",
@@ -40109,11 +23411,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00140",
"@type": "ImageService2",
@@ -40123,45 +23423,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00140/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00141/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 141"],
- "sv": [
-
- "Bild 141"
-
- ],
-
- "en": [
-
- "Image 141"
-
- ]
-
+ "en": ["Image 141"]
},
"width": 6016,
@@ -40169,199 +23450,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00141"]}
-
+ "value": { "none": ["A0067545_00141"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00141"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00141"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00141"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00141"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9862
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9862
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00141.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00141"]},
+ "label": { "en": ["ALTO XML for A0067545_00141"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00141/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00141/annotation",
"type": "Annotation",
@@ -40369,7 +23556,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00141/full/max/0/default.jpg",
"type": "Image",
@@ -40381,9 +23567,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00141",
"type": "ImageService3",
@@ -40393,11 +23577,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00141",
"@type": "ImageService2",
@@ -40407,45 +23589,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00141/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00142/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 142"],
- "sv": [
-
- "Bild 142"
-
- ],
-
- "en": [
-
- "Image 142"
-
- ]
-
+ "en": ["Image 142"]
},
"width": 5984,
@@ -40453,199 +23616,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00142"]}
-
+ "value": { "none": ["A0067545_00142"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00142"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00142"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00142"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00142"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9833
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9833
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00142.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00142"]},
+ "label": { "en": ["ALTO XML for A0067545_00142"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00142/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00142/annotation",
"type": "Annotation",
@@ -40653,7 +23722,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00142/full/max/0/default.jpg",
"type": "Image",
@@ -40665,9 +23733,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00142",
"type": "ImageService3",
@@ -40677,11 +23743,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00142",
"@type": "ImageService2",
@@ -40691,45 +23755,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00142/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00143/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 143"],
- "sv": [
-
- "Bild 143"
-
- ],
-
- "en": [
-
- "Image 143"
-
- ]
-
+ "en": ["Image 143"]
},
"width": 5984,
@@ -40737,199 +23782,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00143"]}
-
+ "value": { "none": ["A0067545_00143"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00143"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00143"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00143"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00143"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9854
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9854
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00143.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00143"]},
+ "label": { "en": ["ALTO XML for A0067545_00143"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00143/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00143/annotation",
"type": "Annotation",
@@ -40937,7 +23888,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00143/full/max/0/default.jpg",
"type": "Image",
@@ -40949,9 +23899,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00143",
"type": "ImageService3",
@@ -40961,11 +23909,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00143",
"@type": "ImageService2",
@@ -40975,45 +23921,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00143/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00144/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 144"],
- "sv": [
-
- "Bild 144"
-
- ],
-
- "en": [
-
- "Image 144"
-
- ]
-
+ "en": ["Image 144"]
},
"width": 6016,
@@ -41021,199 +23948,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00144"]}
-
+ "value": { "none": ["A0067545_00144"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00144"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00144"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00144"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00144"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00144.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00144"]},
+ "label": { "en": ["ALTO XML for A0067545_00144"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00144/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00144/annotation",
"type": "Annotation",
@@ -41221,7 +24054,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00144/full/max/0/default.jpg",
"type": "Image",
@@ -41233,9 +24065,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00144",
"type": "ImageService3",
@@ -41245,11 +24075,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00144",
"@type": "ImageService2",
@@ -41259,45 +24087,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00144/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00145/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 145"],
- "sv": [
-
- "Bild 145"
-
- ],
-
- "en": [
-
- "Image 145"
-
- ]
-
+ "en": ["Image 145"]
},
"width": 5984,
@@ -41305,199 +24114,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00145"]}
-
+ "value": { "none": ["A0067545_00145"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00145"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00145"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00145"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00145"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9831
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9831
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00145.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00145"]},
+ "label": { "en": ["ALTO XML for A0067545_00145"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00145/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00145/annotation",
"type": "Annotation",
@@ -41505,7 +24220,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00145/full/max/0/default.jpg",
"type": "Image",
@@ -41517,9 +24231,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00145",
"type": "ImageService3",
@@ -41529,11 +24241,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00145",
"@type": "ImageService2",
@@ -41543,45 +24253,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00145/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00146/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 146"],
- "sv": [
-
- "Bild 146"
-
- ],
-
- "en": [
-
- "Image 146"
-
- ]
-
+ "en": ["Image 146"]
},
"width": 6016,
@@ -41589,199 +24280,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00146"]}
-
+ "value": { "none": ["A0067545_00146"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00146"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00146"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00146"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00146"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00146.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00146"]},
+ "label": { "en": ["ALTO XML for A0067545_00146"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00146/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00146/annotation",
"type": "Annotation",
@@ -41789,7 +24386,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00146/full/max/0/default.jpg",
"type": "Image",
@@ -41801,9 +24397,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00146",
"type": "ImageService3",
@@ -41813,11 +24407,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00146",
"@type": "ImageService2",
@@ -41827,45 +24419,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00146/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00147/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 147"],
- "sv": [
-
- "Bild 147"
-
- ],
-
- "en": [
-
- "Image 147"
-
- ]
-
+ "en": ["Image 147"]
},
"width": 5984,
@@ -41873,199 +24446,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00147"]}
-
+ "value": { "none": ["A0067545_00147"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00147"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00147"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00147"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00147"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00147.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00147"]},
+ "label": { "en": ["ALTO XML for A0067545_00147"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00147/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00147/annotation",
"type": "Annotation",
@@ -42073,7 +24552,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00147/full/max/0/default.jpg",
"type": "Image",
@@ -42085,9 +24563,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00147",
"type": "ImageService3",
@@ -42097,11 +24573,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00147",
"@type": "ImageService2",
@@ -42111,45 +24585,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00147/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00148/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 148"],
- "sv": [
-
- "Bild 148"
-
- ],
-
- "en": [
-
- "Image 148"
-
- ]
-
+ "en": ["Image 148"]
},
"width": 6176,
@@ -42157,199 +24612,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00148"]}
-
+ "value": { "none": ["A0067545_00148"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00148"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00148"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00148"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00148"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00148.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00148"]},
+ "label": { "en": ["ALTO XML for A0067545_00148"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00148/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00148/annotation",
"type": "Annotation",
@@ -42357,7 +24718,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00148/full/max/0/default.jpg",
"type": "Image",
@@ -42369,9 +24729,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00148",
"type": "ImageService3",
@@ -42381,11 +24739,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00148",
"@type": "ImageService2",
@@ -42395,45 +24751,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00148/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00149/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 149"],
- "sv": [
-
- "Bild 149"
-
- ],
-
- "en": [
-
- "Image 149"
-
- ]
-
+ "en": ["Image 149"]
},
"width": 6016,
@@ -42441,199 +24778,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00149"]}
-
+ "value": { "none": ["A0067545_00149"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00149"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00149"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00149"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00149"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00149.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00149"]},
+ "label": { "en": ["ALTO XML for A0067545_00149"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00149/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00149/annotation",
"type": "Annotation",
@@ -42641,7 +24884,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00149/full/max/0/default.jpg",
"type": "Image",
@@ -42653,9 +24895,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00149",
"type": "ImageService3",
@@ -42665,11 +24905,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00149",
"@type": "ImageService2",
@@ -42679,45 +24917,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00149/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00150/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 150"],
- "sv": [
-
- "Bild 150"
-
- ],
-
- "en": [
-
- "Image 150"
-
- ]
-
+ "en": ["Image 150"]
},
"width": 6016,
@@ -42725,199 +24944,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00150"]}
-
+ "value": { "none": ["A0067545_00150"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00150"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00150"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00150"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00150"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9976
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9976
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00150.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00150"]},
+ "label": { "en": ["ALTO XML for A0067545_00150"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00150/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00150/annotation",
"type": "Annotation",
@@ -42925,7 +25050,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00150/full/max/0/default.jpg",
"type": "Image",
@@ -42937,9 +25061,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00150",
"type": "ImageService3",
@@ -42949,11 +25071,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00150",
"@type": "ImageService2",
@@ -42963,45 +25083,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00150/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00151/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 151"],
- "sv": [
-
- "Bild 151"
-
- ],
-
- "en": [
-
- "Image 151"
-
- ]
-
+ "en": ["Image 151"]
},
"width": 6144,
@@ -43009,199 +25110,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00151"]}
-
+ "value": { "none": ["A0067545_00151"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00151"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00151"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00151"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00151"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9942
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9942
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00151.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00151"]},
+ "label": { "en": ["ALTO XML for A0067545_00151"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00151/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00151/annotation",
"type": "Annotation",
@@ -43209,7 +25216,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00151/full/max/0/default.jpg",
"type": "Image",
@@ -43221,9 +25227,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00151",
"type": "ImageService3",
@@ -43233,11 +25237,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00151",
"@type": "ImageService2",
@@ -43247,45 +25249,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00151/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00152/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 152"],
- "sv": [
-
- "Bild 152"
-
- ],
-
- "en": [
-
- "Image 152"
-
- ]
-
+ "en": ["Image 152"]
},
"width": 6016,
@@ -43293,199 +25276,105 @@
"height": 5160,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00152"]}
-
+ "value": { "none": ["A0067545_00152"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00152"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00152"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00152"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00152"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00152.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00152"]},
+ "label": { "en": ["ALTO XML for A0067545_00152"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00152/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00152/annotation",
"type": "Annotation",
@@ -43493,7 +25382,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00152/full/max/0/default.jpg",
"type": "Image",
@@ -43505,9 +25393,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00152",
"type": "ImageService3",
@@ -43517,11 +25403,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00152",
"@type": "ImageService2",
@@ -43531,45 +25415,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00152/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00153/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 153"],
- "sv": [
-
- "Bild 153"
-
- ],
-
- "en": [
-
- "Image 153"
-
- ]
-
+ "en": ["Image 153"]
},
"width": 6080,
@@ -43577,199 +25442,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00153"]}
-
+ "value": { "none": ["A0067545_00153"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00153"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00153"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00153"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00153"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00153.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00153"]},
+ "label": { "en": ["ALTO XML for A0067545_00153"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00153/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00153/annotation",
"type": "Annotation",
@@ -43777,7 +25548,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00153/full/max/0/default.jpg",
"type": "Image",
@@ -43789,9 +25559,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00153",
"type": "ImageService3",
@@ -43801,11 +25569,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00153",
"@type": "ImageService2",
@@ -43815,45 +25581,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00153/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00154/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 154"],
- "sv": [
-
- "Bild 154"
-
- ],
-
- "en": [
-
- "Image 154"
-
- ]
-
+ "en": ["Image 154"]
},
"width": 6016,
@@ -43861,199 +25608,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00154"]}
-
+ "value": { "none": ["A0067545_00154"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00154"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00154"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00154"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00154"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00154.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00154"]},
+ "label": { "en": ["ALTO XML for A0067545_00154"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00154/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00154/annotation",
"type": "Annotation",
@@ -44061,7 +25714,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00154/full/max/0/default.jpg",
"type": "Image",
@@ -44073,9 +25725,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00154",
"type": "ImageService3",
@@ -44085,11 +25735,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00154",
"@type": "ImageService2",
@@ -44099,45 +25747,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00154/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00155/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 155"],
- "sv": [
-
- "Bild 155"
-
- ],
-
- "en": [
-
- "Image 155"
-
- ]
-
+ "en": ["Image 155"]
},
"width": 6112,
@@ -44145,199 +25774,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00155"]}
-
+ "value": { "none": ["A0067545_00155"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00155"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00155"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00155"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00155"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9928
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9928
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00155.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00155"]},
+ "label": { "en": ["ALTO XML for A0067545_00155"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00155/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00155/annotation",
"type": "Annotation",
@@ -44345,7 +25880,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00155/full/max/0/default.jpg",
"type": "Image",
@@ -44357,9 +25891,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00155",
"type": "ImageService3",
@@ -44369,11 +25901,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00155",
"@type": "ImageService2",
@@ -44383,45 +25913,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00155/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00156/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 156"],
- "sv": [
-
- "Bild 156"
-
- ],
-
- "en": [
-
- "Image 156"
-
- ]
-
+ "en": ["Image 156"]
},
"width": 6016,
@@ -44429,199 +25940,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00156"]}
-
+ "value": { "none": ["A0067545_00156"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00156"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00156"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00156"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00156"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00156.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00156"]},
+ "label": { "en": ["ALTO XML for A0067545_00156"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00156/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00156/annotation",
"type": "Annotation",
@@ -44629,7 +26046,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00156/full/max/0/default.jpg",
"type": "Image",
@@ -44641,9 +26057,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00156",
"type": "ImageService3",
@@ -44653,11 +26067,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00156",
"@type": "ImageService2",
@@ -44667,45 +26079,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00156/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00157/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 157"],
- "sv": [
-
- "Bild 157"
-
- ],
-
- "en": [
-
- "Image 157"
-
- ]
-
+ "en": ["Image 157"]
},
"width": 6016,
@@ -44713,199 +26106,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00157"]}
-
+ "value": { "none": ["A0067545_00157"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00157"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00157"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00157"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00157"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00157.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00157"]},
+ "label": { "en": ["ALTO XML for A0067545_00157"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00157/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00157/annotation",
"type": "Annotation",
@@ -44913,7 +26212,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00157/full/max/0/default.jpg",
"type": "Image",
@@ -44925,9 +26223,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00157",
"type": "ImageService3",
@@ -44937,11 +26233,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00157",
"@type": "ImageService2",
@@ -44951,45 +26245,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00157/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00158/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 158"],
- "sv": [
-
- "Bild 158"
-
- ],
-
- "en": [
-
- "Image 158"
-
- ]
-
+ "en": ["Image 158"]
},
"width": 6016,
@@ -44997,199 +26272,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00158"]}
-
+ "value": { "none": ["A0067545_00158"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00158"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00158"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00158"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00158"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00158.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00158"]},
+ "label": { "en": ["ALTO XML for A0067545_00158"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00158/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00158/annotation",
"type": "Annotation",
@@ -45197,7 +26378,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00158/full/max/0/default.jpg",
"type": "Image",
@@ -45209,9 +26389,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00158",
"type": "ImageService3",
@@ -45221,11 +26399,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00158",
"@type": "ImageService2",
@@ -45235,45 +26411,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00158/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00159/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 159"],
- "sv": [
-
- "Bild 159"
-
- ],
-
- "en": [
-
- "Image 159"
-
- ]
-
+ "en": ["Image 159"]
},
"width": 6080,
@@ -45281,199 +26438,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00159"]}
-
+ "value": { "none": ["A0067545_00159"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00159"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00159"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00159"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00159"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00159.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00159"]},
+ "label": { "en": ["ALTO XML for A0067545_00159"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00159/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00159/annotation",
"type": "Annotation",
@@ -45481,7 +26544,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00159/full/max/0/default.jpg",
"type": "Image",
@@ -45493,9 +26555,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00159",
"type": "ImageService3",
@@ -45505,11 +26565,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00159",
"@type": "ImageService2",
@@ -45519,45 +26577,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00159/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00160/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 160"],
- "sv": [
-
- "Bild 160"
-
- ],
-
- "en": [
-
- "Image 160"
-
- ]
-
+ "en": ["Image 160"]
},
"width": 6016,
@@ -45565,199 +26604,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00160"]}
-
+ "value": { "none": ["A0067545_00160"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00160"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00160"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00160"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00160"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9974
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9974
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00160.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00160"]},
+ "label": { "en": ["ALTO XML for A0067545_00160"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00160/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00160/annotation",
"type": "Annotation",
@@ -45765,7 +26710,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00160/full/max/0/default.jpg",
"type": "Image",
@@ -45777,9 +26721,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00160",
"type": "ImageService3",
@@ -45789,11 +26731,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00160",
"@type": "ImageService2",
@@ -45803,45 +26743,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00160/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00161/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 161"],
- "sv": [
-
- "Bild 161"
-
- ],
-
- "en": [
-
- "Image 161"
-
- ]
-
+ "en": ["Image 161"]
},
"width": 6016,
@@ -45849,199 +26770,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00161"]}
-
+ "value": { "none": ["A0067545_00161"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00161"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00161"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00161"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00161"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00161.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00161"]},
+ "label": { "en": ["ALTO XML for A0067545_00161"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00161/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00161/annotation",
"type": "Annotation",
@@ -46049,7 +26876,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00161/full/max/0/default.jpg",
"type": "Image",
@@ -46061,9 +26887,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00161",
"type": "ImageService3",
@@ -46073,11 +26897,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00161",
"@type": "ImageService2",
@@ -46087,45 +26909,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00161/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00162/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 162"],
- "sv": [
-
- "Bild 162"
-
- ],
-
- "en": [
-
- "Image 162"
-
- ]
-
+ "en": ["Image 162"]
},
"width": 5984,
@@ -46133,199 +26936,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00162"]}
-
+ "value": { "none": ["A0067545_00162"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00162"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00162"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00162"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00162"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00162.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00162"]},
+ "label": { "en": ["ALTO XML for A0067545_00162"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00162/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00162/annotation",
"type": "Annotation",
@@ -46333,7 +27042,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00162/full/max/0/default.jpg",
"type": "Image",
@@ -46345,9 +27053,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00162",
"type": "ImageService3",
@@ -46357,11 +27063,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00162",
"@type": "ImageService2",
@@ -46371,45 +27075,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00162/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00163/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 163"],
- "sv": [
-
- "Bild 163"
-
- ],
-
- "en": [
-
- "Image 163"
-
- ]
-
+ "en": ["Image 163"]
},
"width": 5864,
@@ -46417,199 +27102,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00163"]}
-
+ "value": { "none": ["A0067545_00163"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00163"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00163"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00163"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00163"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00163.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00163"]},
+ "label": { "en": ["ALTO XML for A0067545_00163"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00163/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00163/annotation",
"type": "Annotation",
@@ -46617,7 +27208,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00163/full/max/0/default.jpg",
"type": "Image",
@@ -46629,9 +27219,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00163",
"type": "ImageService3",
@@ -46641,11 +27229,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00163",
"@type": "ImageService2",
@@ -46655,45 +27241,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00163/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00164/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 164"],
- "sv": [
-
- "Bild 164"
-
- ],
-
- "en": [
-
- "Image 164"
-
- ]
-
+ "en": ["Image 164"]
},
"width": 5984,
@@ -46701,199 +27268,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00164"]}
-
+ "value": { "none": ["A0067545_00164"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00164"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00164"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00164"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00164"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00164.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00164"]},
+ "label": { "en": ["ALTO XML for A0067545_00164"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00164/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00164/annotation",
"type": "Annotation",
@@ -46901,7 +27374,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00164/full/max/0/default.jpg",
"type": "Image",
@@ -46913,9 +27385,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00164",
"type": "ImageService3",
@@ -46925,11 +27395,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00164",
"@type": "ImageService2",
@@ -46939,45 +27407,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00164/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00165/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 165"],
- "sv": [
-
- "Bild 165"
-
- ],
-
- "en": [
-
- "Image 165"
-
- ]
-
+ "en": ["Image 165"]
},
"width": 6016,
@@ -46985,199 +27434,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00165"]}
-
+ "value": { "none": ["A0067545_00165"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00165"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00165"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00165"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00165"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00165.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00165"]},
+ "label": { "en": ["ALTO XML for A0067545_00165"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00165/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00165/annotation",
"type": "Annotation",
@@ -47185,7 +27540,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00165/full/max/0/default.jpg",
"type": "Image",
@@ -47197,9 +27551,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00165",
"type": "ImageService3",
@@ -47209,11 +27561,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00165",
"@type": "ImageService2",
@@ -47223,45 +27573,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00165/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00166/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 166"],
- "sv": [
-
- "Bild 166"
-
- ],
-
- "en": [
-
- "Image 166"
-
- ]
-
+ "en": ["Image 166"]
},
"width": 6016,
@@ -47269,199 +27600,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00166"]}
-
+ "value": { "none": ["A0067545_00166"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00166"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00166"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00166"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00166"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00166.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00166"]},
+ "label": { "en": ["ALTO XML for A0067545_00166"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00166/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00166/annotation",
"type": "Annotation",
@@ -47469,7 +27706,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00166/full/max/0/default.jpg",
"type": "Image",
@@ -47481,9 +27717,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00166",
"type": "ImageService3",
@@ -47493,11 +27727,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00166",
"@type": "ImageService2",
@@ -47507,45 +27739,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00166/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00167/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 167"],
- "sv": [
-
- "Bild 167"
-
- ],
-
- "en": [
-
- "Image 167"
-
- ]
-
+ "en": ["Image 167"]
},
"width": 6048,
@@ -47553,199 +27766,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00167"]}
-
+ "value": { "none": ["A0067545_00167"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00167"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00167"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00167"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00167"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00167.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00167"]},
+ "label": { "en": ["ALTO XML for A0067545_00167"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00167/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00167/annotation",
"type": "Annotation",
@@ -47753,7 +27872,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00167/full/max/0/default.jpg",
"type": "Image",
@@ -47765,9 +27883,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00167",
"type": "ImageService3",
@@ -47777,11 +27893,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00167",
"@type": "ImageService2",
@@ -47791,45 +27905,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00167/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00168/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 168"],
- "sv": [
-
- "Bild 168"
-
- ],
-
- "en": [
-
- "Image 168"
-
- ]
-
+ "en": ["Image 168"]
},
"width": 6112,
@@ -47837,199 +27932,105 @@
"height": 5128,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00168"]}
-
+ "value": { "none": ["A0067545_00168"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00168"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00168"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00168"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00168"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00168.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00168"]},
+ "label": { "en": ["ALTO XML for A0067545_00168"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00168/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00168/annotation",
"type": "Annotation",
@@ -48037,7 +28038,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00168/full/max/0/default.jpg",
"type": "Image",
@@ -48049,9 +28049,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00168",
"type": "ImageService3",
@@ -48061,11 +28059,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00168",
"@type": "ImageService2",
@@ -48075,45 +28071,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00168/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00169/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 169"],
- "sv": [
-
- "Bild 169"
-
- ],
-
- "en": [
-
- "Image 169"
-
- ]
-
+ "en": ["Image 169"]
},
"width": 6016,
@@ -48121,199 +28098,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00169"]}
-
+ "value": { "none": ["A0067545_00169"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00169"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00169"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00169"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00169"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00169.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00169"]},
+ "label": { "en": ["ALTO XML for A0067545_00169"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00169/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00169/annotation",
"type": "Annotation",
@@ -48321,7 +28204,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00169/full/max/0/default.jpg",
"type": "Image",
@@ -48333,9 +28215,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00169",
"type": "ImageService3",
@@ -48345,11 +28225,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00169",
"@type": "ImageService2",
@@ -48359,45 +28237,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00169/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00170/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 170"],
- "sv": [
-
- "Bild 170"
-
- ],
-
- "en": [
-
- "Image 170"
-
- ]
-
+ "en": ["Image 170"]
},
"width": 5984,
@@ -48405,199 +28264,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00170"]}
-
+ "value": { "none": ["A0067545_00170"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00170"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00170"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00170"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00170"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00170.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00170"]},
+ "label": { "en": ["ALTO XML for A0067545_00170"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00170/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00170/annotation",
"type": "Annotation",
@@ -48605,7 +28370,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00170/full/max/0/default.jpg",
"type": "Image",
@@ -48617,9 +28381,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00170",
"type": "ImageService3",
@@ -48629,11 +28391,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00170",
"@type": "ImageService2",
@@ -48643,45 +28403,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00170/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00171/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 171"],
- "sv": [
-
- "Bild 171"
-
- ],
-
- "en": [
-
- "Image 171"
-
- ]
-
+ "en": ["Image 171"]
},
"width": 6176,
@@ -48689,199 +28430,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00171"]}
-
+ "value": { "none": ["A0067545_00171"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00171"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00171"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00171"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00171"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00171.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00171"]},
+ "label": { "en": ["ALTO XML for A0067545_00171"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00171/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00171/annotation",
"type": "Annotation",
@@ -48889,7 +28536,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00171/full/max/0/default.jpg",
"type": "Image",
@@ -48901,9 +28547,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00171",
"type": "ImageService3",
@@ -48913,11 +28557,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00171",
"@type": "ImageService2",
@@ -48927,45 +28569,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00171/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00172/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 172"],
- "sv": [
-
- "Bild 172"
-
- ],
-
- "en": [
-
- "Image 172"
-
- ]
-
+ "en": ["Image 172"]
},
"width": 6176,
@@ -48973,199 +28596,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00172"]}
-
+ "value": { "none": ["A0067545_00172"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00172"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00172"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00172"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00172"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00172.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00172"]},
+ "label": { "en": ["ALTO XML for A0067545_00172"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00172/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00172/annotation",
"type": "Annotation",
@@ -49173,7 +28702,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00172/full/max/0/default.jpg",
"type": "Image",
@@ -49185,9 +28713,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00172",
"type": "ImageService3",
@@ -49197,11 +28723,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00172",
"@type": "ImageService2",
@@ -49211,45 +28735,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00172/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00173/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 173"],
- "sv": [
-
- "Bild 173"
-
- ],
-
- "en": [
-
- "Image 173"
-
- ]
-
+ "en": ["Image 173"]
},
"width": 6176,
@@ -49257,199 +28762,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00173"]}
-
+ "value": { "none": ["A0067545_00173"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00173"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00173"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00173"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00173"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9793
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9793
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00173.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00173"]},
+ "label": { "en": ["ALTO XML for A0067545_00173"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00173/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00173/annotation",
"type": "Annotation",
@@ -49457,7 +28868,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00173/full/max/0/default.jpg",
"type": "Image",
@@ -49469,9 +28879,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00173",
"type": "ImageService3",
@@ -49481,11 +28889,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00173",
"@type": "ImageService2",
@@ -49495,45 +28901,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00173/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00174/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 174"],
- "sv": [
-
- "Bild 174"
-
- ],
-
- "en": [
-
- "Image 174"
-
- ]
-
+ "en": ["Image 174"]
},
"width": 6016,
@@ -49541,199 +28928,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00174"]}
-
+ "value": { "none": ["A0067545_00174"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00174"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00174"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00174"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00174"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00174.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00174"]},
+ "label": { "en": ["ALTO XML for A0067545_00174"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00174/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00174/annotation",
"type": "Annotation",
@@ -49741,7 +29034,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00174/full/max/0/default.jpg",
"type": "Image",
@@ -49753,9 +29045,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00174",
"type": "ImageService3",
@@ -49765,11 +29055,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00174",
"@type": "ImageService2",
@@ -49779,45 +29067,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00174/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00175/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 175"],
- "sv": [
-
- "Bild 175"
-
- ],
-
- "en": [
-
- "Image 175"
-
- ]
-
+ "en": ["Image 175"]
},
"width": 6016,
@@ -49825,199 +29094,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00175"]}
-
+ "value": { "none": ["A0067545_00175"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00175"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00175"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00175"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00175"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00175.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00175"]},
+ "label": { "en": ["ALTO XML for A0067545_00175"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00175/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00175/annotation",
"type": "Annotation",
@@ -50025,7 +29200,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00175/full/max/0/default.jpg",
"type": "Image",
@@ -50037,9 +29211,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00175",
"type": "ImageService3",
@@ -50049,11 +29221,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00175",
"@type": "ImageService2",
@@ -50063,45 +29233,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00175/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00176/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 176"],
- "sv": [
-
- "Bild 176"
-
- ],
-
- "en": [
-
- "Image 176"
-
- ]
-
+ "en": ["Image 176"]
},
"width": 6016,
@@ -50109,199 +29260,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00176"]}
-
+ "value": { "none": ["A0067545_00176"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00176"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00176"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00176"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00176"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00176.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00176"]},
+ "label": { "en": ["ALTO XML for A0067545_00176"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00176/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00176/annotation",
"type": "Annotation",
@@ -50309,7 +29366,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00176/full/max/0/default.jpg",
"type": "Image",
@@ -50321,9 +29377,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00176",
"type": "ImageService3",
@@ -50333,11 +29387,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00176",
"@type": "ImageService2",
@@ -50347,45 +29399,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00176/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00177/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 177"],
- "sv": [
-
- "Bild 177"
-
- ],
-
- "en": [
-
- "Image 177"
-
- ]
-
+ "en": ["Image 177"]
},
"width": 6176,
@@ -50393,199 +29426,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00177"]}
-
+ "value": { "none": ["A0067545_00177"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00177"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00177"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00177"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00177"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00177.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00177"]},
+ "label": { "en": ["ALTO XML for A0067545_00177"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00177/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00177/annotation",
"type": "Annotation",
@@ -50593,7 +29532,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00177/full/max/0/default.jpg",
"type": "Image",
@@ -50605,9 +29543,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00177",
"type": "ImageService3",
@@ -50617,11 +29553,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00177",
"@type": "ImageService2",
@@ -50631,45 +29565,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00177/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00178/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 178"],
- "sv": [
-
- "Bild 178"
-
- ],
-
- "en": [
-
- "Image 178"
-
- ]
-
+ "en": ["Image 178"]
},
"width": 6016,
@@ -50677,199 +29592,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00178"]}
-
+ "value": { "none": ["A0067545_00178"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00178"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00178"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00178"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00178"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00178.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00178"]},
+ "label": { "en": ["ALTO XML for A0067545_00178"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00178/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00178/annotation",
"type": "Annotation",
@@ -50877,7 +29698,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00178/full/max/0/default.jpg",
"type": "Image",
@@ -50889,9 +29709,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00178",
"type": "ImageService3",
@@ -50901,11 +29719,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00178",
"@type": "ImageService2",
@@ -50915,45 +29731,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00178/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00179/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 179"],
- "sv": [
-
- "Bild 179"
-
- ],
-
- "en": [
-
- "Image 179"
-
- ]
-
+ "en": ["Image 179"]
},
"width": 6016,
@@ -50961,199 +29758,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00179"]}
-
+ "value": { "none": ["A0067545_00179"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00179"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00179"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00179"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00179"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00179.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00179"]},
+ "label": { "en": ["ALTO XML for A0067545_00179"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00179/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00179/annotation",
"type": "Annotation",
@@ -51161,7 +29864,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00179/full/max/0/default.jpg",
"type": "Image",
@@ -51173,9 +29875,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00179",
"type": "ImageService3",
@@ -51185,11 +29885,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00179",
"@type": "ImageService2",
@@ -51199,45 +29897,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00179/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00180/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 180"],
- "sv": [
-
- "Bild 180"
-
- ],
-
- "en": [
-
- "Image 180"
-
- ]
-
+ "en": ["Image 180"]
},
"width": 5984,
@@ -51245,199 +29924,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00180"]}
-
+ "value": { "none": ["A0067545_00180"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00180"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00180"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00180"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00180"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00180.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00180"]},
+ "label": { "en": ["ALTO XML for A0067545_00180"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00180/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00180/annotation",
"type": "Annotation",
@@ -51445,7 +30030,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00180/full/max/0/default.jpg",
"type": "Image",
@@ -51457,9 +30041,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00180",
"type": "ImageService3",
@@ -51469,11 +30051,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00180",
"@type": "ImageService2",
@@ -51483,45 +30063,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00180/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00181/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 181"],
- "sv": [
-
- "Bild 181"
-
- ],
-
- "en": [
-
- "Image 181"
-
- ]
-
+ "en": ["Image 181"]
},
"width": 6176,
@@ -51529,199 +30090,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00181"]}
-
+ "value": { "none": ["A0067545_00181"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00181"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00181"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00181"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00181"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00181.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00181"]},
+ "label": { "en": ["ALTO XML for A0067545_00181"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00181/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00181/annotation",
"type": "Annotation",
@@ -51729,7 +30196,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00181/full/max/0/default.jpg",
"type": "Image",
@@ -51741,9 +30207,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00181",
"type": "ImageService3",
@@ -51753,11 +30217,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00181",
"@type": "ImageService2",
@@ -51767,45 +30229,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00181/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00182/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 182"],
- "sv": [
-
- "Bild 182"
-
- ],
-
- "en": [
-
- "Image 182"
-
- ]
-
+ "en": ["Image 182"]
},
"width": 6176,
@@ -51813,199 +30256,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00182"]}
-
+ "value": { "none": ["A0067545_00182"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00182"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00182"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00182"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00182"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9949
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9949
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00182.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00182"]},
+ "label": { "en": ["ALTO XML for A0067545_00182"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00182/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00182/annotation",
"type": "Annotation",
@@ -52013,7 +30362,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00182/full/max/0/default.jpg",
"type": "Image",
@@ -52025,9 +30373,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00182",
"type": "ImageService3",
@@ -52037,11 +30383,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00182",
"@type": "ImageService2",
@@ -52051,45 +30395,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00182/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00183/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 183"],
- "sv": [
-
- "Bild 183"
-
- ],
-
- "en": [
-
- "Image 183"
-
- ]
-
+ "en": ["Image 183"]
},
"width": 6112,
@@ -52097,199 +30422,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00183"]}
-
+ "value": { "none": ["A0067545_00183"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00183"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00183"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00183"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00183"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00183.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00183"]},
+ "label": { "en": ["ALTO XML for A0067545_00183"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00183/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00183/annotation",
"type": "Annotation",
@@ -52297,7 +30528,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00183/full/max/0/default.jpg",
"type": "Image",
@@ -52309,9 +30539,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00183",
"type": "ImageService3",
@@ -52321,11 +30549,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00183",
"@type": "ImageService2",
@@ -52335,45 +30561,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00183/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00184/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 184"],
- "sv": [
-
- "Bild 184"
-
- ],
-
- "en": [
-
- "Image 184"
-
- ]
-
+ "en": ["Image 184"]
},
"width": 6176,
@@ -52381,199 +30588,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00184"]}
-
+ "value": { "none": ["A0067545_00184"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00184"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00184"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00184"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00184"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9893
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9893
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00184.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00184"]},
+ "label": { "en": ["ALTO XML for A0067545_00184"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00184/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00184/annotation",
"type": "Annotation",
@@ -52581,7 +30694,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00184/full/max/0/default.jpg",
"type": "Image",
@@ -52593,9 +30705,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00184",
"type": "ImageService3",
@@ -52605,11 +30715,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00184",
"@type": "ImageService2",
@@ -52619,45 +30727,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00184/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00185/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 185"],
- "sv": [
-
- "Bild 185"
-
- ],
-
- "en": [
-
- "Image 185"
-
- ]
-
+ "en": ["Image 185"]
},
"width": 6080,
@@ -52665,199 +30754,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00185"]}
-
+ "value": { "none": ["A0067545_00185"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00185"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00185"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00185"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00185"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00185.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00185"]},
+ "label": { "en": ["ALTO XML for A0067545_00185"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00185/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00185/annotation",
"type": "Annotation",
@@ -52865,7 +30860,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00185/full/max/0/default.jpg",
"type": "Image",
@@ -52877,9 +30871,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00185",
"type": "ImageService3",
@@ -52889,11 +30881,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00185",
"@type": "ImageService2",
@@ -52903,45 +30893,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00185/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00186/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 186"],
- "sv": [
-
- "Bild 186"
-
- ],
-
- "en": [
-
- "Image 186"
-
- ]
-
+ "en": ["Image 186"]
},
"width": 6016,
@@ -52949,199 +30920,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00186"]}
-
+ "value": { "none": ["A0067545_00186"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00186"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00186"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00186"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00186"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9999
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9999
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00186.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00186"]},
+ "label": { "en": ["ALTO XML for A0067545_00186"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00186/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00186/annotation",
"type": "Annotation",
@@ -53149,7 +31026,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00186/full/max/0/default.jpg",
"type": "Image",
@@ -53161,9 +31037,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00186",
"type": "ImageService3",
@@ -53173,11 +31047,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00186",
"@type": "ImageService2",
@@ -53187,45 +31059,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00186/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00187/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 187"],
- "sv": [
-
- "Bild 187"
-
- ],
-
- "en": [
-
- "Image 187"
-
- ]
-
+ "en": ["Image 187"]
},
"width": 6176,
@@ -53233,199 +31086,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00187"]}
-
+ "value": { "none": ["A0067545_00187"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00187"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00187"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00187"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00187"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9841
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9841
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00187.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00187"]},
+ "label": { "en": ["ALTO XML for A0067545_00187"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00187/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00187/annotation",
"type": "Annotation",
@@ -53433,7 +31192,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00187/full/max/0/default.jpg",
"type": "Image",
@@ -53445,9 +31203,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00187",
"type": "ImageService3",
@@ -53457,11 +31213,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00187",
"@type": "ImageService2",
@@ -53471,45 +31225,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00187/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00188/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 188"],
- "sv": [
-
- "Bild 188"
-
- ],
-
- "en": [
-
- "Image 188"
-
- ]
-
+ "en": ["Image 188"]
},
"width": 6176,
@@ -53517,199 +31252,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00188"]}
-
+ "value": { "none": ["A0067545_00188"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00188"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00188"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00188"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00188"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00188.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00188"]},
+ "label": { "en": ["ALTO XML for A0067545_00188"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00188/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00188/annotation",
"type": "Annotation",
@@ -53717,7 +31358,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00188/full/max/0/default.jpg",
"type": "Image",
@@ -53729,9 +31369,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00188",
"type": "ImageService3",
@@ -53741,11 +31379,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00188",
"@type": "ImageService2",
@@ -53755,45 +31391,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00188/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00189/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 189"],
- "sv": [
-
- "Bild 189"
-
- ],
-
- "en": [
-
- "Image 189"
-
- ]
-
+ "en": ["Image 189"]
},
"width": 6016,
@@ -53801,199 +31418,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00189"]}
-
+ "value": { "none": ["A0067545_00189"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00189"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00189"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00189"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00189"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9897
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9897
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00189.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00189"]},
+ "label": { "en": ["ALTO XML for A0067545_00189"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00189/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00189/annotation",
"type": "Annotation",
@@ -54001,7 +31524,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00189/full/max/0/default.jpg",
"type": "Image",
@@ -54013,9 +31535,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00189",
"type": "ImageService3",
@@ -54025,11 +31545,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00189",
"@type": "ImageService2",
@@ -54039,45 +31557,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00189/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00190/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 190"],
- "sv": [
-
- "Bild 190"
-
- ],
-
- "en": [
-
- "Image 190"
-
- ]
-
+ "en": ["Image 190"]
},
"width": 6016,
@@ -54085,199 +31584,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00190"]}
-
+ "value": { "none": ["A0067545_00190"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00190"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00190"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00190"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00190"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9806
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9806
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00190.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00190"]},
+ "label": { "en": ["ALTO XML for A0067545_00190"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00190/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00190/annotation",
"type": "Annotation",
@@ -54285,7 +31690,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00190/full/max/0/default.jpg",
"type": "Image",
@@ -54297,9 +31701,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00190",
"type": "ImageService3",
@@ -54309,11 +31711,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00190",
"@type": "ImageService2",
@@ -54323,45 +31723,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00190/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00191/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 191"],
- "sv": [
-
- "Bild 191"
-
- ],
-
- "en": [
-
- "Image 191"
-
- ]
-
+ "en": ["Image 191"]
},
"width": 6016,
@@ -54369,199 +31750,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00191"]}
-
+ "value": { "none": ["A0067545_00191"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00191"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00191"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00191"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00191"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00191.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00191"]},
+ "label": { "en": ["ALTO XML for A0067545_00191"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00191/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00191/annotation",
"type": "Annotation",
@@ -54569,7 +31856,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00191/full/max/0/default.jpg",
"type": "Image",
@@ -54581,9 +31867,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00191",
"type": "ImageService3",
@@ -54593,11 +31877,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00191",
"@type": "ImageService2",
@@ -54607,45 +31889,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00191/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00192/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 192"],
- "sv": [
-
- "Bild 192"
-
- ],
-
- "en": [
-
- "Image 192"
-
- ]
-
+ "en": ["Image 192"]
},
"width": 6176,
@@ -54653,199 +31916,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00192"]}
-
+ "value": { "none": ["A0067545_00192"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00192"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00192"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00192"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00192"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00192.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00192"]},
+ "label": { "en": ["ALTO XML for A0067545_00192"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00192/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00192/annotation",
"type": "Annotation",
@@ -54853,7 +32022,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00192/full/max/0/default.jpg",
"type": "Image",
@@ -54865,9 +32033,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00192",
"type": "ImageService3",
@@ -54877,11 +32043,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00192",
"@type": "ImageService2",
@@ -54891,45 +32055,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00192/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00193/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 193"],
- "sv": [
-
- "Bild 193"
-
- ],
-
- "en": [
-
- "Image 193"
-
- ]
-
+ "en": ["Image 193"]
},
"width": 6016,
@@ -54937,199 +32082,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00193"]}
-
+ "value": { "none": ["A0067545_00193"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00193"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00193"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00193"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00193"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00193.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00193"]},
+ "label": { "en": ["ALTO XML for A0067545_00193"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00193/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00193/annotation",
"type": "Annotation",
@@ -55137,7 +32188,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00193/full/max/0/default.jpg",
"type": "Image",
@@ -55149,9 +32199,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00193",
"type": "ImageService3",
@@ -55161,11 +32209,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00193",
"@type": "ImageService2",
@@ -55175,45 +32221,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00193/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00194/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 194"],
- "sv": [
-
- "Bild 194"
-
- ],
-
- "en": [
-
- "Image 194"
-
- ]
-
+ "en": ["Image 194"]
},
"width": 6176,
@@ -55221,199 +32248,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00194"]}
-
+ "value": { "none": ["A0067545_00194"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00194"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00194"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00194"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00194"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00194.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00194"]},
+ "label": { "en": ["ALTO XML for A0067545_00194"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00194/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00194/annotation",
"type": "Annotation",
@@ -55421,7 +32354,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00194/full/max/0/default.jpg",
"type": "Image",
@@ -55433,9 +32365,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00194",
"type": "ImageService3",
@@ -55445,11 +32375,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00194",
"@type": "ImageService2",
@@ -55459,45 +32387,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00194/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00195/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 195"],
- "sv": [
-
- "Bild 195"
-
- ],
-
- "en": [
-
- "Image 195"
-
- ]
-
+ "en": ["Image 195"]
},
"width": 6176,
@@ -55505,199 +32414,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00195"]}
-
+ "value": { "none": ["A0067545_00195"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00195"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00195"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00195"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00195"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9927
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9927
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00195.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00195"]},
+ "label": { "en": ["ALTO XML for A0067545_00195"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00195/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00195/annotation",
"type": "Annotation",
@@ -55705,7 +32520,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00195/full/max/0/default.jpg",
"type": "Image",
@@ -55717,9 +32531,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00195",
"type": "ImageService3",
@@ -55729,11 +32541,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00195",
"@type": "ImageService2",
@@ -55743,45 +32553,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00195/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00196/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 196"],
- "sv": [
-
- "Bild 196"
-
- ],
-
- "en": [
-
- "Image 196"
-
- ]
-
+ "en": ["Image 196"]
},
"width": 6016,
@@ -55789,199 +32580,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00196"]}
-
+ "value": { "none": ["A0067545_00196"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00196"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00196"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00196"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00196"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9938
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9938
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00196.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00196"]},
+ "label": { "en": ["ALTO XML for A0067545_00196"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00196/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00196/annotation",
"type": "Annotation",
@@ -55989,7 +32686,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00196/full/max/0/default.jpg",
"type": "Image",
@@ -56001,9 +32697,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00196",
"type": "ImageService3",
@@ -56013,11 +32707,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00196",
"@type": "ImageService2",
@@ -56027,45 +32719,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00196/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00197/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 197"],
- "sv": [
-
- "Bild 197"
-
- ],
-
- "en": [
-
- "Image 197"
-
- ]
-
+ "en": ["Image 197"]
},
"width": 6016,
@@ -56073,199 +32746,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00197"]}
-
+ "value": { "none": ["A0067545_00197"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00197"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00197"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00197"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00197"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9914
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9914
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00197.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00197"]},
+ "label": { "en": ["ALTO XML for A0067545_00197"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00197/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00197/annotation",
"type": "Annotation",
@@ -56273,7 +32852,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00197/full/max/0/default.jpg",
"type": "Image",
@@ -56285,9 +32863,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00197",
"type": "ImageService3",
@@ -56297,11 +32873,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00197",
"@type": "ImageService2",
@@ -56311,45 +32885,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00197/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00198/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 198"],
- "sv": [
-
- "Bild 198"
-
- ],
-
- "en": [
-
- "Image 198"
-
- ]
-
+ "en": ["Image 198"]
},
"width": 6016,
@@ -56357,199 +32912,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00198"]}
-
+ "value": { "none": ["A0067545_00198"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00198"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00198"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00198"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00198"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9933
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9933
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00198.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00198"]},
+ "label": { "en": ["ALTO XML for A0067545_00198"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00198/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00198/annotation",
"type": "Annotation",
@@ -56557,7 +33018,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00198/full/max/0/default.jpg",
"type": "Image",
@@ -56569,9 +33029,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00198",
"type": "ImageService3",
@@ -56581,11 +33039,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00198",
"@type": "ImageService2",
@@ -56595,45 +33051,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00198/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00199/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 199"],
- "sv": [
-
- "Bild 199"
-
- ],
-
- "en": [
-
- "Image 199"
-
- ]
-
+ "en": ["Image 199"]
},
"width": 6016,
@@ -56641,199 +33078,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00199"]}
-
+ "value": { "none": ["A0067545_00199"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00199"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00199"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00199"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00199"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00199.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00199"]},
+ "label": { "en": ["ALTO XML for A0067545_00199"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00199/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00199/annotation",
"type": "Annotation",
@@ -56841,7 +33184,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00199/full/max/0/default.jpg",
"type": "Image",
@@ -56853,9 +33195,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00199",
"type": "ImageService3",
@@ -56865,11 +33205,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00199",
"@type": "ImageService2",
@@ -56879,45 +33217,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00199/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00200/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 200"],
- "sv": [
-
- "Bild 200"
-
- ],
-
- "en": [
-
- "Image 200"
-
- ]
-
+ "en": ["Image 200"]
},
"width": 6016,
@@ -56925,199 +33244,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00200"]}
-
+ "value": { "none": ["A0067545_00200"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00200"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00200"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00200"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00200"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00200.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00200"]},
+ "label": { "en": ["ALTO XML for A0067545_00200"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00200/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00200/annotation",
"type": "Annotation",
@@ -57125,7 +33350,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00200/full/max/0/default.jpg",
"type": "Image",
@@ -57137,9 +33361,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00200",
"type": "ImageService3",
@@ -57149,11 +33371,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00200",
"@type": "ImageService2",
@@ -57163,45 +33383,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00200/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00201/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 201"],
- "sv": [
-
- "Bild 201"
-
- ],
-
- "en": [
-
- "Image 201"
-
- ]
-
+ "en": ["Image 201"]
},
"width": 6080,
@@ -57209,199 +33410,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00201"]}
-
+ "value": { "none": ["A0067545_00201"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00201"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00201"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00201"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00201"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00201.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00201"]},
+ "label": { "en": ["ALTO XML for A0067545_00201"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00201/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00201/annotation",
"type": "Annotation",
@@ -57409,7 +33516,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00201/full/max/0/default.jpg",
"type": "Image",
@@ -57421,9 +33527,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00201",
"type": "ImageService3",
@@ -57433,11 +33537,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00201",
"@type": "ImageService2",
@@ -57447,45 +33549,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00201/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00202/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 202"],
- "sv": [
-
- "Bild 202"
-
- ],
-
- "en": [
-
- "Image 202"
-
- ]
-
+ "en": ["Image 202"]
},
"width": 6016,
@@ -57493,199 +33576,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00202"]}
-
+ "value": { "none": ["A0067545_00202"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00202"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00202"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00202"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00202"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00202.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00202"]},
+ "label": { "en": ["ALTO XML for A0067545_00202"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00202/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00202/annotation",
"type": "Annotation",
@@ -57693,7 +33682,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00202/full/max/0/default.jpg",
"type": "Image",
@@ -57705,9 +33693,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00202",
"type": "ImageService3",
@@ -57717,11 +33703,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00202",
"@type": "ImageService2",
@@ -57731,45 +33715,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00202/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00203/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 203"],
- "sv": [
-
- "Bild 203"
-
- ],
-
- "en": [
-
- "Image 203"
-
- ]
-
+ "en": ["Image 203"]
},
"width": 6016,
@@ -57777,199 +33742,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00203"]}
-
+ "value": { "none": ["A0067545_00203"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00203"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00203"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00203"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00203"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00203.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00203"]},
+ "label": { "en": ["ALTO XML for A0067545_00203"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00203/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00203/annotation",
"type": "Annotation",
@@ -57977,7 +33848,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00203/full/max/0/default.jpg",
"type": "Image",
@@ -57989,9 +33859,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00203",
"type": "ImageService3",
@@ -58001,11 +33869,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00203",
"@type": "ImageService2",
@@ -58015,45 +33881,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00203/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00204/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 204"],
- "sv": [
-
- "Bild 204"
-
- ],
-
- "en": [
-
- "Image 204"
-
- ]
-
+ "en": ["Image 204"]
},
"width": 6016,
@@ -58061,199 +33908,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00204"]}
-
+ "value": { "none": ["A0067545_00204"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00204"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00204"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00204"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00204"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00204.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00204"]},
+ "label": { "en": ["ALTO XML for A0067545_00204"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00204/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00204/annotation",
"type": "Annotation",
@@ -58261,7 +34014,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00204/full/max/0/default.jpg",
"type": "Image",
@@ -58273,9 +34025,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00204",
"type": "ImageService3",
@@ -58285,11 +34035,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00204",
"@type": "ImageService2",
@@ -58299,45 +34047,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00204/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00205/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 205"],
- "sv": [
-
- "Bild 205"
-
- ],
-
- "en": [
-
- "Image 205"
-
- ]
-
+ "en": ["Image 205"]
},
"width": 5984,
@@ -58345,199 +34074,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00205"]}
-
+ "value": { "none": ["A0067545_00205"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00205"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00205"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00205"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00205"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
- "value": {
-
- "sv": [
-
- "Texten är skapad med artificiell intelligens och kan innehålla fel."
-
- ],
-
- "en": [
-
- "The text is created with artificial intelligence and may contain errors."
-
- ]
-
- }
-
- },
-
- {
-
- "label": {
-
- "sv": [
-
- "Konfidensvärde"
-
+ "value": {
+ "sv": [
+ "Texten är skapad med artificiell intelligens och kan innehålla fel."
],
"en": [
-
- "Confidence value"
-
+ "The text is created with artificial intelligence and may contain errors."
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Konfidensvärde"],
+
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9918
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9918
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00205.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00205"]},
+ "label": { "en": ["ALTO XML for A0067545_00205"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00205/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00205/annotation",
"type": "Annotation",
@@ -58545,7 +34180,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00205/full/max/0/default.jpg",
"type": "Image",
@@ -58557,9 +34191,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00205",
"type": "ImageService3",
@@ -58569,11 +34201,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00205",
"@type": "ImageService2",
@@ -58583,45 +34213,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00205/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00206/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 206"],
- "sv": [
-
- "Bild 206"
-
- ],
-
- "en": [
-
- "Image 206"
-
- ]
-
+ "en": ["Image 206"]
},
"width": 6016,
@@ -58629,199 +34240,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00206"]}
-
+ "value": { "none": ["A0067545_00206"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00206"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00206"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00206"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00206"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00206.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00206"]},
+ "label": { "en": ["ALTO XML for A0067545_00206"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00206/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00206/annotation",
"type": "Annotation",
@@ -58829,7 +34346,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00206/full/max/0/default.jpg",
"type": "Image",
@@ -58841,9 +34357,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00206",
"type": "ImageService3",
@@ -58853,11 +34367,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00206",
"@type": "ImageService2",
@@ -58867,45 +34379,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00206/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00207/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 207"],
- "sv": [
-
- "Bild 207"
-
- ],
-
- "en": [
-
- "Image 207"
-
- ]
-
+ "en": ["Image 207"]
},
"width": 6016,
@@ -58913,199 +34406,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00207"]}
-
+ "value": { "none": ["A0067545_00207"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00207"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00207"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00207"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00207"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00207.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00207"]},
+ "label": { "en": ["ALTO XML for A0067545_00207"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00207/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00207/annotation",
"type": "Annotation",
@@ -59113,7 +34512,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00207/full/max/0/default.jpg",
"type": "Image",
@@ -59125,9 +34523,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00207",
"type": "ImageService3",
@@ -59137,11 +34533,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00207",
"@type": "ImageService2",
@@ -59151,45 +34545,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00207/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00208/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 208"],
- "sv": [
-
- "Bild 208"
-
- ],
-
- "en": [
-
- "Image 208"
-
- ]
-
+ "en": ["Image 208"]
},
"width": 6016,
@@ -59197,199 +34572,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00208"]}
-
+ "value": { "none": ["A0067545_00208"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00208"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00208"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00208"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00208"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9890
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9890
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00208.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00208"]},
+ "label": { "en": ["ALTO XML for A0067545_00208"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00208/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00208/annotation",
"type": "Annotation",
@@ -59397,7 +34678,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00208/full/max/0/default.jpg",
"type": "Image",
@@ -59409,9 +34689,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00208",
"type": "ImageService3",
@@ -59421,11 +34699,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00208",
"@type": "ImageService2",
@@ -59435,45 +34711,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00208/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00209/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 209"],
- "sv": [
-
- "Bild 209"
-
- ],
-
- "en": [
-
- "Image 209"
-
- ]
-
+ "en": ["Image 209"]
},
"width": 6016,
@@ -59481,199 +34738,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00209"]}
-
+ "value": { "none": ["A0067545_00209"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00209"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00209"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00209"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00209"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9926
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9926
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00209.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00209"]},
+ "label": { "en": ["ALTO XML for A0067545_00209"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00209/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00209/annotation",
"type": "Annotation",
@@ -59681,7 +34844,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00209/full/max/0/default.jpg",
"type": "Image",
@@ -59693,9 +34855,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00209",
"type": "ImageService3",
@@ -59705,11 +34865,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00209",
"@type": "ImageService2",
@@ -59719,45 +34877,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00209/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00210/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 210"],
- "sv": [
-
- "Bild 210"
-
- ],
-
- "en": [
-
- "Image 210"
-
- ]
-
+ "en": ["Image 210"]
},
"width": 5984,
@@ -59765,199 +34904,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00210"]}
-
+ "value": { "none": ["A0067545_00210"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00210"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00210"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00210"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00210"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00210.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00210"]},
+ "label": { "en": ["ALTO XML for A0067545_00210"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00210/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00210/annotation",
"type": "Annotation",
@@ -59965,7 +35010,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00210/full/max/0/default.jpg",
"type": "Image",
@@ -59977,9 +35021,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00210",
"type": "ImageService3",
@@ -59989,11 +35031,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00210",
"@type": "ImageService2",
@@ -60003,45 +35043,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00210/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00211/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 211"],
- "sv": [
-
- "Bild 211"
-
- ],
-
- "en": [
-
- "Image 211"
-
- ]
-
+ "en": ["Image 211"]
},
"width": 5984,
@@ -60049,199 +35070,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00211"]}
-
+ "value": { "none": ["A0067545_00211"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00211"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00211"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00211"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00211"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00211.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00211"]},
+ "label": { "en": ["ALTO XML for A0067545_00211"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00211/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00211/annotation",
"type": "Annotation",
@@ -60249,7 +35176,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00211/full/max/0/default.jpg",
"type": "Image",
@@ -60261,9 +35187,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00211",
"type": "ImageService3",
@@ -60273,11 +35197,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00211",
"@type": "ImageService2",
@@ -60287,45 +35209,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00211/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00212/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 212"],
- "sv": [
-
- "Bild 212"
-
- ],
-
- "en": [
-
- "Image 212"
-
- ]
-
+ "en": ["Image 212"]
},
"width": 5984,
@@ -60333,199 +35236,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00212"]}
-
+ "value": { "none": ["A0067545_00212"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00212"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00212"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00212"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00212"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9882
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9882
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00212.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00212"]},
+ "label": { "en": ["ALTO XML for A0067545_00212"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00212/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00212/annotation",
"type": "Annotation",
@@ -60533,7 +35342,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00212/full/max/0/default.jpg",
"type": "Image",
@@ -60545,9 +35353,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00212",
"type": "ImageService3",
@@ -60557,11 +35363,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00212",
"@type": "ImageService2",
@@ -60571,45 +35375,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00212/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00213/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 213"],
- "sv": [
-
- "Bild 213"
-
- ],
-
- "en": [
-
- "Image 213"
-
- ]
-
+ "en": ["Image 213"]
},
"width": 5960,
@@ -60617,199 +35402,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00213"]}
-
+ "value": { "none": ["A0067545_00213"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00213"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00213"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00213"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00213"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9930
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9930
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00213.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00213"]},
+ "label": { "en": ["ALTO XML for A0067545_00213"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00213/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00213/annotation",
"type": "Annotation",
@@ -60817,7 +35508,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00213/full/max/0/default.jpg",
"type": "Image",
@@ -60829,9 +35519,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00213",
"type": "ImageService3",
@@ -60841,11 +35529,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00213",
"@type": "ImageService2",
@@ -60855,45 +35541,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00213/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00214/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 214"],
- "sv": [
-
- "Bild 214"
-
- ],
-
- "en": [
-
- "Image 214"
-
- ]
-
+ "en": ["Image 214"]
},
"width": 6016,
@@ -60901,199 +35568,105 @@
"height": 5320,
"metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00214"]}
-
- },
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00214"
-
- ]
-
- }
-
+ "value": { "none": ["A0067545_00214"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "sv": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00214"
-
- ],
-
- "en": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00214"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00214"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Transkriptionsmetod"
+ "en": ["Source reference"]
+ },
+ "value": {
+ "sv": [
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00214"
],
"en": [
-
- "Transcription method"
-
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00214"
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Transkriptionsmetod"],
+
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9857
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9857
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00214.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00214"]},
+ "label": { "en": ["ALTO XML for A0067545_00214"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00214/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00214/annotation",
"type": "Annotation",
@@ -61101,7 +35674,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00214/full/max/0/default.jpg",
"type": "Image",
@@ -61113,9 +35685,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00214",
"type": "ImageService3",
@@ -61125,11 +35695,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00214",
"@type": "ImageService2",
@@ -61139,45 +35707,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00214/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00215/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 215"],
- "sv": [
-
- "Bild 215"
-
- ],
-
- "en": [
-
- "Image 215"
-
- ]
-
+ "en": ["Image 215"]
},
"width": 5928,
@@ -61185,199 +35734,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00215"]}
-
+ "value": { "none": ["A0067545_00215"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00215"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00215"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00215"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00215"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9901
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9901
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00215.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00215"]},
+ "label": { "en": ["ALTO XML for A0067545_00215"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00215/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00215/annotation",
"type": "Annotation",
@@ -61385,7 +35840,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00215/full/max/0/default.jpg",
"type": "Image",
@@ -61397,9 +35851,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00215",
"type": "ImageService3",
@@ -61409,11 +35861,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00215",
"@type": "ImageService2",
@@ -61423,45 +35873,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00215/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00216/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 216"],
- "sv": [
-
- "Bild 216"
-
- ],
-
- "en": [
-
- "Image 216"
-
- ]
-
+ "en": ["Image 216"]
},
"width": 6016,
@@ -61469,199 +35900,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00216"]}
-
+ "value": { "none": ["A0067545_00216"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00216"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00216"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00216"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00216"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00216.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00216"]},
+ "label": { "en": ["ALTO XML for A0067545_00216"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00216/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00216/annotation",
"type": "Annotation",
@@ -61669,7 +36006,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00216/full/max/0/default.jpg",
"type": "Image",
@@ -61681,9 +36017,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00216",
"type": "ImageService3",
@@ -61693,11 +36027,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00216",
"@type": "ImageService2",
@@ -61707,45 +36039,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00216/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00217/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 217"],
- "sv": [
-
- "Bild 217"
-
- ],
-
- "en": [
-
- "Image 217"
-
- ]
-
+ "en": ["Image 217"]
},
"width": 6016,
@@ -61753,199 +36066,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00217"]}
-
+ "value": { "none": ["A0067545_00217"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00217"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00217"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00217"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00217"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00217.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00217"]},
+ "label": { "en": ["ALTO XML for A0067545_00217"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00217/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00217/annotation",
"type": "Annotation",
@@ -61953,7 +36172,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00217/full/max/0/default.jpg",
"type": "Image",
@@ -61965,9 +36183,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00217",
"type": "ImageService3",
@@ -61977,11 +36193,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00217",
"@type": "ImageService2",
@@ -61991,45 +36205,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00217/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00218/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 218"],
- "sv": [
-
- "Bild 218"
-
- ],
-
- "en": [
-
- "Image 218"
-
- ]
-
+ "en": ["Image 218"]
},
"width": 5896,
@@ -62037,199 +36232,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00218"]}
-
+ "value": { "none": ["A0067545_00218"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00218"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00218"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00218"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00218"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9927
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9927
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00218.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00218"]},
+ "label": { "en": ["ALTO XML for A0067545_00218"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00218/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00218/annotation",
"type": "Annotation",
@@ -62237,7 +36338,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00218/full/max/0/default.jpg",
"type": "Image",
@@ -62249,9 +36349,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00218",
"type": "ImageService3",
@@ -62261,11 +36359,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00218",
"@type": "ImageService2",
@@ -62275,45 +36371,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00218/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00219/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 219"],
- "sv": [
-
- "Bild 219"
-
- ],
-
- "en": [
-
- "Image 219"
-
- ]
-
+ "en": ["Image 219"]
},
"width": 5928,
@@ -62321,199 +36398,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00219"]}
-
+ "value": { "none": ["A0067545_00219"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00219"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00219"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00219"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00219"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00219.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00219"]},
+ "label": { "en": ["ALTO XML for A0067545_00219"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00219/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00219/annotation",
"type": "Annotation",
@@ -62521,7 +36504,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00219/full/max/0/default.jpg",
"type": "Image",
@@ -62533,9 +36515,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00219",
"type": "ImageService3",
@@ -62545,11 +36525,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00219",
"@type": "ImageService2",
@@ -62559,45 +36537,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00219/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00220/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 220"],
- "sv": [
-
- "Bild 220"
-
- ],
-
- "en": [
-
- "Image 220"
-
- ]
-
+ "en": ["Image 220"]
},
"width": 5896,
@@ -62605,199 +36564,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00220"]}
-
+ "value": { "none": ["A0067545_00220"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00220"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00220"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00220"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00220"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00220.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00220"]},
+ "label": { "en": ["ALTO XML for A0067545_00220"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00220/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00220/annotation",
"type": "Annotation",
@@ -62805,7 +36670,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00220/full/max/0/default.jpg",
"type": "Image",
@@ -62817,9 +36681,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00220",
"type": "ImageService3",
@@ -62829,11 +36691,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00220",
"@type": "ImageService2",
@@ -62843,45 +36703,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00220/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00221/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 221"],
- "sv": [
-
- "Bild 221"
-
- ],
-
- "en": [
-
- "Image 221"
-
- ]
-
+ "en": ["Image 221"]
},
"width": 5896,
@@ -62889,199 +36730,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00221"]}
-
+ "value": { "none": ["A0067545_00221"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00221"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00221"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00221"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00221"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9923
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9923
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00221.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00221"]},
+ "label": { "en": ["ALTO XML for A0067545_00221"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00221/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00221/annotation",
"type": "Annotation",
@@ -63089,7 +36836,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00221/full/max/0/default.jpg",
"type": "Image",
@@ -63101,9 +36847,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00221",
"type": "ImageService3",
@@ -63113,11 +36857,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00221",
"@type": "ImageService2",
@@ -63127,45 +36869,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00221/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00222/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 222"],
- "sv": [
-
- "Bild 222"
-
- ],
-
- "en": [
-
- "Image 222"
-
- ]
-
+ "en": ["Image 222"]
},
"width": 6112,
@@ -63173,199 +36896,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00222"]}
-
+ "value": { "none": ["A0067545_00222"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00222"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00222"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00222"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00222"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9918
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9918
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00222.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00222"]},
+ "label": { "en": ["ALTO XML for A0067545_00222"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00222/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00222/annotation",
"type": "Annotation",
@@ -63373,7 +37002,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00222/full/max/0/default.jpg",
"type": "Image",
@@ -63385,9 +37013,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00222",
"type": "ImageService3",
@@ -63397,11 +37023,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00222",
"@type": "ImageService2",
@@ -63411,45 +37035,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00222/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00223/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 223"],
- "sv": [
-
- "Bild 223"
-
- ],
-
- "en": [
-
- "Image 223"
-
- ]
-
+ "en": ["Image 223"]
},
"width": 5992,
@@ -63457,199 +37062,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00223"]}
-
+ "value": { "none": ["A0067545_00223"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00223"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00223"]
}
-
},
- {
-
- "label": {
-
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
+ {
+ "label": {
+ "sv": ["Källhänvisning"],
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00223"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00223"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00223.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00223"]},
+ "label": { "en": ["ALTO XML for A0067545_00223"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00223/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00223/annotation",
"type": "Annotation",
@@ -63657,7 +37168,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00223/full/max/0/default.jpg",
"type": "Image",
@@ -63669,9 +37179,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00223",
"type": "ImageService3",
@@ -63681,11 +37189,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00223",
"@type": "ImageService2",
@@ -63695,45 +37201,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00223/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00224/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 224"],
- "sv": [
-
- "Bild 224"
-
- ],
-
- "en": [
-
- "Image 224"
-
- ]
-
+ "en": ["Image 224"]
},
"width": 5896,
@@ -63741,199 +37228,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00224"]}
-
+ "value": { "none": ["A0067545_00224"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00224"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00224"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00224"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00224"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9942
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9942
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00224.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00224"]},
+ "label": { "en": ["ALTO XML for A0067545_00224"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00224/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00224/annotation",
"type": "Annotation",
@@ -63941,7 +37334,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00224/full/max/0/default.jpg",
"type": "Image",
@@ -63953,9 +37345,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00224",
"type": "ImageService3",
@@ -63965,11 +37355,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00224",
"@type": "ImageService2",
@@ -63979,45 +37367,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00224/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00225/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 225"],
- "sv": [
-
- "Bild 225"
-
- ],
-
- "en": [
-
- "Image 225"
-
- ]
-
+ "en": ["Image 225"]
},
"width": 6024,
@@ -64025,199 +37394,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00225"]}
-
+ "value": { "none": ["A0067545_00225"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00225"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00225"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00225"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00225"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9928
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9928
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00225.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00225"]},
+ "label": { "en": ["ALTO XML for A0067545_00225"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00225/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00225/annotation",
"type": "Annotation",
@@ -64225,7 +37500,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00225/full/max/0/default.jpg",
"type": "Image",
@@ -64237,9 +37511,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00225",
"type": "ImageService3",
@@ -64249,11 +37521,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00225",
"@type": "ImageService2",
@@ -64263,45 +37533,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00225/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00226/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 226"],
- "sv": [
-
- "Bild 226"
-
- ],
-
- "en": [
-
- "Image 226"
-
- ]
-
+ "en": ["Image 226"]
},
"width": 5928,
@@ -64309,199 +37560,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00226"]}
-
+ "value": { "none": ["A0067545_00226"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00226"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00226"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00226"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00226"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9916
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9916
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00226.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00226"]},
+ "label": { "en": ["ALTO XML for A0067545_00226"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00226/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00226/annotation",
"type": "Annotation",
@@ -64509,7 +37666,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00226/full/max/0/default.jpg",
"type": "Image",
@@ -64521,9 +37677,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00226",
"type": "ImageService3",
@@ -64533,11 +37687,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00226",
"@type": "ImageService2",
@@ -64547,45 +37699,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00226/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00227/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 227"],
- "sv": [
-
- "Bild 227"
-
- ],
-
- "en": [
-
- "Image 227"
-
- ]
-
+ "en": ["Image 227"]
},
"width": 5864,
@@ -64593,199 +37726,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00227"]}
-
+ "value": { "none": ["A0067545_00227"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00227"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00227"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00227"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00227"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9942
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9942
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00227.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00227"]},
+ "label": { "en": ["ALTO XML for A0067545_00227"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00227/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00227/annotation",
"type": "Annotation",
@@ -64793,7 +37832,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00227/full/max/0/default.jpg",
"type": "Image",
@@ -64805,9 +37843,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00227",
"type": "ImageService3",
@@ -64817,11 +37853,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00227",
"@type": "ImageService2",
@@ -64831,45 +37865,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00227/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00228/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 228"],
- "sv": [
-
- "Bild 228"
-
- ],
-
- "en": [
-
- "Image 228"
-
- ]
-
+ "en": ["Image 228"]
},
"width": 5928,
@@ -64877,199 +37892,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00228"]}
-
+ "value": { "none": ["A0067545_00228"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00228"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00228"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00228"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00228"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9906
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9906
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00228.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00228"]},
+ "label": { "en": ["ALTO XML for A0067545_00228"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00228/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00228/annotation",
"type": "Annotation",
@@ -65077,7 +37998,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00228/full/max/0/default.jpg",
"type": "Image",
@@ -65089,9 +38009,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00228",
"type": "ImageService3",
@@ -65101,11 +38019,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00228",
"@type": "ImageService2",
@@ -65115,45 +38031,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00228/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00229/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 229"],
- "sv": [
-
- "Bild 229"
-
- ],
-
- "en": [
-
- "Image 229"
-
- ]
-
+ "en": ["Image 229"]
},
"width": 5928,
@@ -65161,199 +38058,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00229"]}
-
+ "value": { "none": ["A0067545_00229"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00229"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00229"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00229"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00229"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9881
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9881
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00229.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00229"]},
+ "label": { "en": ["ALTO XML for A0067545_00229"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00229/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00229/annotation",
"type": "Annotation",
@@ -65361,7 +38164,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00229/full/max/0/default.jpg",
"type": "Image",
@@ -65373,9 +38175,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00229",
"type": "ImageService3",
@@ -65385,11 +38185,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00229",
"@type": "ImageService2",
@@ -65399,45 +38197,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00229/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00230/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 230"],
- "sv": [
-
- "Bild 230"
-
- ],
-
- "en": [
-
- "Image 230"
-
- ]
-
+ "en": ["Image 230"]
},
"width": 5960,
@@ -65445,199 +38224,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00230"]}
-
+ "value": { "none": ["A0067545_00230"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00230"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00230"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00230"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00230"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9912
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9912
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00230.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00230"]},
+ "label": { "en": ["ALTO XML for A0067545_00230"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00230/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00230/annotation",
"type": "Annotation",
@@ -65645,7 +38330,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00230/full/max/0/default.jpg",
"type": "Image",
@@ -65657,9 +38341,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00230",
"type": "ImageService3",
@@ -65669,11 +38351,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00230",
"@type": "ImageService2",
@@ -65683,45 +38363,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00230/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00231/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 231"],
- "sv": [
-
- "Bild 231"
-
- ],
-
- "en": [
-
- "Image 231"
-
- ]
-
+ "en": ["Image 231"]
},
"width": 5896,
@@ -65729,199 +38390,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00231"]}
-
+ "value": { "none": ["A0067545_00231"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00231"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00231"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00231"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00231"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9924
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9924
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00231.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00231"]},
+ "label": { "en": ["ALTO XML for A0067545_00231"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00231/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00231/annotation",
"type": "Annotation",
@@ -65929,7 +38496,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00231/full/max/0/default.jpg",
"type": "Image",
@@ -65941,9 +38507,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00231",
"type": "ImageService3",
@@ -65953,11 +38517,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00231",
"@type": "ImageService2",
@@ -65967,245 +38529,132 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00231/canvas"
-
}
-
]
-
}
-
]
-
},
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00232/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 232"
-
- ],
-
- "en": [
-
- "Image 232"
-
- ]
-
- },
-
- "width": 5928,
-
- "height": 5320,
-
- "metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00232"]}
-
- },
-
- {
-
- "label": {
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00232/canvas",
- "sv": [
+ "type": "Canvas",
- "Länk"
+ "label": {
+ "sv": ["Bild 232"],
- ],
+ "en": ["Image 232"]
+ },
- "en": [
+ "width": 5928,
- "Link"
+ "height": 5320,
- ]
+ "metadata": [
+ {
+ "label": {
+ "sv": ["Bildid"],
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
+ "value": { "none": ["A0067545_00232"] }
+ },
- "https://sok.riksarkivet.se/bildvisning/A0067545_00232"
+ {
+ "label": {
+ "sv": ["Länk"],
- ]
+ "en": ["Link"]
+ },
+ "value": {
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00232"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00232"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00232"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9925
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9925
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00232.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00232"]},
+ "label": { "en": ["ALTO XML for A0067545_00232"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00232/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00232/annotation",
"type": "Annotation",
@@ -66213,7 +38662,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00232/full/max/0/default.jpg",
"type": "Image",
@@ -66225,9 +38673,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00232",
"type": "ImageService3",
@@ -66237,11 +38683,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00232",
"@type": "ImageService2",
@@ -66251,45 +38695,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00232/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00233/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 233"],
- "sv": [
-
- "Bild 233"
-
- ],
-
- "en": [
-
- "Image 233"
-
- ]
-
+ "en": ["Image 233"]
},
"width": 5896,
@@ -66297,199 +38722,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00233"]}
-
+ "value": { "none": ["A0067545_00233"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00233"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00233"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00233"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00233"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9916
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9916
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00233.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00233"]},
+ "label": { "en": ["ALTO XML for A0067545_00233"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00233/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00233/annotation",
"type": "Annotation",
@@ -66497,7 +38828,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00233/full/max/0/default.jpg",
"type": "Image",
@@ -66509,9 +38839,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00233",
"type": "ImageService3",
@@ -66521,11 +38849,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00233",
"@type": "ImageService2",
@@ -66535,45 +38861,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00233/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00234/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 234"],
- "sv": [
-
- "Bild 234"
-
- ],
-
- "en": [
-
- "Image 234"
-
- ]
-
+ "en": ["Image 234"]
},
"width": 6016,
@@ -66581,199 +38888,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00234"]}
-
+ "value": { "none": ["A0067545_00234"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00234"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00234"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00234"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00234"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9882
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9882
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00234.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00234"]},
+ "label": { "en": ["ALTO XML for A0067545_00234"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00234/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00234/annotation",
"type": "Annotation",
@@ -66781,7 +38994,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00234/full/max/0/default.jpg",
"type": "Image",
@@ -66793,9 +39005,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00234",
"type": "ImageService3",
@@ -66805,11 +39015,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00234",
"@type": "ImageService2",
@@ -66819,45 +39027,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00234/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00235/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 235"],
- "sv": [
-
- "Bild 235"
-
- ],
-
- "en": [
-
- "Image 235"
-
- ]
-
+ "en": ["Image 235"]
},
"width": 5928,
@@ -66865,199 +39054,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00235"]}
-
+ "value": { "none": ["A0067545_00235"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00235"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00235"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00235"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00235"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9806
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9806
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00235.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00235"]},
+ "label": { "en": ["ALTO XML for A0067545_00235"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00235/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00235/annotation",
"type": "Annotation",
@@ -67065,7 +39160,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00235/full/max/0/default.jpg",
"type": "Image",
@@ -67077,9 +39171,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00235",
"type": "ImageService3",
@@ -67089,11 +39181,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00235",
"@type": "ImageService2",
@@ -67103,45 +39193,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00235/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00236/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 236"],
- "sv": [
-
- "Bild 236"
-
- ],
-
- "en": [
-
- "Image 236"
-
- ]
-
+ "en": ["Image 236"]
},
"width": 6016,
@@ -67149,199 +39220,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00236"]}
-
+ "value": { "none": ["A0067545_00236"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00236"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00236"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00236"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00236"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9949
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9949
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00236.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00236"]},
+ "label": { "en": ["ALTO XML for A0067545_00236"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00236/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00236/annotation",
"type": "Annotation",
@@ -67349,7 +39326,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00236/full/max/0/default.jpg",
"type": "Image",
@@ -67361,9 +39337,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00236",
"type": "ImageService3",
@@ -67373,11 +39347,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00236",
"@type": "ImageService2",
@@ -67387,45 +39359,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00236/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00237/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 237"],
- "sv": [
-
- "Bild 237"
-
- ],
-
- "en": [
-
- "Image 237"
-
- ]
-
+ "en": ["Image 237"]
},
"width": 5896,
@@ -67433,199 +39386,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00237"]}
-
+ "value": { "none": ["A0067545_00237"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00237"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00237"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00237"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00237"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9842
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9842
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00237.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00237"]},
+ "label": { "en": ["ALTO XML for A0067545_00237"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00237/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00237/annotation",
"type": "Annotation",
@@ -67633,7 +39492,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00237/full/max/0/default.jpg",
"type": "Image",
@@ -67645,9 +39503,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00237",
"type": "ImageService3",
@@ -67657,11 +39513,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00237",
"@type": "ImageService2",
@@ -67671,45 +39525,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00237/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00238/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 238"],
- "sv": [
-
- "Bild 238"
-
- ],
-
- "en": [
-
- "Image 238"
-
- ]
-
+ "en": ["Image 238"]
},
"width": 6048,
@@ -67717,199 +39552,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00238"]}
-
+ "value": { "none": ["A0067545_00238"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00238"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00238"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00238"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00238"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00238.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00238"]},
+ "label": { "en": ["ALTO XML for A0067545_00238"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00238/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00238/annotation",
"type": "Annotation",
@@ -67917,7 +39658,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00238/full/max/0/default.jpg",
"type": "Image",
@@ -67929,9 +39669,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00238",
"type": "ImageService3",
@@ -67941,11 +39679,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00238",
"@type": "ImageService2",
@@ -67955,45 +39691,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00238/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00239/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 239"],
- "sv": [
-
- "Bild 239"
-
- ],
-
- "en": [
-
- "Image 239"
-
- ]
-
+ "en": ["Image 239"]
},
"width": 6016,
@@ -68001,199 +39718,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00239"]}
-
+ "value": { "none": ["A0067545_00239"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00239"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00239"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00239"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00239"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9627
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9627
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00239.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00239"]},
+ "label": { "en": ["ALTO XML for A0067545_00239"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00239/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00239/annotation",
"type": "Annotation",
@@ -68201,7 +39824,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00239/full/max/0/default.jpg",
"type": "Image",
@@ -68213,9 +39835,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00239",
"type": "ImageService3",
@@ -68225,11 +39845,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00239",
"@type": "ImageService2",
@@ -68239,45 +39857,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00239/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00240/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 240"],
- "sv": [
-
- "Bild 240"
-
- ],
-
- "en": [
-
- "Image 240"
-
- ]
-
+ "en": ["Image 240"]
},
"width": 6016,
@@ -68285,199 +39884,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00240"]}
-
+ "value": { "none": ["A0067545_00240"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00240"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00240"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00240"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00240"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9876
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9876
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00240.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00240"]},
+ "label": { "en": ["ALTO XML for A0067545_00240"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00240/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00240/annotation",
"type": "Annotation",
@@ -68485,7 +39990,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00240/full/max/0/default.jpg",
"type": "Image",
@@ -68497,9 +40001,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00240",
"type": "ImageService3",
@@ -68509,11 +40011,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00240",
"@type": "ImageService2",
@@ -68523,45 +40023,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00240/canvas"
-
}
-
]
-
}
-
]
+ },
- },
-
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00241/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 241"
-
- ],
-
- "en": [
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00241/canvas",
- "Image 241"
+ "type": "Canvas",
- ]
+ "label": {
+ "sv": ["Bild 241"],
+ "en": ["Image 241"]
},
"width": 6016,
@@ -68569,199 +40050,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00241"]}
-
+ "value": { "none": ["A0067545_00241"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00241"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00241"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00241"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00241"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9842
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9842
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00241.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00241"]},
+ "label": { "en": ["ALTO XML for A0067545_00241"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00241/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00241/annotation",
"type": "Annotation",
@@ -68769,7 +40156,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00241/full/max/0/default.jpg",
"type": "Image",
@@ -68781,9 +40167,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00241",
"type": "ImageService3",
@@ -68793,11 +40177,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00241",
"@type": "ImageService2",
@@ -68807,45 +40189,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00241/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00242/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 242"],
- "sv": [
-
- "Bild 242"
-
- ],
-
- "en": [
-
- "Image 242"
-
- ]
-
+ "en": ["Image 242"]
},
"width": 6016,
@@ -68853,199 +40216,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00242"]}
-
+ "value": { "none": ["A0067545_00242"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00242"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00242"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00242"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00242"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9925
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9925
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00242.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00242"]},
+ "label": { "en": ["ALTO XML for A0067545_00242"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00242/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00242/annotation",
"type": "Annotation",
@@ -69053,7 +40322,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00242/full/max/0/default.jpg",
"type": "Image",
@@ -69065,9 +40333,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00242",
"type": "ImageService3",
@@ -69077,11 +40343,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00242",
"@type": "ImageService2",
@@ -69091,45 +40355,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00242/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00243/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 243"],
- "sv": [
-
- "Bild 243"
-
- ],
-
- "en": [
-
- "Image 243"
-
- ]
-
+ "en": ["Image 243"]
},
"width": 6016,
@@ -69137,199 +40382,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00243"]}
-
+ "value": { "none": ["A0067545_00243"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00243"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00243"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00243"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00243"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00243.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00243"]},
+ "label": { "en": ["ALTO XML for A0067545_00243"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00243/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00243/annotation",
"type": "Annotation",
@@ -69337,7 +40488,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00243/full/max/0/default.jpg",
"type": "Image",
@@ -69349,9 +40499,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00243",
"type": "ImageService3",
@@ -69361,11 +40509,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00243",
"@type": "ImageService2",
@@ -69375,45 +40521,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00243/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00244/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 244"],
- "sv": [
-
- "Bild 244"
-
- ],
-
- "en": [
-
- "Image 244"
-
- ]
-
+ "en": ["Image 244"]
},
"width": 6016,
@@ -69421,199 +40548,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00244"]}
-
+ "value": { "none": ["A0067545_00244"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00244"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00244"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00244"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00244"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9920
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9920
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00244.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00244"]},
+ "label": { "en": ["ALTO XML for A0067545_00244"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00244/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00244/annotation",
"type": "Annotation",
@@ -69621,7 +40654,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00244/full/max/0/default.jpg",
"type": "Image",
@@ -69633,9 +40665,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00244",
"type": "ImageService3",
@@ -69645,11 +40675,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00244",
"@type": "ImageService2",
@@ -69659,45 +40687,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00244/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00245/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 245"],
- "sv": [
-
- "Bild 245"
-
- ],
-
- "en": [
-
- "Image 245"
-
- ]
-
+ "en": ["Image 245"]
},
"width": 6016,
@@ -69705,199 +40714,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00245"]}
-
+ "value": { "none": ["A0067545_00245"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00245"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00245"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00245"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00245"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9926
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9926
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00245.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00245"]},
+ "label": { "en": ["ALTO XML for A0067545_00245"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00245/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00245/annotation",
"type": "Annotation",
@@ -69905,7 +40820,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00245/full/max/0/default.jpg",
"type": "Image",
@@ -69917,9 +40831,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00245",
"type": "ImageService3",
@@ -69929,11 +40841,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00245",
"@type": "ImageService2",
@@ -69943,45 +40853,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00245/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00246/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 246"],
- "sv": [
-
- "Bild 246"
-
- ],
-
- "en": [
-
- "Image 246"
-
- ]
-
+ "en": ["Image 246"]
},
"width": 6016,
@@ -69989,199 +40880,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00246"]}
-
+ "value": { "none": ["A0067545_00246"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00246"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00246"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00246"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00246"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9822
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9822
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00246.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00246"]},
+ "label": { "en": ["ALTO XML for A0067545_00246"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00246/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00246/annotation",
"type": "Annotation",
@@ -70189,7 +40986,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00246/full/max/0/default.jpg",
"type": "Image",
@@ -70201,9 +40997,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00246",
"type": "ImageService3",
@@ -70213,11 +41007,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00246",
"@type": "ImageService2",
@@ -70227,45 +41019,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00246/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00247/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 247"],
- "sv": [
-
- "Bild 247"
-
- ],
-
- "en": [
-
- "Image 247"
-
- ]
-
+ "en": ["Image 247"]
},
"width": 5896,
@@ -70273,199 +41046,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00247"]}
-
+ "value": { "none": ["A0067545_00247"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00247"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00247"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00247"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00247"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.0000
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.0000
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00247.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00247"]},
+ "label": { "en": ["ALTO XML for A0067545_00247"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00247/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00247/annotation",
"type": "Annotation",
@@ -70473,7 +41152,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00247/full/max/0/default.jpg",
"type": "Image",
@@ -70485,9 +41163,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00247",
"type": "ImageService3",
@@ -70497,11 +41173,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00247",
"@type": "ImageService2",
@@ -70511,45 +41185,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00247/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00248/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 248"],
- "sv": [
-
- "Bild 248"
-
- ],
-
- "en": [
-
- "Image 248"
-
- ]
-
+ "en": ["Image 248"]
},
"width": 6016,
@@ -70557,199 +41212,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00248"]}
-
+ "value": { "none": ["A0067545_00248"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00248"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00248"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00248"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00248"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9949
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9949
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00248.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00248"]},
+ "label": { "en": ["ALTO XML for A0067545_00248"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00248/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00248/annotation",
"type": "Annotation",
@@ -70757,7 +41318,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00248/full/max/0/default.jpg",
"type": "Image",
@@ -70769,9 +41329,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00248",
"type": "ImageService3",
@@ -70781,11 +41339,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00248",
"@type": "ImageService2",
@@ -70795,45 +41351,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00248/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00249/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 249"],
- "sv": [
-
- "Bild 249"
-
- ],
-
- "en": [
-
- "Image 249"
-
- ]
-
+ "en": ["Image 249"]
},
"width": 6016,
@@ -70841,199 +41378,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00249"]}
-
+ "value": { "none": ["A0067545_00249"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00249"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00249"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00249"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00249"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00249.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00249"]},
+ "label": { "en": ["ALTO XML for A0067545_00249"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00249/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00249/annotation",
"type": "Annotation",
@@ -71041,7 +41484,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00249/full/max/0/default.jpg",
"type": "Image",
@@ -71053,9 +41495,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00249",
"type": "ImageService3",
@@ -71065,11 +41505,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00249",
"@type": "ImageService2",
@@ -71079,45 +41517,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00249/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00250/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 250"],
- "sv": [
-
- "Bild 250"
-
- ],
-
- "en": [
-
- "Image 250"
-
- ]
-
+ "en": ["Image 250"]
},
"width": 5896,
@@ -71125,199 +41544,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00250"]}
-
+ "value": { "none": ["A0067545_00250"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00250"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00250"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00250"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00250"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9911
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9911
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00250.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00250"]},
+ "label": { "en": ["ALTO XML for A0067545_00250"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00250/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00250/annotation",
"type": "Annotation",
@@ -71325,7 +41650,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00250/full/max/0/default.jpg",
"type": "Image",
@@ -71337,9 +41661,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00250",
"type": "ImageService3",
@@ -71349,11 +41671,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00250",
"@type": "ImageService2",
@@ -71363,45 +41683,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00250/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00251/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 251"],
- "sv": [
-
- "Bild 251"
-
- ],
-
- "en": [
-
- "Image 251"
-
- ]
-
+ "en": ["Image 251"]
},
"width": 6176,
@@ -71409,199 +41710,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00251"]}
-
+ "value": { "none": ["A0067545_00251"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00251"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00251"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00251"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00251"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00251.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00251"]},
+ "label": { "en": ["ALTO XML for A0067545_00251"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00251/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00251/annotation",
"type": "Annotation",
@@ -71609,7 +41816,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00251/full/max/0/default.jpg",
"type": "Image",
@@ -71621,9 +41827,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00251",
"type": "ImageService3",
@@ -71633,11 +41837,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00251",
"@type": "ImageService2",
@@ -71647,45 +41849,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00251/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00252/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 252"],
- "sv": [
-
- "Bild 252"
-
- ],
-
- "en": [
-
- "Image 252"
-
- ]
-
+ "en": ["Image 252"]
},
"width": 5896,
@@ -71693,199 +41876,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00252"]}
-
+ "value": { "none": ["A0067545_00252"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00252"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00252"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00252"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00252"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00252.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00252"]},
+ "label": { "en": ["ALTO XML for A0067545_00252"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00252/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00252/annotation",
"type": "Annotation",
@@ -71893,7 +41982,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00252/full/max/0/default.jpg",
"type": "Image",
@@ -71905,9 +41993,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00252",
"type": "ImageService3",
@@ -71917,11 +42003,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00252",
"@type": "ImageService2",
@@ -71931,45 +42015,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00252/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00253/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 253"],
- "sv": [
-
- "Bild 253"
-
- ],
-
- "en": [
-
- "Image 253"
-
- ]
-
+ "en": ["Image 253"]
},
"width": 6016,
@@ -71977,199 +42042,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00253"]}
-
+ "value": { "none": ["A0067545_00253"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00253"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00253"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00253"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00253"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9956
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9956
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00253.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00253"]},
+ "label": { "en": ["ALTO XML for A0067545_00253"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00253/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00253/annotation",
"type": "Annotation",
@@ -72177,7 +42148,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00253/full/max/0/default.jpg",
"type": "Image",
@@ -72189,9 +42159,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00253",
"type": "ImageService3",
@@ -72201,11 +42169,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00253",
"@type": "ImageService2",
@@ -72215,45 +42181,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00253/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00254/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 254"],
- "sv": [
-
- "Bild 254"
-
- ],
-
- "en": [
-
- "Image 254"
-
- ]
-
+ "en": ["Image 254"]
},
"width": 6176,
@@ -72261,199 +42208,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00254"]}
-
+ "value": { "none": ["A0067545_00254"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00254"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00254"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00254"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00254"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9946
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9946
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00254.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00254"]},
+ "label": { "en": ["ALTO XML for A0067545_00254"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00254/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00254/annotation",
"type": "Annotation",
@@ -72461,7 +42314,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00254/full/max/0/default.jpg",
"type": "Image",
@@ -72473,9 +42325,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00254",
"type": "ImageService3",
@@ -72485,11 +42335,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00254",
"@type": "ImageService2",
@@ -72499,45 +42347,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00254/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00255/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 255"],
- "sv": [
-
- "Bild 255"
-
- ],
-
- "en": [
-
- "Image 255"
-
- ]
-
+ "en": ["Image 255"]
},
"width": 5984,
@@ -72545,199 +42374,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00255"]}
-
+ "value": { "none": ["A0067545_00255"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00255"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00255"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00255"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00255"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9925
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9925
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00255.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00255"]},
+ "label": { "en": ["ALTO XML for A0067545_00255"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00255/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00255/annotation",
"type": "Annotation",
@@ -72745,7 +42480,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00255/full/max/0/default.jpg",
"type": "Image",
@@ -72757,9 +42491,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00255",
"type": "ImageService3",
@@ -72769,11 +42501,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00255",
"@type": "ImageService2",
@@ -72783,45 +42513,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00255/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00256/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 256"],
- "sv": [
-
- "Bild 256"
-
- ],
-
- "en": [
-
- "Image 256"
-
- ]
-
+ "en": ["Image 256"]
},
"width": 6016,
@@ -72829,199 +42540,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00256"]}
-
+ "value": { "none": ["A0067545_00256"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00256"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00256"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00256"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00256"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00256.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00256"]},
+ "label": { "en": ["ALTO XML for A0067545_00256"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00256/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00256/annotation",
"type": "Annotation",
@@ -73029,7 +42646,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00256/full/max/0/default.jpg",
"type": "Image",
@@ -73041,9 +42657,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00256",
"type": "ImageService3",
@@ -73053,11 +42667,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00256",
"@type": "ImageService2",
@@ -73067,45 +42679,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00256/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00257/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 257"],
- "sv": [
-
- "Bild 257"
-
- ],
-
- "en": [
-
- "Image 257"
-
- ]
-
+ "en": ["Image 257"]
},
"width": 5960,
@@ -73113,199 +42706,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00257"]}
-
+ "value": { "none": ["A0067545_00257"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00257"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00257"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00257"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00257"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00257.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00257"]},
+ "label": { "en": ["ALTO XML for A0067545_00257"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00257/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00257/annotation",
"type": "Annotation",
@@ -73313,7 +42812,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00257/full/max/0/default.jpg",
"type": "Image",
@@ -73325,9 +42823,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00257",
"type": "ImageService3",
@@ -73337,11 +42833,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00257",
"@type": "ImageService2",
@@ -73351,45 +42845,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00257/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00258/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 258"],
- "sv": [
-
- "Bild 258"
-
- ],
-
- "en": [
-
- "Image 258"
-
- ]
-
+ "en": ["Image 258"]
},
"width": 5960,
@@ -73397,199 +42872,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00258"]}
-
+ "value": { "none": ["A0067545_00258"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00258"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00258"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00258"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00258"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9933
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9933
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00258.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00258"]},
+ "label": { "en": ["ALTO XML for A0067545_00258"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00258/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00258/annotation",
"type": "Annotation",
@@ -73597,7 +42978,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00258/full/max/0/default.jpg",
"type": "Image",
@@ -73609,9 +42989,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00258",
"type": "ImageService3",
@@ -73621,11 +42999,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00258",
"@type": "ImageService2",
@@ -73635,45 +43011,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00258/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00259/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 259"],
- "sv": [
-
- "Bild 259"
-
- ],
-
- "en": [
-
- "Image 259"
-
- ]
-
+ "en": ["Image 259"]
},
"width": 6016,
@@ -73681,199 +43038,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00259"]}
-
+ "value": { "none": ["A0067545_00259"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00259"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00259"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00259"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00259"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00259.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00259"]},
+ "label": { "en": ["ALTO XML for A0067545_00259"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00259/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00259/annotation",
"type": "Annotation",
@@ -73881,7 +43144,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00259/full/max/0/default.jpg",
"type": "Image",
@@ -73893,9 +43155,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00259",
"type": "ImageService3",
@@ -73905,11 +43165,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00259",
"@type": "ImageService2",
@@ -73919,45 +43177,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00259/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00260/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 260"],
- "sv": [
-
- "Bild 260"
-
- ],
-
- "en": [
-
- "Image 260"
-
- ]
-
+ "en": ["Image 260"]
},
"width": 5984,
@@ -73965,199 +43204,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00260"]}
-
+ "value": { "none": ["A0067545_00260"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00260"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00260"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00260"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00260"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00260.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00260"]},
+ "label": { "en": ["ALTO XML for A0067545_00260"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00260/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00260/annotation",
"type": "Annotation",
@@ -74165,7 +43310,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00260/full/max/0/default.jpg",
"type": "Image",
@@ -74177,9 +43321,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00260",
"type": "ImageService3",
@@ -74189,11 +43331,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00260",
"@type": "ImageService2",
@@ -74203,45 +43343,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00260/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00261/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 261"],
- "sv": [
-
- "Bild 261"
-
- ],
-
- "en": [
-
- "Image 261"
-
- ]
-
+ "en": ["Image 261"]
},
"width": 5928,
@@ -74249,199 +43370,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00261"]}
-
+ "value": { "none": ["A0067545_00261"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00261"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00261"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00261"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00261"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9924
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9924
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00261.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00261"]},
+ "label": { "en": ["ALTO XML for A0067545_00261"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00261/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00261/annotation",
"type": "Annotation",
@@ -74449,7 +43476,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00261/full/max/0/default.jpg",
"type": "Image",
@@ -74461,9 +43487,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00261",
"type": "ImageService3",
@@ -74473,11 +43497,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00261",
"@type": "ImageService2",
@@ -74487,45 +43509,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00261/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00262/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 262"],
- "sv": [
-
- "Bild 262"
-
- ],
-
- "en": [
-
- "Image 262"
-
- ]
-
+ "en": ["Image 262"]
},
"width": 5928,
@@ -74533,199 +43536,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00262"]}
-
+ "value": { "none": ["A0067545_00262"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00262"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00262"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00262"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00262"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9921
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9921
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00262.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00262"]},
+ "label": { "en": ["ALTO XML for A0067545_00262"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00262/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00262/annotation",
"type": "Annotation",
@@ -74733,7 +43642,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00262/full/max/0/default.jpg",
"type": "Image",
@@ -74745,9 +43653,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00262",
"type": "ImageService3",
@@ -74757,11 +43663,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00262",
"@type": "ImageService2",
@@ -74771,45 +43675,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00262/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00263/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 263"],
- "sv": [
-
- "Bild 263"
-
- ],
-
- "en": [
-
- "Image 263"
-
- ]
-
+ "en": ["Image 263"]
},
"width": 5992,
@@ -74817,199 +43702,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00263"]}
-
+ "value": { "none": ["A0067545_00263"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00263"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00263"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00263"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00263"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9909
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9909
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00263.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00263"]},
+ "label": { "en": ["ALTO XML for A0067545_00263"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00263/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00263/annotation",
"type": "Annotation",
@@ -75017,7 +43808,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00263/full/max/0/default.jpg",
"type": "Image",
@@ -75029,9 +43819,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00263",
"type": "ImageService3",
@@ -75041,11 +43829,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00263",
"@type": "ImageService2",
@@ -75055,45 +43841,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00263/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00264/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 264"],
- "sv": [
-
- "Bild 264"
-
- ],
-
- "en": [
-
- "Image 264"
-
- ]
-
+ "en": ["Image 264"]
},
"width": 5960,
@@ -75101,199 +43868,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00264"]}
-
+ "value": { "none": ["A0067545_00264"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00264"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00264"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00264"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00264"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9942
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9942
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00264.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00264"]},
+ "label": { "en": ["ALTO XML for A0067545_00264"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00264/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00264/annotation",
"type": "Annotation",
@@ -75301,7 +43974,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00264/full/max/0/default.jpg",
"type": "Image",
@@ -75313,9 +43985,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00264",
"type": "ImageService3",
@@ -75325,11 +43995,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00264",
"@type": "ImageService2",
@@ -75339,45 +44007,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00264/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00265/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 265"],
- "sv": [
-
- "Bild 265"
-
- ],
-
- "en": [
-
- "Image 265"
-
- ]
-
+ "en": ["Image 265"]
},
"width": 6016,
@@ -75385,199 +44034,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00265"]}
-
+ "value": { "none": ["A0067545_00265"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00265"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00265"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00265"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00265"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00265.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00265"]},
+ "label": { "en": ["ALTO XML for A0067545_00265"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00265/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00265/annotation",
"type": "Annotation",
@@ -75585,7 +44140,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00265/full/max/0/default.jpg",
"type": "Image",
@@ -75597,9 +44151,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00265",
"type": "ImageService3",
@@ -75609,11 +44161,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00265",
"@type": "ImageService2",
@@ -75623,45 +44173,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00265/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00266/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 266"],
- "sv": [
-
- "Bild 266"
-
- ],
-
- "en": [
-
- "Image 266"
-
- ]
-
+ "en": ["Image 266"]
},
"width": 6016,
@@ -75669,199 +44200,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00266"]}
-
+ "value": { "none": ["A0067545_00266"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00266"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00266"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00266"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00266"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9857
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9857
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00266.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00266"]},
+ "label": { "en": ["ALTO XML for A0067545_00266"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00266/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00266/annotation",
"type": "Annotation",
@@ -75869,7 +44306,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00266/full/max/0/default.jpg",
"type": "Image",
@@ -75881,9 +44317,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00266",
"type": "ImageService3",
@@ -75893,11 +44327,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00266",
"@type": "ImageService2",
@@ -75907,45 +44339,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00266/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00267/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 267"],
- "sv": [
-
- "Bild 267"
-
- ],
-
- "en": [
-
- "Image 267"
-
- ]
-
+ "en": ["Image 267"]
},
"width": 6016,
@@ -75953,199 +44366,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00267"]}
-
+ "value": { "none": ["A0067545_00267"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00267"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00267"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00267"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00267"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00267.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00267"]},
+ "label": { "en": ["ALTO XML for A0067545_00267"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00267/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00267/annotation",
"type": "Annotation",
@@ -76153,7 +44472,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00267/full/max/0/default.jpg",
"type": "Image",
@@ -76165,9 +44483,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00267",
"type": "ImageService3",
@@ -76177,11 +44493,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00267",
"@type": "ImageService2",
@@ -76191,45 +44505,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00267/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00268/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 268"],
- "sv": [
-
- "Bild 268"
-
- ],
-
- "en": [
-
- "Image 268"
-
- ]
-
+ "en": ["Image 268"]
},
"width": 6016,
@@ -76237,199 +44532,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00268"]}
-
+ "value": { "none": ["A0067545_00268"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00268"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00268"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00268"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00268"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00268.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00268"]},
+ "label": { "en": ["ALTO XML for A0067545_00268"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00268/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00268/annotation",
"type": "Annotation",
@@ -76437,7 +44638,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00268/full/max/0/default.jpg",
"type": "Image",
@@ -76449,9 +44649,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00268",
"type": "ImageService3",
@@ -76461,11 +44659,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00268",
"@type": "ImageService2",
@@ -76475,45 +44671,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00268/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00269/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 269"],
- "sv": [
-
- "Bild 269"
-
- ],
-
- "en": [
-
- "Image 269"
-
- ]
-
+ "en": ["Image 269"]
},
"width": 5984,
@@ -76521,199 +44698,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00269"]}
-
+ "value": { "none": ["A0067545_00269"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00269"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00269"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00269"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00269"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9895
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9895
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00269.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00269"]},
+ "label": { "en": ["ALTO XML for A0067545_00269"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00269/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00269/annotation",
"type": "Annotation",
@@ -76721,7 +44804,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00269/full/max/0/default.jpg",
"type": "Image",
@@ -76733,9 +44815,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00269",
"type": "ImageService3",
@@ -76745,11 +44825,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00269",
"@type": "ImageService2",
@@ -76759,45 +44837,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00269/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00270/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 270"],
- "sv": [
-
- "Bild 270"
-
- ],
-
- "en": [
-
- "Image 270"
-
- ]
-
+ "en": ["Image 270"]
},
"width": 6016,
@@ -76805,199 +44864,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00270"]}
-
+ "value": { "none": ["A0067545_00270"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00270"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00270"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00270"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00270"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00270.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00270"]},
+ "label": { "en": ["ALTO XML for A0067545_00270"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00270/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00270/annotation",
"type": "Annotation",
@@ -77005,7 +44970,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00270/full/max/0/default.jpg",
"type": "Image",
@@ -77017,9 +44981,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00270",
"type": "ImageService3",
@@ -77029,11 +44991,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00270",
"@type": "ImageService2",
@@ -77043,45 +45003,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00270/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00271/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 271"],
- "sv": [
-
- "Bild 271"
-
- ],
-
- "en": [
-
- "Image 271"
-
- ]
-
+ "en": ["Image 271"]
},
"width": 6016,
@@ -77089,199 +45030,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00271"]}
-
+ "value": { "none": ["A0067545_00271"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00271"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00271"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00271"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00271"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00271.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00271"]},
+ "label": { "en": ["ALTO XML for A0067545_00271"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00271/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00271/annotation",
"type": "Annotation",
@@ -77289,7 +45136,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00271/full/max/0/default.jpg",
"type": "Image",
@@ -77301,9 +45147,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00271",
"type": "ImageService3",
@@ -77313,11 +45157,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00271",
"@type": "ImageService2",
@@ -77327,45 +45169,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00271/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00272/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 272"],
- "sv": [
-
- "Bild 272"
-
- ],
-
- "en": [
-
- "Image 272"
-
- ]
-
+ "en": ["Image 272"]
},
"width": 5896,
@@ -77373,199 +45196,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00272"]}
-
+ "value": { "none": ["A0067545_00272"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00272"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00272"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00272"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00272"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00272.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00272"]},
+ "label": { "en": ["ALTO XML for A0067545_00272"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00272/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00272/annotation",
"type": "Annotation",
@@ -77573,7 +45302,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00272/full/max/0/default.jpg",
"type": "Image",
@@ -77585,9 +45313,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00272",
"type": "ImageService3",
@@ -77597,11 +45323,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00272",
"@type": "ImageService2",
@@ -77611,45 +45335,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00272/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00273/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 273"],
- "sv": [
-
- "Bild 273"
-
- ],
-
- "en": [
-
- "Image 273"
-
- ]
-
+ "en": ["Image 273"]
},
"width": 5992,
@@ -77657,199 +45362,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00273"]}
-
+ "value": { "none": ["A0067545_00273"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00273"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00273"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00273"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00273"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00273.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00273"]},
+ "label": { "en": ["ALTO XML for A0067545_00273"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00273/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00273/annotation",
"type": "Annotation",
@@ -77857,7 +45468,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00273/full/max/0/default.jpg",
"type": "Image",
@@ -77869,9 +45479,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00273",
"type": "ImageService3",
@@ -77881,11 +45489,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00273",
"@type": "ImageService2",
@@ -77895,45 +45501,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00273/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00274/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 274"],
- "sv": [
-
- "Bild 274"
-
- ],
-
- "en": [
-
- "Image 274"
-
- ]
-
+ "en": ["Image 274"]
},
"width": 5896,
@@ -77941,199 +45528,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00274"]}
-
+ "value": { "none": ["A0067545_00274"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00274"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00274"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00274"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00274"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00274.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00274"]},
+ "label": { "en": ["ALTO XML for A0067545_00274"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00274/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00274/annotation",
"type": "Annotation",
@@ -78141,7 +45634,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00274/full/max/0/default.jpg",
"type": "Image",
@@ -78153,9 +45645,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00274",
"type": "ImageService3",
@@ -78165,11 +45655,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00274",
"@type": "ImageService2",
@@ -78179,45 +45667,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00274/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00275/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 275"],
- "sv": [
-
- "Bild 275"
-
- ],
-
- "en": [
-
- "Image 275"
-
- ]
-
+ "en": ["Image 275"]
},
"width": 5928,
@@ -78225,199 +45694,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00275"]}
-
+ "value": { "none": ["A0067545_00275"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00275"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00275"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00275"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00275"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9859
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9859
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00275.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00275"]},
+ "label": { "en": ["ALTO XML for A0067545_00275"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00275/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00275/annotation",
"type": "Annotation",
@@ -78425,7 +45800,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00275/full/max/0/default.jpg",
"type": "Image",
@@ -78437,9 +45811,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00275",
"type": "ImageService3",
@@ -78449,11 +45821,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00275",
"@type": "ImageService2",
@@ -78463,45 +45833,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00275/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00276/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 276"],
- "sv": [
-
- "Bild 276"
-
- ],
-
- "en": [
-
- "Image 276"
-
- ]
-
+ "en": ["Image 276"]
},
"width": 5984,
@@ -78509,199 +45860,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00276"]}
-
+ "value": { "none": ["A0067545_00276"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00276"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00276"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00276"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00276"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9910
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9910
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00276.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00276"]},
+ "label": { "en": ["ALTO XML for A0067545_00276"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00276/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00276/annotation",
"type": "Annotation",
@@ -78709,7 +45966,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00276/full/max/0/default.jpg",
"type": "Image",
@@ -78721,9 +45977,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00276",
"type": "ImageService3",
@@ -78733,11 +45987,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00276",
"@type": "ImageService2",
@@ -78747,45 +45999,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00276/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00277/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 277"],
- "sv": [
-
- "Bild 277"
-
- ],
-
- "en": [
-
- "Image 277"
-
- ]
-
+ "en": ["Image 277"]
},
"width": 5896,
@@ -78793,199 +46026,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00277"]}
-
+ "value": { "none": ["A0067545_00277"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00277"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00277"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00277"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00277"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9778
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9778
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00277.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00277"]},
+ "label": { "en": ["ALTO XML for A0067545_00277"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00277/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00277/annotation",
"type": "Annotation",
@@ -78993,7 +46132,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00277/full/max/0/default.jpg",
"type": "Image",
@@ -79005,9 +46143,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00277",
"type": "ImageService3",
@@ -79017,11 +46153,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00277",
"@type": "ImageService2",
@@ -79031,45 +46165,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00277/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00278/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 278"],
- "sv": [
-
- "Bild 278"
-
- ],
-
- "en": [
-
- "Image 278"
-
- ]
-
+ "en": ["Image 278"]
},
"width": 5864,
@@ -79077,199 +46192,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00278"]}
-
+ "value": { "none": ["A0067545_00278"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00278"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00278"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00278"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00278"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9913
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9913
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00278.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00278"]},
+ "label": { "en": ["ALTO XML for A0067545_00278"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00278/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00278/annotation",
"type": "Annotation",
@@ -79277,7 +46298,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00278/full/max/0/default.jpg",
"type": "Image",
@@ -79289,9 +46309,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00278",
"type": "ImageService3",
@@ -79301,11 +46319,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00278",
"@type": "ImageService2",
@@ -79315,45 +46331,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00278/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00279/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 279"],
- "sv": [
-
- "Bild 279"
-
- ],
-
- "en": [
-
- "Image 279"
-
- ]
-
+ "en": ["Image 279"]
},
"width": 5960,
@@ -79361,199 +46358,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00279"]}
-
+ "value": { "none": ["A0067545_00279"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00279"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00279"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00279"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00279"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9921
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9921
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00279.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00279"]},
+ "label": { "en": ["ALTO XML for A0067545_00279"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00279/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00279/annotation",
"type": "Annotation",
@@ -79561,7 +46464,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00279/full/max/0/default.jpg",
"type": "Image",
@@ -79573,9 +46475,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00279",
"type": "ImageService3",
@@ -79585,11 +46485,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00279",
"@type": "ImageService2",
@@ -79599,45 +46497,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00279/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00280/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 280"],
- "sv": [
-
- "Bild 280"
-
- ],
-
- "en": [
-
- "Image 280"
-
- ]
-
+ "en": ["Image 280"]
},
"width": 6016,
@@ -79645,199 +46524,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00280"]}
-
+ "value": { "none": ["A0067545_00280"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00280"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00280"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00280"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00280"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9933
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9933
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00280.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00280"]},
+ "label": { "en": ["ALTO XML for A0067545_00280"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00280/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00280/annotation",
"type": "Annotation",
@@ -79845,7 +46630,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00280/full/max/0/default.jpg",
"type": "Image",
@@ -79857,9 +46641,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00280",
"type": "ImageService3",
@@ -79869,11 +46651,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00280",
"@type": "ImageService2",
@@ -79883,45 +46663,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00280/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00281/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 281"],
- "sv": [
-
- "Bild 281"
-
- ],
-
- "en": [
-
- "Image 281"
-
- ]
-
+ "en": ["Image 281"]
},
"width": 5896,
@@ -79929,199 +46690,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00281"]}
-
+ "value": { "none": ["A0067545_00281"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00281"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00281"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00281"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00281"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00281.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00281"]},
+ "label": { "en": ["ALTO XML for A0067545_00281"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00281/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00281/annotation",
"type": "Annotation",
@@ -80129,7 +46796,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00281/full/max/0/default.jpg",
"type": "Image",
@@ -80141,9 +46807,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00281",
"type": "ImageService3",
@@ -80153,11 +46817,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00281",
"@type": "ImageService2",
@@ -80167,45 +46829,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00281/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00282/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 282"],
- "sv": [
-
- "Bild 282"
-
- ],
-
- "en": [
-
- "Image 282"
-
- ]
-
+ "en": ["Image 282"]
},
"width": 5928,
@@ -80213,199 +46856,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00282"]}
-
+ "value": { "none": ["A0067545_00282"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00282"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00282"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00282"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00282"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00282.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00282"]},
+ "label": { "en": ["ALTO XML for A0067545_00282"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00282/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00282/annotation",
"type": "Annotation",
@@ -80413,7 +46962,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00282/full/max/0/default.jpg",
"type": "Image",
@@ -80425,9 +46973,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00282",
"type": "ImageService3",
@@ -80437,11 +46983,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00282",
"@type": "ImageService2",
@@ -80451,45 +46995,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00282/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00283/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 283"],
- "sv": [
-
- "Bild 283"
-
- ],
-
- "en": [
-
- "Image 283"
-
- ]
-
+ "en": ["Image 283"]
},
"width": 6016,
@@ -80497,199 +47022,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00283"]}
-
+ "value": { "none": ["A0067545_00283"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00283"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00283"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00283"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00283"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9906
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9906
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00283.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00283"]},
+ "label": { "en": ["ALTO XML for A0067545_00283"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00283/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00283/annotation",
"type": "Annotation",
@@ -80697,7 +47128,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00283/full/max/0/default.jpg",
"type": "Image",
@@ -80709,9 +47139,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00283",
"type": "ImageService3",
@@ -80721,11 +47149,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00283",
"@type": "ImageService2",
@@ -80735,45 +47161,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00283/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00284/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 284"],
- "sv": [
-
- "Bild 284"
-
- ],
-
- "en": [
-
- "Image 284"
-
- ]
-
+ "en": ["Image 284"]
},
"width": 5984,
@@ -80781,199 +47188,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00284"]}
-
+ "value": { "none": ["A0067545_00284"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00284"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00284"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00284"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00284"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00284.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00284"]},
+ "label": { "en": ["ALTO XML for A0067545_00284"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00284/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00284/annotation",
"type": "Annotation",
@@ -80981,7 +47294,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00284/full/max/0/default.jpg",
"type": "Image",
@@ -80993,9 +47305,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00284",
"type": "ImageService3",
@@ -81005,11 +47315,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00284",
"@type": "ImageService2",
@@ -81019,45 +47327,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00284/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00285/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 285"],
- "sv": [
-
- "Bild 285"
-
- ],
-
- "en": [
-
- "Image 285"
-
- ]
-
+ "en": ["Image 285"]
},
"width": 5864,
@@ -81065,199 +47354,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00285"]}
-
+ "value": { "none": ["A0067545_00285"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00285"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00285"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00285"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00285"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9910
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9910
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00285.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00285"]},
+ "label": { "en": ["ALTO XML for A0067545_00285"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00285/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00285/annotation",
"type": "Annotation",
@@ -81265,7 +47460,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00285/full/max/0/default.jpg",
"type": "Image",
@@ -81277,9 +47471,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00285",
"type": "ImageService3",
@@ -81289,11 +47481,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00285",
"@type": "ImageService2",
@@ -81303,45 +47493,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00285/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00286/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 286"],
- "sv": [
-
- "Bild 286"
-
- ],
-
- "en": [
-
- "Image 286"
-
- ]
-
+ "en": ["Image 286"]
},
"width": 6016,
@@ -81349,199 +47520,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00286"]}
-
+ "value": { "none": ["A0067545_00286"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00286"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00286"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00286"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00286"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9910
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9910
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00286.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00286"]},
+ "label": { "en": ["ALTO XML for A0067545_00286"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00286/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00286/annotation",
"type": "Annotation",
@@ -81549,7 +47626,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00286/full/max/0/default.jpg",
"type": "Image",
@@ -81561,9 +47637,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00286",
"type": "ImageService3",
@@ -81573,11 +47647,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00286",
"@type": "ImageService2",
@@ -81587,45 +47659,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00286/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00287/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 287"],
- "sv": [
-
- "Bild 287"
-
- ],
-
- "en": [
-
- "Image 287"
-
- ]
-
+ "en": ["Image 287"]
},
"width": 6016,
@@ -81633,199 +47686,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00287"]}
-
+ "value": { "none": ["A0067545_00287"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00287"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00287"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00287"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00287"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9899
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9899
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00287.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00287"]},
+ "label": { "en": ["ALTO XML for A0067545_00287"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00287/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00287/annotation",
"type": "Annotation",
@@ -81833,7 +47792,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00287/full/max/0/default.jpg",
"type": "Image",
@@ -81845,9 +47803,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00287",
"type": "ImageService3",
@@ -81857,11 +47813,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00287",
"@type": "ImageService2",
@@ -81871,45 +47825,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00287/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00288/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 288"],
- "sv": [
-
- "Bild 288"
-
- ],
-
- "en": [
-
- "Image 288"
-
- ]
-
+ "en": ["Image 288"]
},
"width": 5984,
@@ -81917,199 +47852,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00288"]}
-
+ "value": { "none": ["A0067545_00288"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00288"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00288"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00288"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00288"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9964
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9964
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00288.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00288"]},
+ "label": { "en": ["ALTO XML for A0067545_00288"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00288/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00288/annotation",
"type": "Annotation",
@@ -82117,7 +47958,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00288/full/max/0/default.jpg",
"type": "Image",
@@ -82129,9 +47969,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00288",
"type": "ImageService3",
@@ -82141,11 +47979,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00288",
"@type": "ImageService2",
@@ -82155,45 +47991,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00288/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00289/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 289"],
- "sv": [
-
- "Bild 289"
-
- ],
-
- "en": [
-
- "Image 289"
-
- ]
-
+ "en": ["Image 289"]
},
"width": 5984,
@@ -82201,199 +48018,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00289"]}
-
+ "value": { "none": ["A0067545_00289"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00289"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00289"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00289"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00289"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9925
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9925
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00289.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00289"]},
+ "label": { "en": ["ALTO XML for A0067545_00289"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00289/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00289/annotation",
"type": "Annotation",
@@ -82401,7 +48124,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00289/full/max/0/default.jpg",
"type": "Image",
@@ -82413,9 +48135,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00289",
"type": "ImageService3",
@@ -82425,11 +48145,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00289",
"@type": "ImageService2",
@@ -82439,45 +48157,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00289/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00290/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 290"],
- "sv": [
-
- "Bild 290"
-
- ],
-
- "en": [
-
- "Image 290"
-
- ]
-
+ "en": ["Image 290"]
},
"width": 6016,
@@ -82485,199 +48184,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00290"]}
-
+ "value": { "none": ["A0067545_00290"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00290"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00290"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00290"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00290"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00290.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00290"]},
+ "label": { "en": ["ALTO XML for A0067545_00290"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00290/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00290/annotation",
"type": "Annotation",
@@ -82685,7 +48290,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00290/full/max/0/default.jpg",
"type": "Image",
@@ -82697,9 +48301,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00290",
"type": "ImageService3",
@@ -82709,11 +48311,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00290",
"@type": "ImageService2",
@@ -82723,45 +48323,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00290/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00291/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 291"],
- "sv": [
-
- "Bild 291"
-
- ],
-
- "en": [
-
- "Image 291"
-
- ]
-
+ "en": ["Image 291"]
},
"width": 5896,
@@ -82769,199 +48350,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00291"]}
-
+ "value": { "none": ["A0067545_00291"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00291"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00291"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00291"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00291"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00291.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00291"]},
+ "label": { "en": ["ALTO XML for A0067545_00291"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00291/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00291/annotation",
"type": "Annotation",
@@ -82969,7 +48456,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00291/full/max/0/default.jpg",
"type": "Image",
@@ -82981,9 +48467,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00291",
"type": "ImageService3",
@@ -82993,11 +48477,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00291",
"@type": "ImageService2",
@@ -83007,45 +48489,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00291/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00292/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 292"],
- "sv": [
-
- "Bild 292"
-
- ],
-
- "en": [
-
- "Image 292"
-
- ]
-
+ "en": ["Image 292"]
},
"width": 5896,
@@ -83053,199 +48516,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00292"]}
-
+ "value": { "none": ["A0067545_00292"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00292"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00292"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00292"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00292"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9919
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9919
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00292.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00292"]},
+ "label": { "en": ["ALTO XML for A0067545_00292"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00292/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00292/annotation",
"type": "Annotation",
@@ -83253,7 +48622,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00292/full/max/0/default.jpg",
"type": "Image",
@@ -83265,9 +48633,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00292",
"type": "ImageService3",
@@ -83277,11 +48643,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00292",
"@type": "ImageService2",
@@ -83291,45 +48655,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00292/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00293/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 293"],
- "sv": [
-
- "Bild 293"
-
- ],
-
- "en": [
-
- "Image 293"
-
- ]
-
+ "en": ["Image 293"]
},
"width": 5896,
@@ -83337,199 +48682,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00293"]}
-
+ "value": { "none": ["A0067545_00293"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00293"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00293"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00293"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00293"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9916
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9916
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00293.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00293"]},
+ "label": { "en": ["ALTO XML for A0067545_00293"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00293/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00293/annotation",
"type": "Annotation",
@@ -83537,7 +48788,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00293/full/max/0/default.jpg",
"type": "Image",
@@ -83549,9 +48799,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00293",
"type": "ImageService3",
@@ -83561,11 +48809,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00293",
"@type": "ImageService2",
@@ -83575,45 +48821,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00293/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00294/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 294"],
- "sv": [
-
- "Bild 294"
-
- ],
-
- "en": [
-
- "Image 294"
-
- ]
-
+ "en": ["Image 294"]
},
"width": 5864,
@@ -83621,199 +48848,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00294"]}
-
+ "value": { "none": ["A0067545_00294"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00294"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00294"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00294"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00294"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00294.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00294"]},
+ "label": { "en": ["ALTO XML for A0067545_00294"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00294/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00294/annotation",
"type": "Annotation",
@@ -83821,7 +48954,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00294/full/max/0/default.jpg",
"type": "Image",
@@ -83833,9 +48965,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00294",
"type": "ImageService3",
@@ -83845,11 +48975,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00294",
"@type": "ImageService2",
@@ -83859,45 +48987,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00294/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00295/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 295"],
- "sv": [
-
- "Bild 295"
-
- ],
-
- "en": [
-
- "Image 295"
-
- ]
-
+ "en": ["Image 295"]
},
"width": 5984,
@@ -83905,199 +49014,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00295"]}
-
+ "value": { "none": ["A0067545_00295"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00295"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00295"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00295"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00295"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9912
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9912
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00295.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00295"]},
+ "label": { "en": ["ALTO XML for A0067545_00295"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00295/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00295/annotation",
"type": "Annotation",
@@ -84105,7 +49120,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00295/full/max/0/default.jpg",
"type": "Image",
@@ -84117,9 +49131,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00295",
"type": "ImageService3",
@@ -84129,11 +49141,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00295",
"@type": "ImageService2",
@@ -84143,45 +49153,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00295/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00296/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 296"],
- "sv": [
-
- "Bild 296"
-
- ],
-
- "en": [
-
- "Image 296"
-
- ]
-
+ "en": ["Image 296"]
},
"width": 5960,
@@ -84189,199 +49180,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00296"]}
-
+ "value": { "none": ["A0067545_00296"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00296"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00296"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00296"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00296"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9896
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9896
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00296.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00296"]},
+ "label": { "en": ["ALTO XML for A0067545_00296"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00296/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00296/annotation",
"type": "Annotation",
@@ -84389,7 +49286,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00296/full/max/0/default.jpg",
"type": "Image",
@@ -84401,9 +49297,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00296",
"type": "ImageService3",
@@ -84413,11 +49307,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00296",
"@type": "ImageService2",
@@ -84427,45 +49319,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00296/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00297/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 297"],
- "sv": [
-
- "Bild 297"
-
- ],
-
- "en": [
-
- "Image 297"
-
- ]
-
+ "en": ["Image 297"]
},
"width": 6016,
@@ -84473,199 +49346,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00297"]}
-
+ "value": { "none": ["A0067545_00297"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00297"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00297"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00297"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00297"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9910
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9910
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00297.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00297"]},
+ "label": { "en": ["ALTO XML for A0067545_00297"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00297/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00297/annotation",
"type": "Annotation",
@@ -84673,7 +49452,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00297/full/max/0/default.jpg",
"type": "Image",
@@ -84685,9 +49463,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00297",
"type": "ImageService3",
@@ -84697,11 +49473,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00297",
"@type": "ImageService2",
@@ -84711,45 +49485,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00297/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00298/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 298"],
- "sv": [
-
- "Bild 298"
-
- ],
-
- "en": [
-
- "Image 298"
-
- ]
-
+ "en": ["Image 298"]
},
"width": 5928,
@@ -84757,199 +49512,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00298"]}
-
+ "value": { "none": ["A0067545_00298"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00298"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00298"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00298"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00298"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00298.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00298"]},
+ "label": { "en": ["ALTO XML for A0067545_00298"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00298/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00298/annotation",
"type": "Annotation",
@@ -84957,7 +49618,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00298/full/max/0/default.jpg",
"type": "Image",
@@ -84969,9 +49629,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00298",
"type": "ImageService3",
@@ -84981,11 +49639,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00298",
"@type": "ImageService2",
@@ -84995,45 +49651,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00298/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00299/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 299"],
- "sv": [
-
- "Bild 299"
-
- ],
-
- "en": [
-
- "Image 299"
-
- ]
-
+ "en": ["Image 299"]
},
"width": 6016,
@@ -85041,199 +49678,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00299"]}
-
+ "value": { "none": ["A0067545_00299"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00299"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00299"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00299"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00299"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00299.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00299"]},
+ "label": { "en": ["ALTO XML for A0067545_00299"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00299/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00299/annotation",
"type": "Annotation",
@@ -85241,7 +49784,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00299/full/max/0/default.jpg",
"type": "Image",
@@ -85253,9 +49795,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00299",
"type": "ImageService3",
@@ -85265,11 +49805,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00299",
"@type": "ImageService2",
@@ -85279,45 +49817,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00299/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00300/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 300"],
- "sv": [
-
- "Bild 300"
-
- ],
-
- "en": [
-
- "Image 300"
-
- ]
-
+ "en": ["Image 300"]
},
"width": 5984,
@@ -85325,199 +49844,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00300"]}
-
+ "value": { "none": ["A0067545_00300"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00300"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00300"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00300"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00300"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9854
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9854
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00300.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00300"]},
+ "label": { "en": ["ALTO XML for A0067545_00300"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00300/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00300/annotation",
"type": "Annotation",
@@ -85525,7 +49950,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00300/full/max/0/default.jpg",
"type": "Image",
@@ -85537,9 +49961,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00300",
"type": "ImageService3",
@@ -85549,11 +49971,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00300",
"@type": "ImageService2",
@@ -85563,45 +49983,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00300/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00301/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 301"],
- "sv": [
-
- "Bild 301"
-
- ],
-
- "en": [
-
- "Image 301"
-
- ]
-
+ "en": ["Image 301"]
},
"width": 5984,
@@ -85609,199 +50010,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00301"]}
-
+ "value": { "none": ["A0067545_00301"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00301"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00301"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00301"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00301"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9946
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9946
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00301.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00301"]},
+ "label": { "en": ["ALTO XML for A0067545_00301"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00301/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00301/annotation",
"type": "Annotation",
@@ -85809,7 +50116,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00301/full/max/0/default.jpg",
"type": "Image",
@@ -85821,9 +50127,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00301",
"type": "ImageService3",
@@ -85833,11 +50137,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00301",
"@type": "ImageService2",
@@ -85847,45 +50149,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00301/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00302/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 302"],
- "sv": [
-
- "Bild 302"
-
- ],
-
- "en": [
-
- "Image 302"
-
- ]
-
+ "en": ["Image 302"]
},
"width": 5984,
@@ -85893,199 +50176,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00302"]}
-
+ "value": { "none": ["A0067545_00302"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00302"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00302"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00302"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00302"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9871
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9871
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00302.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00302"]},
+ "label": { "en": ["ALTO XML for A0067545_00302"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00302/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00302/annotation",
"type": "Annotation",
@@ -86093,7 +50282,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00302/full/max/0/default.jpg",
"type": "Image",
@@ -86105,9 +50293,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00302",
"type": "ImageService3",
@@ -86117,11 +50303,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00302",
"@type": "ImageService2",
@@ -86131,45 +50315,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00302/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00303/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 303"],
- "sv": [
-
- "Bild 303"
-
- ],
-
- "en": [
-
- "Image 303"
-
- ]
-
+ "en": ["Image 303"]
},
"width": 5984,
@@ -86177,199 +50342,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00303"]}
-
+ "value": { "none": ["A0067545_00303"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00303"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00303"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00303"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00303"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00303.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00303"]},
+ "label": { "en": ["ALTO XML for A0067545_00303"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00303/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00303/annotation",
"type": "Annotation",
@@ -86377,7 +50448,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00303/full/max/0/default.jpg",
"type": "Image",
@@ -86389,9 +50459,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00303",
"type": "ImageService3",
@@ -86401,11 +50469,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00303",
"@type": "ImageService2",
@@ -86415,45 +50481,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00303/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00304/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 304"],
- "sv": [
-
- "Bild 304"
-
- ],
-
- "en": [
-
- "Image 304"
-
- ]
-
+ "en": ["Image 304"]
},
"width": 5864,
@@ -86461,199 +50508,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00304"]}
-
+ "value": { "none": ["A0067545_00304"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00304"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00304"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00304"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00304"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9967
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9967
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00304.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00304"]},
+ "label": { "en": ["ALTO XML for A0067545_00304"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00304/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00304/annotation",
"type": "Annotation",
@@ -86661,7 +50614,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00304/full/max/0/default.jpg",
"type": "Image",
@@ -86673,9 +50625,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00304",
"type": "ImageService3",
@@ -86685,11 +50635,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00304",
"@type": "ImageService2",
@@ -86699,45 +50647,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00304/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00305/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 305"],
- "sv": [
-
- "Bild 305"
-
- ],
-
- "en": [
-
- "Image 305"
-
- ]
-
+ "en": ["Image 305"]
},
"width": 5928,
@@ -86745,199 +50674,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00305"]}
-
+ "value": { "none": ["A0067545_00305"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00305"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00305"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00305"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00305"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00305.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00305"]},
+ "label": { "en": ["ALTO XML for A0067545_00305"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00305/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00305/annotation",
"type": "Annotation",
@@ -86945,7 +50780,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00305/full/max/0/default.jpg",
"type": "Image",
@@ -86957,9 +50791,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00305",
"type": "ImageService3",
@@ -86969,11 +50801,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00305",
"@type": "ImageService2",
@@ -86983,45 +50813,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00305/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00306/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 306"],
- "sv": [
-
- "Bild 306"
-
- ],
-
- "en": [
-
- "Image 306"
-
- ]
-
+ "en": ["Image 306"]
},
"width": 5864,
@@ -87029,199 +50840,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00306"]}
-
+ "value": { "none": ["A0067545_00306"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00306"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00306"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00306"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00306"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00306.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00306"]},
+ "label": { "en": ["ALTO XML for A0067545_00306"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00306/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00306/annotation",
"type": "Annotation",
@@ -87229,7 +50946,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00306/full/max/0/default.jpg",
"type": "Image",
@@ -87241,9 +50957,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00306",
"type": "ImageService3",
@@ -87253,11 +50967,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00306",
"@type": "ImageService2",
@@ -87267,45 +50979,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00306/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00307/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 307"],
- "sv": [
-
- "Bild 307"
-
- ],
-
- "en": [
-
- "Image 307"
-
- ]
-
+ "en": ["Image 307"]
},
"width": 5984,
@@ -87313,199 +51006,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00307"]}
-
+ "value": { "none": ["A0067545_00307"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00307"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00307"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00307"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00307"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00307.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00307"]},
+ "label": { "en": ["ALTO XML for A0067545_00307"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00307/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00307/annotation",
"type": "Annotation",
@@ -87513,7 +51112,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00307/full/max/0/default.jpg",
"type": "Image",
@@ -87525,9 +51123,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00307",
"type": "ImageService3",
@@ -87537,11 +51133,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00307",
"@type": "ImageService2",
@@ -87551,45 +51145,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00307/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00308/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 308"],
- "sv": [
-
- "Bild 308"
-
- ],
-
- "en": [
-
- "Image 308"
-
- ]
-
+ "en": ["Image 308"]
},
"width": 5896,
@@ -87597,199 +51172,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00308"]}
-
+ "value": { "none": ["A0067545_00308"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00308"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00308"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00308"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00308"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00308.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00308"]},
+ "label": { "en": ["ALTO XML for A0067545_00308"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00308/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00308/annotation",
"type": "Annotation",
@@ -87797,7 +51278,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00308/full/max/0/default.jpg",
"type": "Image",
@@ -87809,9 +51289,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00308",
"type": "ImageService3",
@@ -87821,11 +51299,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00308",
"@type": "ImageService2",
@@ -87835,45 +51311,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00308/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00309/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 309"],
- "sv": [
-
- "Bild 309"
-
- ],
-
- "en": [
-
- "Image 309"
-
- ]
-
+ "en": ["Image 309"]
},
"width": 5864,
@@ -87881,199 +51338,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00309"]}
-
+ "value": { "none": ["A0067545_00309"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00309"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00309"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00309"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00309"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00309.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00309"]},
+ "label": { "en": ["ALTO XML for A0067545_00309"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00309/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00309/annotation",
"type": "Annotation",
@@ -88081,7 +51444,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00309/full/max/0/default.jpg",
"type": "Image",
@@ -88093,9 +51455,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00309",
"type": "ImageService3",
@@ -88105,11 +51465,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00309",
"@type": "ImageService2",
@@ -88119,45 +51477,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00309/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00310/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 310"],
- "sv": [
-
- "Bild 310"
-
- ],
-
- "en": [
-
- "Image 310"
-
- ]
-
+ "en": ["Image 310"]
},
"width": 6016,
@@ -88165,199 +51504,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00310"]}
-
+ "value": { "none": ["A0067545_00310"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00310"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00310"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00310"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00310"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9965
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9965
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00310.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00310"]},
+ "label": { "en": ["ALTO XML for A0067545_00310"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00310/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00310/annotation",
"type": "Annotation",
@@ -88365,7 +51610,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00310/full/max/0/default.jpg",
"type": "Image",
@@ -88377,9 +51621,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00310",
"type": "ImageService3",
@@ -88389,11 +51631,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00310",
"@type": "ImageService2",
@@ -88403,45 +51643,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00310/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00311/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 311"],
- "sv": [
-
- "Bild 311"
-
- ],
-
- "en": [
-
- "Image 311"
-
- ]
-
+ "en": ["Image 311"]
},
"width": 6016,
@@ -88449,199 +51670,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00311"]}
-
+ "value": { "none": ["A0067545_00311"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00311"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00311"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00311"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00311"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9972
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9972
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00311.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00311"]},
+ "label": { "en": ["ALTO XML for A0067545_00311"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00311/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00311/annotation",
"type": "Annotation",
@@ -88649,7 +51776,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00311/full/max/0/default.jpg",
"type": "Image",
@@ -88661,9 +51787,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00311",
"type": "ImageService3",
@@ -88673,11 +51797,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00311",
"@type": "ImageService2",
@@ -88687,45 +51809,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00311/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00312/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 312"],
- "sv": [
-
- "Bild 312"
-
- ],
-
- "en": [
-
- "Image 312"
-
- ]
-
+ "en": ["Image 312"]
},
"width": 6016,
@@ -88733,199 +51836,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00312"]}
-
+ "value": { "none": ["A0067545_00312"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00312"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00312"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00312"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00312"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9913
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9913
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00312.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00312"]},
+ "label": { "en": ["ALTO XML for A0067545_00312"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00312/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00312/annotation",
"type": "Annotation",
@@ -88933,7 +51942,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00312/full/max/0/default.jpg",
"type": "Image",
@@ -88945,9 +51953,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00312",
"type": "ImageService3",
@@ -88957,11 +51963,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00312",
"@type": "ImageService2",
@@ -88971,45 +51975,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00312/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00313/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 313"],
- "sv": [
-
- "Bild 313"
-
- ],
-
- "en": [
-
- "Image 313"
-
- ]
-
+ "en": ["Image 313"]
},
"width": 6016,
@@ -89017,199 +52002,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00313"]}
-
+ "value": { "none": ["A0067545_00313"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00313"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00313"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00313"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00313"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00313.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00313"]},
+ "label": { "en": ["ALTO XML for A0067545_00313"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00313/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00313/annotation",
"type": "Annotation",
@@ -89217,7 +52108,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00313/full/max/0/default.jpg",
"type": "Image",
@@ -89229,9 +52119,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00313",
"type": "ImageService3",
@@ -89241,11 +52129,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00313",
"@type": "ImageService2",
@@ -89255,45 +52141,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00313/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00314/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 314"],
- "sv": [
-
- "Bild 314"
-
- ],
-
- "en": [
-
- "Image 314"
-
- ]
-
+ "en": ["Image 314"]
},
"width": 6016,
@@ -89301,199 +52168,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00314"]}
-
+ "value": { "none": ["A0067545_00314"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00314"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00314"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00314"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00314"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00314.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00314"]},
+ "label": { "en": ["ALTO XML for A0067545_00314"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00314/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00314/annotation",
"type": "Annotation",
@@ -89501,7 +52274,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00314/full/max/0/default.jpg",
"type": "Image",
@@ -89513,9 +52285,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00314",
"type": "ImageService3",
@@ -89525,11 +52295,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00314",
"@type": "ImageService2",
@@ -89539,45 +52307,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00314/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00315/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 315"],
- "sv": [
-
- "Bild 315"
-
- ],
-
- "en": [
-
- "Image 315"
-
- ]
-
+ "en": ["Image 315"]
},
"width": 6016,
@@ -89585,199 +52334,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00315"]}
-
+ "value": { "none": ["A0067545_00315"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00315"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00315"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00315"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00315"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9972
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9972
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00315.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00315"]},
+ "label": { "en": ["ALTO XML for A0067545_00315"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00315/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00315/annotation",
"type": "Annotation",
@@ -89785,7 +52440,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00315/full/max/0/default.jpg",
"type": "Image",
@@ -89797,9 +52451,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00315",
"type": "ImageService3",
@@ -89809,11 +52461,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00315",
"@type": "ImageService2",
@@ -89823,45 +52473,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00315/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00316/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 316"],
- "sv": [
-
- "Bild 316"
-
- ],
-
- "en": [
-
- "Image 316"
-
- ]
-
+ "en": ["Image 316"]
},
"width": 5896,
@@ -89869,199 +52500,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00316"]}
-
+ "value": { "none": ["A0067545_00316"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00316"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00316"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00316"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00316"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9971
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9971
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00316.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00316"]},
+ "label": { "en": ["ALTO XML for A0067545_00316"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00316/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00316/annotation",
"type": "Annotation",
@@ -90069,7 +52606,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00316/full/max/0/default.jpg",
"type": "Image",
@@ -90081,9 +52617,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00316",
"type": "ImageService3",
@@ -90093,11 +52627,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00316",
"@type": "ImageService2",
@@ -90107,45 +52639,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00316/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00317/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 317"],
- "sv": [
-
- "Bild 317"
-
- ],
-
- "en": [
-
- "Image 317"
-
- ]
-
+ "en": ["Image 317"]
},
"width": 5984,
@@ -90153,199 +52666,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00317"]}
-
+ "value": { "none": ["A0067545_00317"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00317"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00317"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00317"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00317"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9931
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9931
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00317.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00317"]},
+ "label": { "en": ["ALTO XML for A0067545_00317"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00317/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00317/annotation",
"type": "Annotation",
@@ -90353,7 +52772,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00317/full/max/0/default.jpg",
"type": "Image",
@@ -90365,9 +52783,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00317",
"type": "ImageService3",
@@ -90377,11 +52793,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00317",
"@type": "ImageService2",
@@ -90391,45 +52805,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00317/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00318/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 318"],
- "sv": [
-
- "Bild 318"
-
- ],
-
- "en": [
-
- "Image 318"
-
- ]
-
+ "en": ["Image 318"]
},
"width": 5984,
@@ -90437,199 +52832,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00318"]}
-
+ "value": { "none": ["A0067545_00318"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00318"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00318"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00318"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00318"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00318.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00318"]},
+ "label": { "en": ["ALTO XML for A0067545_00318"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00318/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00318/annotation",
"type": "Annotation",
@@ -90637,7 +52938,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00318/full/max/0/default.jpg",
"type": "Image",
@@ -90649,9 +52949,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00318",
"type": "ImageService3",
@@ -90661,11 +52959,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00318",
"@type": "ImageService2",
@@ -90675,45 +52971,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00318/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00319/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 319"],
- "sv": [
-
- "Bild 319"
-
- ],
-
- "en": [
-
- "Image 319"
-
- ]
-
+ "en": ["Image 319"]
},
"width": 5984,
@@ -90721,199 +52998,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00319"]}
-
+ "value": { "none": ["A0067545_00319"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00319"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00319"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00319"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00319"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9977
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9977
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00319.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00319"]},
+ "label": { "en": ["ALTO XML for A0067545_00319"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00319/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00319/annotation",
"type": "Annotation",
@@ -90921,7 +53104,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00319/full/max/0/default.jpg",
"type": "Image",
@@ -90933,9 +53115,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00319",
"type": "ImageService3",
@@ -90945,11 +53125,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00319",
"@type": "ImageService2",
@@ -90959,45 +53137,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00319/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00320/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 320"],
- "sv": [
-
- "Bild 320"
-
- ],
-
- "en": [
-
- "Image 320"
-
- ]
-
+ "en": ["Image 320"]
},
"width": 6176,
@@ -91005,199 +53164,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00320"]}
-
+ "value": { "none": ["A0067545_00320"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00320"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00320"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00320"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00320"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00320.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00320"]},
+ "label": { "en": ["ALTO XML for A0067545_00320"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00320/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00320/annotation",
"type": "Annotation",
@@ -91205,7 +53270,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00320/full/max/0/default.jpg",
"type": "Image",
@@ -91217,9 +53281,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00320",
"type": "ImageService3",
@@ -91229,11 +53291,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00320",
"@type": "ImageService2",
@@ -91243,45 +53303,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00320/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00321/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 321"],
- "sv": [
-
- "Bild 321"
-
- ],
-
- "en": [
-
- "Image 321"
-
- ]
-
+ "en": ["Image 321"]
},
"width": 6016,
@@ -91289,199 +53330,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00321"]}
-
+ "value": { "none": ["A0067545_00321"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00321"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00321"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00321"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00321"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00321.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00321"]},
+ "label": { "en": ["ALTO XML for A0067545_00321"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00321/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00321/annotation",
"type": "Annotation",
@@ -91489,7 +53436,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00321/full/max/0/default.jpg",
"type": "Image",
@@ -91501,9 +53447,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00321",
"type": "ImageService3",
@@ -91513,11 +53457,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00321",
"@type": "ImageService2",
@@ -91527,45 +53469,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00321/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00322/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 322"],
- "sv": [
-
- "Bild 322"
-
- ],
-
- "en": [
-
- "Image 322"
-
- ]
-
+ "en": ["Image 322"]
},
"width": 6016,
@@ -91573,199 +53496,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00322"]}
-
+ "value": { "none": ["A0067545_00322"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00322"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00322"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00322"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00322"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00322.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00322"]},
+ "label": { "en": ["ALTO XML for A0067545_00322"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00322/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00322/annotation",
"type": "Annotation",
@@ -91773,7 +53602,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00322/full/max/0/default.jpg",
"type": "Image",
@@ -91785,9 +53613,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00322",
"type": "ImageService3",
@@ -91797,11 +53623,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00322",
"@type": "ImageService2",
@@ -91811,45 +53635,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00322/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00323/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 323"],
- "sv": [
-
- "Bild 323"
-
- ],
-
- "en": [
-
- "Image 323"
-
- ]
-
+ "en": ["Image 323"]
},
"width": 5896,
@@ -91857,199 +53662,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00323"]}
-
+ "value": { "none": ["A0067545_00323"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00323"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00323"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00323"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00323"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00323.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00323"]},
+ "label": { "en": ["ALTO XML for A0067545_00323"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00323/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00323/annotation",
"type": "Annotation",
@@ -92057,7 +53768,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00323/full/max/0/default.jpg",
"type": "Image",
@@ -92069,9 +53779,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00323",
"type": "ImageService3",
@@ -92081,11 +53789,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00323",
"@type": "ImageService2",
@@ -92095,45 +53801,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00323/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00324/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 324"],
- "sv": [
-
- "Bild 324"
-
- ],
-
- "en": [
-
- "Image 324"
-
- ]
-
+ "en": ["Image 324"]
},
"width": 6016,
@@ -92141,199 +53828,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00324"]}
-
+ "value": { "none": ["A0067545_00324"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00324"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00324"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00324"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00324"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00324.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00324"]},
+ "label": { "en": ["ALTO XML for A0067545_00324"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00324/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00324/annotation",
"type": "Annotation",
@@ -92341,7 +53934,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00324/full/max/0/default.jpg",
"type": "Image",
@@ -92353,9 +53945,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00324",
"type": "ImageService3",
@@ -92365,11 +53955,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00324",
"@type": "ImageService2",
@@ -92379,45 +53967,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00324/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00325/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 325"],
- "sv": [
-
- "Bild 325"
-
- ],
-
- "en": [
-
- "Image 325"
-
- ]
-
+ "en": ["Image 325"]
},
"width": 6016,
@@ -92425,199 +53994,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00325"]}
-
+ "value": { "none": ["A0067545_00325"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00325"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00325"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00325"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00325"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00325.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00325"]},
+ "label": { "en": ["ALTO XML for A0067545_00325"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00325/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00325/annotation",
"type": "Annotation",
@@ -92625,7 +54100,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00325/full/max/0/default.jpg",
"type": "Image",
@@ -92637,9 +54111,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00325",
"type": "ImageService3",
@@ -92649,11 +54121,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00325",
"@type": "ImageService2",
@@ -92663,45 +54133,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00325/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00326/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 326"],
- "sv": [
-
- "Bild 326"
-
- ],
-
- "en": [
-
- "Image 326"
-
- ]
-
+ "en": ["Image 326"]
},
"width": 5896,
@@ -92709,199 +54160,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00326"]}
-
+ "value": { "none": ["A0067545_00326"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00326"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00326"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00326"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00326"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00326.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00326"]},
+ "label": { "en": ["ALTO XML for A0067545_00326"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00326/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00326/annotation",
"type": "Annotation",
@@ -92909,7 +54266,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00326/full/max/0/default.jpg",
"type": "Image",
@@ -92921,9 +54277,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00326",
"type": "ImageService3",
@@ -92933,11 +54287,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00326",
"@type": "ImageService2",
@@ -92947,45 +54299,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00326/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00327/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 327"],
- "sv": [
-
- "Bild 327"
-
- ],
-
- "en": [
-
- "Image 327"
-
- ]
-
+ "en": ["Image 327"]
},
"width": 5864,
@@ -92993,199 +54326,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00327"]}
-
+ "value": { "none": ["A0067545_00327"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00327"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00327"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00327"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00327"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9974
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9974
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00327.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00327"]},
+ "label": { "en": ["ALTO XML for A0067545_00327"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00327/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00327/annotation",
"type": "Annotation",
@@ -93193,7 +54432,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00327/full/max/0/default.jpg",
"type": "Image",
@@ -93205,9 +54443,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00327",
"type": "ImageService3",
@@ -93217,11 +54453,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00327",
"@type": "ImageService2",
@@ -93231,45 +54465,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00327/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00328/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 328"],
- "sv": [
-
- "Bild 328"
-
- ],
-
- "en": [
-
- "Image 328"
-
- ]
-
+ "en": ["Image 328"]
},
"width": 5896,
@@ -93277,199 +54492,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00328"]}
-
+ "value": { "none": ["A0067545_00328"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00328"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00328"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00328"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00328"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00328.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00328"]},
+ "label": { "en": ["ALTO XML for A0067545_00328"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00328/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00328/annotation",
"type": "Annotation",
@@ -93477,7 +54598,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00328/full/max/0/default.jpg",
"type": "Image",
@@ -93489,9 +54609,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00328",
"type": "ImageService3",
@@ -93501,11 +54619,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00328",
"@type": "ImageService2",
@@ -93515,45 +54631,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00328/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00329/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 329"],
- "sv": [
-
- "Bild 329"
-
- ],
-
- "en": [
-
- "Image 329"
-
- ]
-
+ "en": ["Image 329"]
},
"width": 5896,
@@ -93561,199 +54658,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00329"]}
-
+ "value": { "none": ["A0067545_00329"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00329"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00329"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00329"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00329"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00329.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00329"]},
+ "label": { "en": ["ALTO XML for A0067545_00329"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00329/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00329/annotation",
"type": "Annotation",
@@ -93761,7 +54764,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00329/full/max/0/default.jpg",
"type": "Image",
@@ -93773,9 +54775,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00329",
"type": "ImageService3",
@@ -93785,11 +54785,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00329",
"@type": "ImageService2",
@@ -93799,45 +54797,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00329/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00330/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 330"],
- "sv": [
-
- "Bild 330"
-
- ],
-
- "en": [
-
- "Image 330"
-
- ]
-
+ "en": ["Image 330"]
},
"width": 5864,
@@ -93845,199 +54824,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00330"]}
-
+ "value": { "none": ["A0067545_00330"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00330"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00330"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00330"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00330"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00330.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00330"]},
+ "label": { "en": ["ALTO XML for A0067545_00330"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00330/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00330/annotation",
"type": "Annotation",
@@ -94045,7 +54930,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00330/full/max/0/default.jpg",
"type": "Image",
@@ -94057,9 +54941,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00330",
"type": "ImageService3",
@@ -94069,11 +54951,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00330",
"@type": "ImageService2",
@@ -94083,45 +54963,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00330/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00331/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 331"],
- "sv": [
-
- "Bild 331"
-
- ],
-
- "en": [
-
- "Image 331"
-
- ]
-
+ "en": ["Image 331"]
},
"width": 6016,
@@ -94129,199 +54990,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00331"]}
-
+ "value": { "none": ["A0067545_00331"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00331"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00331"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00331"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00331"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9917
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9917
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00331.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00331"]},
+ "label": { "en": ["ALTO XML for A0067545_00331"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00331/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00331/annotation",
"type": "Annotation",
@@ -94329,7 +55096,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00331/full/max/0/default.jpg",
"type": "Image",
@@ -94341,9 +55107,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00331",
"type": "ImageService3",
@@ -94353,11 +55117,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00331",
"@type": "ImageService2",
@@ -94367,45 +55129,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00331/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00332/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 332"],
- "sv": [
-
- "Bild 332"
-
- ],
-
- "en": [
-
- "Image 332"
-
- ]
-
+ "en": ["Image 332"]
},
"width": 6016,
@@ -94413,199 +55156,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00332"]}
-
+ "value": { "none": ["A0067545_00332"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00332"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00332"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00332"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00332"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00332.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00332"]},
+ "label": { "en": ["ALTO XML for A0067545_00332"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00332/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00332/annotation",
"type": "Annotation",
@@ -94613,7 +55262,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00332/full/max/0/default.jpg",
"type": "Image",
@@ -94625,9 +55273,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00332",
"type": "ImageService3",
@@ -94637,11 +55283,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00332",
"@type": "ImageService2",
@@ -94651,45 +55295,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00332/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00333/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 333"],
- "sv": [
-
- "Bild 333"
-
- ],
-
- "en": [
-
- "Image 333"
-
- ]
-
+ "en": ["Image 333"]
},
"width": 6016,
@@ -94697,199 +55322,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00333"]}
-
+ "value": { "none": ["A0067545_00333"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00333"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00333"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00333"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00333"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9971
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9971
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00333.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00333"]},
+ "label": { "en": ["ALTO XML for A0067545_00333"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00333/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00333/annotation",
"type": "Annotation",
@@ -94897,7 +55428,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00333/full/max/0/default.jpg",
"type": "Image",
@@ -94909,9 +55439,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00333",
"type": "ImageService3",
@@ -94921,11 +55449,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00333",
"@type": "ImageService2",
@@ -94935,45 +55461,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00333/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00334/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 334"],
- "sv": [
-
- "Bild 334"
-
- ],
-
- "en": [
-
- "Image 334"
-
- ]
-
+ "en": ["Image 334"]
},
"width": 5992,
@@ -94981,199 +55488,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00334"]}
-
+ "value": { "none": ["A0067545_00334"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00334"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00334"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00334"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00334"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9971
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9971
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00334.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00334"]},
+ "label": { "en": ["ALTO XML for A0067545_00334"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00334/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00334/annotation",
"type": "Annotation",
@@ -95181,7 +55594,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00334/full/max/0/default.jpg",
"type": "Image",
@@ -95193,9 +55605,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00334",
"type": "ImageService3",
@@ -95205,11 +55615,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00334",
"@type": "ImageService2",
@@ -95219,45 +55627,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00334/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00335/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 335"],
- "sv": [
-
- "Bild 335"
-
- ],
-
- "en": [
-
- "Image 335"
-
- ]
-
+ "en": ["Image 335"]
},
"width": 6016,
@@ -95265,199 +55654,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00335"]}
-
+ "value": { "none": ["A0067545_00335"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00335"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00335"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00335"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00335"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9972
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9972
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00335.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00335"]},
+ "label": { "en": ["ALTO XML for A0067545_00335"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00335/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00335/annotation",
"type": "Annotation",
@@ -95465,7 +55760,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00335/full/max/0/default.jpg",
"type": "Image",
@@ -95477,9 +55771,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00335",
"type": "ImageService3",
@@ -95489,11 +55781,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00335",
"@type": "ImageService2",
@@ -95503,45 +55793,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00335/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00336/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 336"],
- "sv": [
-
- "Bild 336"
-
- ],
-
- "en": [
-
- "Image 336"
-
- ]
-
+ "en": ["Image 336"]
},
"width": 6016,
@@ -95549,199 +55820,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00336"]}
-
+ "value": { "none": ["A0067545_00336"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00336"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00336"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00336"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00336"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9979
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9979
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00336.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00336"]},
+ "label": { "en": ["ALTO XML for A0067545_00336"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00336/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00336/annotation",
"type": "Annotation",
@@ -95749,7 +55926,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00336/full/max/0/default.jpg",
"type": "Image",
@@ -95761,9 +55937,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00336",
"type": "ImageService3",
@@ -95773,11 +55947,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00336",
"@type": "ImageService2",
@@ -95787,45 +55959,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00336/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00337/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 337"],
- "sv": [
-
- "Bild 337"
-
- ],
-
- "en": [
-
- "Image 337"
-
- ]
-
+ "en": ["Image 337"]
},
"width": 6016,
@@ -95833,199 +55986,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00337"]}
-
+ "value": { "none": ["A0067545_00337"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00337"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00337"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00337"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00337"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00337.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00337"]},
+ "label": { "en": ["ALTO XML for A0067545_00337"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00337/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00337/annotation",
"type": "Annotation",
@@ -96033,7 +56092,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00337/full/max/0/default.jpg",
"type": "Image",
@@ -96045,9 +56103,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00337",
"type": "ImageService3",
@@ -96057,11 +56113,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00337",
"@type": "ImageService2",
@@ -96071,45 +56125,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00337/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00338/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 338"],
- "sv": [
-
- "Bild 338"
-
- ],
-
- "en": [
-
- "Image 338"
-
- ]
-
+ "en": ["Image 338"]
},
"width": 6080,
@@ -96117,199 +56152,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00338"]}
-
+ "value": { "none": ["A0067545_00338"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00338"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00338"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00338"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00338"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9977
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9977
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00338.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00338"]},
+ "label": { "en": ["ALTO XML for A0067545_00338"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00338/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00338/annotation",
"type": "Annotation",
@@ -96317,7 +56258,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00338/full/max/0/default.jpg",
"type": "Image",
@@ -96329,9 +56269,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00338",
"type": "ImageService3",
@@ -96341,11 +56279,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00338",
"@type": "ImageService2",
@@ -96355,45 +56291,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00338/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00339/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 339"],
- "sv": [
-
- "Bild 339"
-
- ],
-
- "en": [
-
- "Image 339"
-
- ]
-
+ "en": ["Image 339"]
},
"width": 5896,
@@ -96401,199 +56318,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00339"]}
-
+ "value": { "none": ["A0067545_00339"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00339"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00339"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00339"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00339"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00339.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00339"]},
+ "label": { "en": ["ALTO XML for A0067545_00339"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00339/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00339/annotation",
"type": "Annotation",
@@ -96601,7 +56424,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00339/full/max/0/default.jpg",
"type": "Image",
@@ -96613,9 +56435,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00339",
"type": "ImageService3",
@@ -96625,11 +56445,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00339",
"@type": "ImageService2",
@@ -96639,45 +56457,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00339/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00340/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 340"],
- "sv": [
-
- "Bild 340"
-
- ],
-
- "en": [
-
- "Image 340"
-
- ]
-
+ "en": ["Image 340"]
},
"width": 5896,
@@ -96685,199 +56484,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00340"]}
-
+ "value": { "none": ["A0067545_00340"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00340"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00340"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00340"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00340"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9978
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9978
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00340.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00340"]},
+ "label": { "en": ["ALTO XML for A0067545_00340"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00340/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00340/annotation",
"type": "Annotation",
@@ -96885,7 +56590,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00340/full/max/0/default.jpg",
"type": "Image",
@@ -96897,9 +56601,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00340",
"type": "ImageService3",
@@ -96909,11 +56611,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00340",
"@type": "ImageService2",
@@ -96923,45 +56623,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00340/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00341/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 341"],
- "sv": [
-
- "Bild 341"
-
- ],
-
- "en": [
-
- "Image 341"
-
- ]
-
+ "en": ["Image 341"]
},
"width": 6016,
@@ -96969,199 +56650,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00341"]}
-
+ "value": { "none": ["A0067545_00341"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00341"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00341"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00341"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00341"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9967
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9967
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00341.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00341"]},
+ "label": { "en": ["ALTO XML for A0067545_00341"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00341/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00341/annotation",
"type": "Annotation",
@@ -97169,7 +56756,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00341/full/max/0/default.jpg",
"type": "Image",
@@ -97181,9 +56767,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00341",
"type": "ImageService3",
@@ -97193,11 +56777,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00341",
"@type": "ImageService2",
@@ -97207,45 +56789,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00341/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00342/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 342"],
- "sv": [
-
- "Bild 342"
-
- ],
-
- "en": [
-
- "Image 342"
-
- ]
-
+ "en": ["Image 342"]
},
"width": 5896,
@@ -97253,199 +56816,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00342"]}
-
+ "value": { "none": ["A0067545_00342"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00342"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00342"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00342"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00342"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00342.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00342"]},
+ "label": { "en": ["ALTO XML for A0067545_00342"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00342/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00342/annotation",
"type": "Annotation",
@@ -97453,7 +56922,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00342/full/max/0/default.jpg",
"type": "Image",
@@ -97465,9 +56933,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00342",
"type": "ImageService3",
@@ -97477,11 +56943,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00342",
"@type": "ImageService2",
@@ -97491,45 +56955,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00342/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00343/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 343"],
- "sv": [
-
- "Bild 343"
-
- ],
-
- "en": [
-
- "Image 343"
-
- ]
-
+ "en": ["Image 343"]
},
"width": 5984,
@@ -97537,199 +56982,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00343"]}
-
+ "value": { "none": ["A0067545_00343"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00343"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00343"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00343"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00343"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00343.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00343"]},
+ "label": { "en": ["ALTO XML for A0067545_00343"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00343/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00343/annotation",
"type": "Annotation",
@@ -97737,7 +57088,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00343/full/max/0/default.jpg",
"type": "Image",
@@ -97749,9 +57099,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00343",
"type": "ImageService3",
@@ -97761,11 +57109,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00343",
"@type": "ImageService2",
@@ -97775,45 +57121,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00343/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00344/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 344"],
- "sv": [
-
- "Bild 344"
-
- ],
-
- "en": [
-
- "Image 344"
-
- ]
-
+ "en": ["Image 344"]
},
"width": 6016,
@@ -97821,199 +57148,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00344"]}
-
+ "value": { "none": ["A0067545_00344"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00344"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00344"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00344"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00344"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00344.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00344"]},
+ "label": { "en": ["ALTO XML for A0067545_00344"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00344/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00344/annotation",
"type": "Annotation",
@@ -98021,7 +57254,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00344/full/max/0/default.jpg",
"type": "Image",
@@ -98033,9 +57265,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00344",
"type": "ImageService3",
@@ -98045,11 +57275,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00344",
"@type": "ImageService2",
@@ -98059,45 +57287,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00344/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00345/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 345"],
- "sv": [
-
- "Bild 345"
-
- ],
-
- "en": [
-
- "Image 345"
-
- ]
-
+ "en": ["Image 345"]
},
"width": 6016,
@@ -98105,199 +57314,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00345"]}
-
+ "value": { "none": ["A0067545_00345"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00345"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00345"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00345"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00345"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9956
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9956
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00345.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00345"]},
+ "label": { "en": ["ALTO XML for A0067545_00345"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00345/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00345/annotation",
"type": "Annotation",
@@ -98305,7 +57420,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00345/full/max/0/default.jpg",
"type": "Image",
@@ -98317,9 +57431,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00345",
"type": "ImageService3",
@@ -98329,11 +57441,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00345",
"@type": "ImageService2",
@@ -98343,45 +57453,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00345/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00346/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 346"],
- "sv": [
-
- "Bild 346"
-
- ],
-
- "en": [
-
- "Image 346"
-
- ]
-
+ "en": ["Image 346"]
},
"width": 6016,
@@ -98389,199 +57480,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00346"]}
-
+ "value": { "none": ["A0067545_00346"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00346"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00346"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00346"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00346"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00346.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00346"]},
+ "label": { "en": ["ALTO XML for A0067545_00346"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00346/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00346/annotation",
"type": "Annotation",
@@ -98589,7 +57586,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00346/full/max/0/default.jpg",
"type": "Image",
@@ -98601,9 +57597,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00346",
"type": "ImageService3",
@@ -98613,11 +57607,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00346",
"@type": "ImageService2",
@@ -98627,45 +57619,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00346/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00347/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 347"],
- "sv": [
-
- "Bild 347"
-
- ],
-
- "en": [
-
- "Image 347"
-
- ]
-
+ "en": ["Image 347"]
},
"width": 6016,
@@ -98673,199 +57646,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00347"]}
-
+ "value": { "none": ["A0067545_00347"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00347"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00347"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00347"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00347"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00347.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00347"]},
+ "label": { "en": ["ALTO XML for A0067545_00347"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00347/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00347/annotation",
"type": "Annotation",
@@ -98873,7 +57752,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00347/full/max/0/default.jpg",
"type": "Image",
@@ -98885,9 +57763,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00347",
"type": "ImageService3",
@@ -98897,11 +57773,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00347",
"@type": "ImageService2",
@@ -98911,45 +57785,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00347/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00348/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 348"],
- "sv": [
-
- "Bild 348"
-
- ],
-
- "en": [
-
- "Image 348"
-
- ]
-
+ "en": ["Image 348"]
},
"width": 6016,
@@ -98957,199 +57812,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00348"]}
-
+ "value": { "none": ["A0067545_00348"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00348"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00348"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00348"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00348"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
- "value": {
-
- "sv": [
-
- "Texten är skapad med artificiell intelligens och kan innehålla fel."
-
- ],
-
- "en": [
-
- "The text is created with artificial intelligence and may contain errors."
-
- ]
-
- }
-
- },
-
- {
-
- "label": {
-
- "sv": [
-
- "Konfidensvärde"
-
+ "value": {
+ "sv": [
+ "Texten är skapad med artificiell intelligens och kan innehålla fel."
],
"en": [
-
- "Confidence value"
-
+ "The text is created with artificial intelligence and may contain errors."
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Konfidensvärde"],
+
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9894
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9894
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00348.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00348"]},
+ "label": { "en": ["ALTO XML for A0067545_00348"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00348/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00348/annotation",
"type": "Annotation",
@@ -99157,7 +57918,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00348/full/max/0/default.jpg",
"type": "Image",
@@ -99169,9 +57929,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00348",
"type": "ImageService3",
@@ -99181,11 +57939,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00348",
"@type": "ImageService2",
@@ -99195,45 +57951,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00348/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00349/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 349"],
- "sv": [
-
- "Bild 349"
-
- ],
-
- "en": [
-
- "Image 349"
-
- ]
-
+ "en": ["Image 349"]
},
"width": 6016,
@@ -99241,199 +57978,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00349"]}
-
+ "value": { "none": ["A0067545_00349"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00349"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00349"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00349"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00349"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9908
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9908
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00349.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00349"]},
+ "label": { "en": ["ALTO XML for A0067545_00349"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00349/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00349/annotation",
"type": "Annotation",
@@ -99441,7 +58084,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00349/full/max/0/default.jpg",
"type": "Image",
@@ -99453,9 +58095,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00349",
"type": "ImageService3",
@@ -99465,11 +58105,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00349",
"@type": "ImageService2",
@@ -99479,45 +58117,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00349/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00350/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 350"],
- "sv": [
-
- "Bild 350"
-
- ],
-
- "en": [
-
- "Image 350"
-
- ]
-
+ "en": ["Image 350"]
},
"width": 6016,
@@ -99525,199 +58144,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00350"]}
-
+ "value": { "none": ["A0067545_00350"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00350"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00350"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00350"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00350"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00350.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00350"]},
+ "label": { "en": ["ALTO XML for A0067545_00350"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00350/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00350/annotation",
"type": "Annotation",
@@ -99725,7 +58250,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00350/full/max/0/default.jpg",
"type": "Image",
@@ -99737,9 +58261,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00350",
"type": "ImageService3",
@@ -99749,11 +58271,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00350",
"@type": "ImageService2",
@@ -99763,45 +58283,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00350/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00351/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 351"],
- "sv": [
-
- "Bild 351"
-
- ],
-
- "en": [
-
- "Image 351"
-
- ]
-
+ "en": ["Image 351"]
},
"width": 6016,
@@ -99809,199 +58310,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00351"]}
-
+ "value": { "none": ["A0067545_00351"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00351"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00351"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00351"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00351"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00351.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00351"]},
+ "label": { "en": ["ALTO XML for A0067545_00351"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00351/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00351/annotation",
"type": "Annotation",
@@ -100009,7 +58416,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00351/full/max/0/default.jpg",
"type": "Image",
@@ -100021,9 +58427,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00351",
"type": "ImageService3",
@@ -100033,11 +58437,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00351",
"@type": "ImageService2",
@@ -100047,45 +58449,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00351/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00352/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 352"],
- "sv": [
-
- "Bild 352"
-
- ],
-
- "en": [
-
- "Image 352"
-
- ]
-
+ "en": ["Image 352"]
},
"width": 6016,
@@ -100093,199 +58476,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00352"]}
-
+ "value": { "none": ["A0067545_00352"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00352"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00352"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00352"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00352"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00352.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00352"]},
+ "label": { "en": ["ALTO XML for A0067545_00352"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00352/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00352/annotation",
"type": "Annotation",
@@ -100293,7 +58582,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00352/full/max/0/default.jpg",
"type": "Image",
@@ -100305,9 +58593,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00352",
"type": "ImageService3",
@@ -100317,11 +58603,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00352",
"@type": "ImageService2",
@@ -100331,45 +58615,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00352/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00353/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 353"],
- "sv": [
-
- "Bild 353"
-
- ],
-
- "en": [
-
- "Image 353"
-
- ]
-
+ "en": ["Image 353"]
},
"width": 6016,
@@ -100377,199 +58642,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00353"]}
-
+ "value": { "none": ["A0067545_00353"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00353"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00353"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00353"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00353"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00353.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00353"]},
+ "label": { "en": ["ALTO XML for A0067545_00353"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00353/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00353/annotation",
"type": "Annotation",
@@ -100577,7 +58748,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00353/full/max/0/default.jpg",
"type": "Image",
@@ -100589,9 +58759,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00353",
"type": "ImageService3",
@@ -100601,11 +58769,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00353",
"@type": "ImageService2",
@@ -100615,45 +58781,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00353/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00354/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 354"],
- "sv": [
-
- "Bild 354"
-
- ],
-
- "en": [
-
- "Image 354"
-
- ]
-
+ "en": ["Image 354"]
},
"width": 5984,
@@ -100661,199 +58808,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00354"]}
-
+ "value": { "none": ["A0067545_00354"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00354"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00354"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00354"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00354"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00354.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00354"]},
+ "label": { "en": ["ALTO XML for A0067545_00354"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00354/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00354/annotation",
"type": "Annotation",
@@ -100861,7 +58914,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00354/full/max/0/default.jpg",
"type": "Image",
@@ -100873,9 +58925,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00354",
"type": "ImageService3",
@@ -100885,11 +58935,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00354",
"@type": "ImageService2",
@@ -100899,45 +58947,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00354/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00355/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 355"],
- "sv": [
-
- "Bild 355"
-
- ],
-
- "en": [
-
- "Image 355"
-
- ]
-
+ "en": ["Image 355"]
},
"width": 6048,
@@ -100945,199 +58974,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00355"]}
-
+ "value": { "none": ["A0067545_00355"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00355"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00355"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00355"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00355"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9915
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9915
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00355.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00355"]},
+ "label": { "en": ["ALTO XML for A0067545_00355"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00355/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00355/annotation",
"type": "Annotation",
@@ -101145,7 +59080,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00355/full/max/0/default.jpg",
"type": "Image",
@@ -101157,9 +59091,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00355",
"type": "ImageService3",
@@ -101169,11 +59101,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00355",
"@type": "ImageService2",
@@ -101183,45 +59113,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00355/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00356/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 356"],
- "sv": [
-
- "Bild 356"
-
- ],
-
- "en": [
-
- "Image 356"
-
- ]
-
+ "en": ["Image 356"]
},
"width": 6016,
@@ -101229,199 +59140,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00356"]}
-
+ "value": { "none": ["A0067545_00356"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00356"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00356"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00356"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00356"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9933
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9933
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00356.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00356"]},
+ "label": { "en": ["ALTO XML for A0067545_00356"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00356/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00356/annotation",
"type": "Annotation",
@@ -101429,7 +59246,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00356/full/max/0/default.jpg",
"type": "Image",
@@ -101441,9 +59257,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00356",
"type": "ImageService3",
@@ -101453,11 +59267,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00356",
"@type": "ImageService2",
@@ -101467,45 +59279,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00356/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00357/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 357"],
- "sv": [
-
- "Bild 357"
-
- ],
-
- "en": [
-
- "Image 357"
-
- ]
-
+ "en": ["Image 357"]
},
"width": 6016,
@@ -101513,199 +59306,105 @@
"height": 5320,
"metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00357"]}
-
- },
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00357"
-
- ]
-
- }
-
+ "value": { "none": ["A0067545_00357"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "sv": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00357"
-
- ],
-
- "en": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00357"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00357"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Transkriptionsmetod"
+ "en": ["Source reference"]
+ },
+ "value": {
+ "sv": [
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00357"
],
"en": [
-
- "Transcription method"
-
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00357"
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Transkriptionsmetod"],
+
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00357.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00357"]},
+ "label": { "en": ["ALTO XML for A0067545_00357"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00357/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00357/annotation",
"type": "Annotation",
@@ -101713,7 +59412,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00357/full/max/0/default.jpg",
"type": "Image",
@@ -101725,9 +59423,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00357",
"type": "ImageService3",
@@ -101737,11 +59433,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00357",
"@type": "ImageService2",
@@ -101751,45 +59445,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00357/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00358/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 358"],
- "sv": [
-
- "Bild 358"
-
- ],
-
- "en": [
-
- "Image 358"
-
- ]
-
+ "en": ["Image 358"]
},
"width": 5992,
@@ -101797,199 +59472,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00358"]}
-
+ "value": { "none": ["A0067545_00358"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00358"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00358"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00358"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00358"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9916
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9916
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00358.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00358"]},
+ "label": { "en": ["ALTO XML for A0067545_00358"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00358/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00358/annotation",
"type": "Annotation",
@@ -101997,7 +59578,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00358/full/max/0/default.jpg",
"type": "Image",
@@ -102009,9 +59589,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00358",
"type": "ImageService3",
@@ -102021,11 +59599,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00358",
"@type": "ImageService2",
@@ -102035,45 +59611,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00358/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00359/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 359"],
- "sv": [
-
- "Bild 359"
-
- ],
-
- "en": [
-
- "Image 359"
-
- ]
-
+ "en": ["Image 359"]
},
"width": 5864,
@@ -102081,199 +59638,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00359"]}
-
+ "value": { "none": ["A0067545_00359"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00359"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00359"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00359"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00359"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00359.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00359"]},
+ "label": { "en": ["ALTO XML for A0067545_00359"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00359/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00359/annotation",
"type": "Annotation",
@@ -102281,7 +59744,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00359/full/max/0/default.jpg",
"type": "Image",
@@ -102293,9 +59755,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00359",
"type": "ImageService3",
@@ -102305,11 +59765,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00359",
"@type": "ImageService2",
@@ -102319,45 +59777,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00359/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00360/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 360"],
- "sv": [
-
- "Bild 360"
-
- ],
-
- "en": [
-
- "Image 360"
-
- ]
-
+ "en": ["Image 360"]
},
"width": 5984,
@@ -102365,199 +59804,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00360"]}
-
+ "value": { "none": ["A0067545_00360"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00360"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00360"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00360"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00360"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00360.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00360"]},
+ "label": { "en": ["ALTO XML for A0067545_00360"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00360/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00360/annotation",
"type": "Annotation",
@@ -102565,7 +59910,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00360/full/max/0/default.jpg",
"type": "Image",
@@ -102577,9 +59921,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00360",
"type": "ImageService3",
@@ -102589,11 +59931,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00360",
"@type": "ImageService2",
@@ -102603,45 +59943,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00360/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00361/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 361"],
- "sv": [
-
- "Bild 361"
-
- ],
-
- "en": [
-
- "Image 361"
-
- ]
-
+ "en": ["Image 361"]
},
"width": 6176,
@@ -102649,199 +59970,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00361"]}
-
+ "value": { "none": ["A0067545_00361"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00361"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00361"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00361"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00361"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00361.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00361"]},
+ "label": { "en": ["ALTO XML for A0067545_00361"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00361/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00361/annotation",
"type": "Annotation",
@@ -102849,7 +60076,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00361/full/max/0/default.jpg",
"type": "Image",
@@ -102861,9 +60087,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00361",
"type": "ImageService3",
@@ -102873,11 +60097,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00361",
"@type": "ImageService2",
@@ -102887,45 +60109,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00361/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00362/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 362"],
- "sv": [
-
- "Bild 362"
-
- ],
-
- "en": [
-
- "Image 362"
-
- ]
-
+ "en": ["Image 362"]
},
"width": 6080,
@@ -102933,199 +60136,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00362"]}
-
+ "value": { "none": ["A0067545_00362"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00362"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00362"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00362"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00362"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9893
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9893
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00362.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00362"]},
+ "label": { "en": ["ALTO XML for A0067545_00362"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00362/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00362/annotation",
"type": "Annotation",
@@ -103133,7 +60242,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00362/full/max/0/default.jpg",
"type": "Image",
@@ -103145,9 +60253,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00362",
"type": "ImageService3",
@@ -103157,11 +60263,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00362",
"@type": "ImageService2",
@@ -103171,45 +60275,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00362/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00363/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 363"],
- "sv": [
-
- "Bild 363"
-
- ],
-
- "en": [
-
- "Image 363"
-
- ]
-
+ "en": ["Image 363"]
},
"width": 6016,
@@ -103217,199 +60302,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00363"]}
-
+ "value": { "none": ["A0067545_00363"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00363"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00363"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00363"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00363"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9909
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9909
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00363.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00363"]},
+ "label": { "en": ["ALTO XML for A0067545_00363"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00363/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00363/annotation",
"type": "Annotation",
@@ -103417,7 +60408,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00363/full/max/0/default.jpg",
"type": "Image",
@@ -103429,9 +60419,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00363",
"type": "ImageService3",
@@ -103441,11 +60429,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00363",
"@type": "ImageService2",
@@ -103455,45 +60441,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00363/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00364/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 364"],
- "sv": [
-
- "Bild 364"
-
- ],
-
- "en": [
-
- "Image 364"
-
- ]
-
+ "en": ["Image 364"]
},
"width": 5984,
@@ -103501,199 +60468,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00364"]}
-
+ "value": { "none": ["A0067545_00364"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00364"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00364"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00364"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00364"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00364.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00364"]},
+ "label": { "en": ["ALTO XML for A0067545_00364"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00364/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00364/annotation",
"type": "Annotation",
@@ -103701,7 +60574,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00364/full/max/0/default.jpg",
"type": "Image",
@@ -103713,9 +60585,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00364",
"type": "ImageService3",
@@ -103725,11 +60595,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00364",
"@type": "ImageService2",
@@ -103739,45 +60607,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00364/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00365/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 365"],
- "sv": [
-
- "Bild 365"
-
- ],
-
- "en": [
-
- "Image 365"
-
- ]
-
+ "en": ["Image 365"]
},
"width": 5984,
@@ -103785,199 +60634,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00365"]}
-
+ "value": { "none": ["A0067545_00365"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00365"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00365"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00365"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00365"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9907
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9907
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00365.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00365"]},
+ "label": { "en": ["ALTO XML for A0067545_00365"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00365/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00365/annotation",
"type": "Annotation",
@@ -103985,7 +60740,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00365/full/max/0/default.jpg",
"type": "Image",
@@ -103997,9 +60751,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00365",
"type": "ImageService3",
@@ -104009,11 +60761,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00365",
"@type": "ImageService2",
@@ -104023,45 +60773,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00365/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00366/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 366"],
- "sv": [
-
- "Bild 366"
-
- ],
-
- "en": [
-
- "Image 366"
-
- ]
-
+ "en": ["Image 366"]
},
"width": 6176,
@@ -104069,199 +60800,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00366"]}
-
+ "value": { "none": ["A0067545_00366"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00366"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00366"]
}
-
},
- {
-
- "label": {
-
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
+ {
+ "label": {
+ "sv": ["Källhänvisning"],
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00366"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00366"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00366.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00366"]},
+ "label": { "en": ["ALTO XML for A0067545_00366"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00366/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00366/annotation",
"type": "Annotation",
@@ -104269,7 +60906,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00366/full/max/0/default.jpg",
"type": "Image",
@@ -104281,9 +60917,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00366",
"type": "ImageService3",
@@ -104293,11 +60927,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00366",
"@type": "ImageService2",
@@ -104307,45 +60939,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00366/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00367/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 367"],
- "sv": [
-
- "Bild 367"
-
- ],
-
- "en": [
-
- "Image 367"
-
- ]
-
+ "en": ["Image 367"]
},
"width": 6080,
@@ -104353,199 +60966,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00367"]}
-
+ "value": { "none": ["A0067545_00367"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00367"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00367"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00367"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00367"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00367.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00367"]},
+ "label": { "en": ["ALTO XML for A0067545_00367"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00367/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00367/annotation",
"type": "Annotation",
@@ -104553,7 +61072,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00367/full/max/0/default.jpg",
"type": "Image",
@@ -104565,9 +61083,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00367",
"type": "ImageService3",
@@ -104577,11 +61093,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00367",
"@type": "ImageService2",
@@ -104591,45 +61105,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00367/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00368/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 368"],
- "sv": [
-
- "Bild 368"
-
- ],
-
- "en": [
-
- "Image 368"
-
- ]
-
+ "en": ["Image 368"]
},
"width": 5984,
@@ -104637,199 +61132,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00368"]}
-
+ "value": { "none": ["A0067545_00368"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00368"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00368"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00368"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00368"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00368.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00368"]},
+ "label": { "en": ["ALTO XML for A0067545_00368"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00368/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00368/annotation",
"type": "Annotation",
@@ -104837,7 +61238,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00368/full/max/0/default.jpg",
"type": "Image",
@@ -104849,9 +61249,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00368",
"type": "ImageService3",
@@ -104861,11 +61259,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00368",
"@type": "ImageService2",
@@ -104875,45 +61271,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00368/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00369/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 369"],
- "sv": [
-
- "Bild 369"
-
- ],
-
- "en": [
-
- "Image 369"
-
- ]
-
+ "en": ["Image 369"]
},
"width": 5984,
@@ -104921,199 +61298,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00369"]}
-
+ "value": { "none": ["A0067545_00369"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00369"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00369"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00369"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00369"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00369.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00369"]},
+ "label": { "en": ["ALTO XML for A0067545_00369"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00369/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00369/annotation",
"type": "Annotation",
@@ -105121,7 +61404,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00369/full/max/0/default.jpg",
"type": "Image",
@@ -105133,9 +61415,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00369",
"type": "ImageService3",
@@ -105145,11 +61425,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00369",
"@type": "ImageService2",
@@ -105159,45 +61437,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00369/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00370/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 370"],
- "sv": [
-
- "Bild 370"
-
- ],
-
- "en": [
-
- "Image 370"
-
- ]
-
+ "en": ["Image 370"]
},
"width": 6016,
@@ -105205,199 +61464,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00370"]}
-
+ "value": { "none": ["A0067545_00370"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00370"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00370"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00370"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00370"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00370.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00370"]},
+ "label": { "en": ["ALTO XML for A0067545_00370"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00370/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00370/annotation",
"type": "Annotation",
@@ -105405,7 +61570,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00370/full/max/0/default.jpg",
"type": "Image",
@@ -105417,9 +61581,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00370",
"type": "ImageService3",
@@ -105429,11 +61591,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00370",
"@type": "ImageService2",
@@ -105443,45 +61603,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00370/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00371/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 371"],
- "sv": [
-
- "Bild 371"
-
- ],
-
- "en": [
-
- "Image 371"
-
- ]
-
+ "en": ["Image 371"]
},
"width": 6016,
@@ -105489,199 +61630,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00371"]}
-
+ "value": { "none": ["A0067545_00371"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00371"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00371"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00371"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00371"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00371.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00371"]},
+ "label": { "en": ["ALTO XML for A0067545_00371"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00371/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00371/annotation",
"type": "Annotation",
@@ -105689,7 +61736,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00371/full/max/0/default.jpg",
"type": "Image",
@@ -105701,9 +61747,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00371",
"type": "ImageService3",
@@ -105713,11 +61757,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00371",
"@type": "ImageService2",
@@ -105727,45 +61769,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00371/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00372/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 372"],
- "sv": [
-
- "Bild 372"
-
- ],
-
- "en": [
-
- "Image 372"
-
- ]
-
+ "en": ["Image 372"]
},
"width": 6016,
@@ -105773,199 +61796,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00372"]}
-
+ "value": { "none": ["A0067545_00372"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00372"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00372"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00372"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00372"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00372.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00372"]},
+ "label": { "en": ["ALTO XML for A0067545_00372"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00372/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00372/annotation",
"type": "Annotation",
@@ -105973,7 +61902,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00372/full/max/0/default.jpg",
"type": "Image",
@@ -105985,9 +61913,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00372",
"type": "ImageService3",
@@ -105997,11 +61923,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00372",
"@type": "ImageService2",
@@ -106011,45 +61935,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00372/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00373/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 373"],
- "sv": [
-
- "Bild 373"
-
- ],
-
- "en": [
-
- "Image 373"
-
- ]
-
+ "en": ["Image 373"]
},
"width": 5984,
@@ -106057,199 +61962,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00373"]}
-
+ "value": { "none": ["A0067545_00373"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00373"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00373"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00373"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00373"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00373.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00373"]},
+ "label": { "en": ["ALTO XML for A0067545_00373"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00373/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00373/annotation",
"type": "Annotation",
@@ -106257,7 +62068,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00373/full/max/0/default.jpg",
"type": "Image",
@@ -106269,9 +62079,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00373",
"type": "ImageService3",
@@ -106281,11 +62089,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00373",
"@type": "ImageService2",
@@ -106295,45 +62101,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00373/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00374/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 374"],
- "sv": [
-
- "Bild 374"
-
- ],
-
- "en": [
-
- "Image 374"
-
- ]
-
+ "en": ["Image 374"]
},
"width": 5896,
@@ -106341,199 +62128,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00374"]}
-
+ "value": { "none": ["A0067545_00374"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00374"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00374"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00374"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00374"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00374.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00374"]},
+ "label": { "en": ["ALTO XML for A0067545_00374"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00374/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00374/annotation",
"type": "Annotation",
@@ -106541,7 +62234,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00374/full/max/0/default.jpg",
"type": "Image",
@@ -106553,9 +62245,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00374",
"type": "ImageService3",
@@ -106565,11 +62255,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00374",
"@type": "ImageService2",
@@ -106579,245 +62267,132 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00374/canvas"
-
}
-
]
-
}
-
]
-
},
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00375/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 375"
-
- ],
-
- "en": [
-
- "Image 375"
-
- ]
-
- },
-
- "width": 5864,
-
- "height": 5288,
-
- "metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00375"]}
-
- },
-
- {
-
- "label": {
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00375/canvas",
- "sv": [
+ "type": "Canvas",
- "Länk"
+ "label": {
+ "sv": ["Bild 375"],
- ],
+ "en": ["Image 375"]
+ },
- "en": [
+ "width": 5864,
- "Link"
+ "height": 5288,
- ]
+ "metadata": [
+ {
+ "label": {
+ "sv": ["Bildid"],
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
+ "value": { "none": ["A0067545_00375"] }
+ },
- "https://sok.riksarkivet.se/bildvisning/A0067545_00375"
+ {
+ "label": {
+ "sv": ["Länk"],
- ]
+ "en": ["Link"]
+ },
+ "value": {
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00375"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00375"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00375"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00375.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00375"]},
+ "label": { "en": ["ALTO XML for A0067545_00375"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00375/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00375/annotation",
"type": "Annotation",
@@ -106825,7 +62400,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00375/full/max/0/default.jpg",
"type": "Image",
@@ -106837,9 +62411,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00375",
"type": "ImageService3",
@@ -106849,11 +62421,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00375",
"@type": "ImageService2",
@@ -106863,45 +62433,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00375/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00376/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 376"],
- "sv": [
-
- "Bild 376"
-
- ],
-
- "en": [
-
- "Image 376"
-
- ]
-
+ "en": ["Image 376"]
},
"width": 5984,
@@ -106909,199 +62460,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00376"]}
-
+ "value": { "none": ["A0067545_00376"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00376"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00376"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00376"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00376"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00376.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00376"]},
+ "label": { "en": ["ALTO XML for A0067545_00376"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00376/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00376/annotation",
"type": "Annotation",
@@ -107109,7 +62566,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00376/full/max/0/default.jpg",
"type": "Image",
@@ -107121,9 +62577,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00376",
"type": "ImageService3",
@@ -107133,11 +62587,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00376",
"@type": "ImageService2",
@@ -107147,45 +62599,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00376/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00377/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 377"],
- "sv": [
-
- "Bild 377"
-
- ],
-
- "en": [
-
- "Image 377"
-
- ]
-
+ "en": ["Image 377"]
},
"width": 6016,
@@ -107193,199 +62626,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00377"]}
-
+ "value": { "none": ["A0067545_00377"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00377"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00377"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00377"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00377"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9920
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9920
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00377.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00377"]},
+ "label": { "en": ["ALTO XML for A0067545_00377"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00377/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00377/annotation",
"type": "Annotation",
@@ -107393,7 +62732,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00377/full/max/0/default.jpg",
"type": "Image",
@@ -107405,9 +62743,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00377",
"type": "ImageService3",
@@ -107417,11 +62753,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00377",
"@type": "ImageService2",
@@ -107431,45 +62765,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00377/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00378/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 378"],
- "sv": [
-
- "Bild 378"
-
- ],
-
- "en": [
-
- "Image 378"
-
- ]
-
+ "en": ["Image 378"]
},
"width": 6016,
@@ -107477,199 +62792,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00378"]}
-
+ "value": { "none": ["A0067545_00378"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00378"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00378"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00378"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00378"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00378.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00378"]},
+ "label": { "en": ["ALTO XML for A0067545_00378"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00378/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00378/annotation",
"type": "Annotation",
@@ -107677,7 +62898,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00378/full/max/0/default.jpg",
"type": "Image",
@@ -107689,9 +62909,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00378",
"type": "ImageService3",
@@ -107701,11 +62919,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00378",
"@type": "ImageService2",
@@ -107715,45 +62931,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00378/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00379/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 379"],
- "sv": [
-
- "Bild 379"
-
- ],
-
- "en": [
-
- "Image 379"
-
- ]
-
+ "en": ["Image 379"]
},
"width": 6176,
@@ -107761,199 +62958,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00379"]}
-
+ "value": { "none": ["A0067545_00379"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00379"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00379"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00379"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00379"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00379.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00379"]},
+ "label": { "en": ["ALTO XML for A0067545_00379"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00379/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00379/annotation",
"type": "Annotation",
@@ -107961,7 +63064,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00379/full/max/0/default.jpg",
"type": "Image",
@@ -107973,9 +63075,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00379",
"type": "ImageService3",
@@ -107985,11 +63085,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00379",
"@type": "ImageService2",
@@ -107999,45 +63097,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00379/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00380/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 380"],
- "sv": [
-
- "Bild 380"
-
- ],
-
- "en": [
-
- "Image 380"
-
- ]
-
+ "en": ["Image 380"]
},
"width": 6176,
@@ -108045,199 +63124,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00380"]}
-
+ "value": { "none": ["A0067545_00380"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00380"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00380"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00380"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00380"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00380.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00380"]},
+ "label": { "en": ["ALTO XML for A0067545_00380"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00380/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00380/annotation",
"type": "Annotation",
@@ -108245,7 +63230,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00380/full/max/0/default.jpg",
"type": "Image",
@@ -108257,9 +63241,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00380",
"type": "ImageService3",
@@ -108269,11 +63251,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00380",
"@type": "ImageService2",
@@ -108283,45 +63263,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00380/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00381/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 381"],
- "sv": [
-
- "Bild 381"
-
- ],
-
- "en": [
-
- "Image 381"
-
- ]
-
+ "en": ["Image 381"]
},
"width": 6016,
@@ -108329,199 +63290,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00381"]}
-
+ "value": { "none": ["A0067545_00381"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00381"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00381"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00381"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00381"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9931
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9931
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00381.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00381"]},
+ "label": { "en": ["ALTO XML for A0067545_00381"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00381/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00381/annotation",
"type": "Annotation",
@@ -108529,7 +63396,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00381/full/max/0/default.jpg",
"type": "Image",
@@ -108541,9 +63407,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00381",
"type": "ImageService3",
@@ -108553,11 +63417,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00381",
"@type": "ImageService2",
@@ -108567,45 +63429,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00381/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00382/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 382"],
- "sv": [
-
- "Bild 382"
-
- ],
-
- "en": [
-
- "Image 382"
-
- ]
-
+ "en": ["Image 382"]
},
"width": 5984,
@@ -108613,199 +63456,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00382"]}
-
+ "value": { "none": ["A0067545_00382"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00382"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00382"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00382"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00382"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00382.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00382"]},
+ "label": { "en": ["ALTO XML for A0067545_00382"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00382/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00382/annotation",
"type": "Annotation",
@@ -108813,7 +63562,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00382/full/max/0/default.jpg",
"type": "Image",
@@ -108825,9 +63573,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00382",
"type": "ImageService3",
@@ -108837,11 +63583,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00382",
"@type": "ImageService2",
@@ -108851,45 +63595,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00382/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00383/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 383"],
- "sv": [
-
- "Bild 383"
-
- ],
-
- "en": [
-
- "Image 383"
-
- ]
-
+ "en": ["Image 383"]
},
"width": 5984,
@@ -108897,199 +63622,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00383"]}
-
+ "value": { "none": ["A0067545_00383"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00383"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00383"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00383"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00383"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9894
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9894
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00383.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00383"]},
+ "label": { "en": ["ALTO XML for A0067545_00383"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00383/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00383/annotation",
"type": "Annotation",
@@ -109097,7 +63728,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00383/full/max/0/default.jpg",
"type": "Image",
@@ -109109,9 +63739,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00383",
"type": "ImageService3",
@@ -109121,11 +63749,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00383",
"@type": "ImageService2",
@@ -109135,45 +63761,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00383/canvas"
-
}
-
]
-
}
-
]
+ },
- },
-
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00384/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 384"
-
- ],
-
- "en": [
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00384/canvas",
- "Image 384"
+ "type": "Canvas",
- ]
+ "label": {
+ "sv": ["Bild 384"],
+ "en": ["Image 384"]
},
"width": 6016,
@@ -109181,199 +63788,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00384"]}
-
+ "value": { "none": ["A0067545_00384"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00384"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00384"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00384"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00384"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9786
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9786
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00384.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00384"]},
+ "label": { "en": ["ALTO XML for A0067545_00384"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00384/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00384/annotation",
"type": "Annotation",
@@ -109381,7 +63894,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00384/full/max/0/default.jpg",
"type": "Image",
@@ -109393,9 +63905,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00384",
"type": "ImageService3",
@@ -109405,11 +63915,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00384",
"@type": "ImageService2",
@@ -109419,45 +63927,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00384/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00385/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 385"],
- "sv": [
-
- "Bild 385"
-
- ],
-
- "en": [
-
- "Image 385"
-
- ]
-
+ "en": ["Image 385"]
},
"width": 5984,
@@ -109465,199 +63954,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00385"]}
-
+ "value": { "none": ["A0067545_00385"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00385"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00385"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00385"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00385"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00385.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00385"]},
+ "label": { "en": ["ALTO XML for A0067545_00385"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00385/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00385/annotation",
"type": "Annotation",
@@ -109665,7 +64060,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00385/full/max/0/default.jpg",
"type": "Image",
@@ -109677,9 +64071,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00385",
"type": "ImageService3",
@@ -109689,11 +64081,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00385",
"@type": "ImageService2",
@@ -109703,45 +64093,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00385/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00386/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 386"],
- "sv": [
-
- "Bild 386"
-
- ],
-
- "en": [
-
- "Image 386"
-
- ]
-
+ "en": ["Image 386"]
},
"width": 5984,
@@ -109749,199 +64120,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00386"]}
-
+ "value": { "none": ["A0067545_00386"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00386"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00386"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00386"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00386"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00386.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00386"]},
+ "label": { "en": ["ALTO XML for A0067545_00386"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00386/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00386/annotation",
"type": "Annotation",
@@ -109949,7 +64226,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00386/full/max/0/default.jpg",
"type": "Image",
@@ -109961,9 +64237,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00386",
"type": "ImageService3",
@@ -109973,11 +64247,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00386",
"@type": "ImageService2",
@@ -109987,45 +64259,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00386/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00387/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 387"],
- "sv": [
-
- "Bild 387"
-
- ],
-
- "en": [
-
- "Image 387"
-
- ]
-
+ "en": ["Image 387"]
},
"width": 5984,
@@ -110033,199 +64286,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00387"]}
-
+ "value": { "none": ["A0067545_00387"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00387"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00387"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00387"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00387"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00387.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00387"]},
+ "label": { "en": ["ALTO XML for A0067545_00387"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00387/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00387/annotation",
"type": "Annotation",
@@ -110233,7 +64392,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00387/full/max/0/default.jpg",
"type": "Image",
@@ -110245,9 +64403,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00387",
"type": "ImageService3",
@@ -110257,11 +64413,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00387",
"@type": "ImageService2",
@@ -110271,45 +64425,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00387/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00388/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 388"],
- "sv": [
-
- "Bild 388"
-
- ],
-
- "en": [
-
- "Image 388"
-
- ]
-
+ "en": ["Image 388"]
},
"width": 6016,
@@ -110317,199 +64452,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00388"]}
-
+ "value": { "none": ["A0067545_00388"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00388"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00388"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00388"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00388"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9895
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9895
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00388.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00388"]},
+ "label": { "en": ["ALTO XML for A0067545_00388"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00388/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00388/annotation",
"type": "Annotation",
@@ -110517,7 +64558,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00388/full/max/0/default.jpg",
"type": "Image",
@@ -110529,9 +64569,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00388",
"type": "ImageService3",
@@ -110541,11 +64579,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00388",
"@type": "ImageService2",
@@ -110555,45 +64591,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00388/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00389/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 389"],
- "sv": [
-
- "Bild 389"
-
- ],
-
- "en": [
-
- "Image 389"
-
- ]
-
+ "en": ["Image 389"]
},
"width": 5896,
@@ -110601,199 +64618,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00389"]}
-
+ "value": { "none": ["A0067545_00389"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00389"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00389"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00389"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00389"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00389.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00389"]},
+ "label": { "en": ["ALTO XML for A0067545_00389"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00389/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00389/annotation",
"type": "Annotation",
@@ -110801,7 +64724,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00389/full/max/0/default.jpg",
"type": "Image",
@@ -110813,9 +64735,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00389",
"type": "ImageService3",
@@ -110825,11 +64745,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00389",
"@type": "ImageService2",
@@ -110839,45 +64757,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00389/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00390/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 390"],
- "sv": [
-
- "Bild 390"
-
- ],
-
- "en": [
-
- "Image 390"
-
- ]
-
+ "en": ["Image 390"]
},
"width": 5984,
@@ -110885,199 +64784,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00390"]}
-
+ "value": { "none": ["A0067545_00390"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00390"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00390"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00390"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00390"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9907
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9907
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00390.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00390"]},
+ "label": { "en": ["ALTO XML for A0067545_00390"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00390/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00390/annotation",
"type": "Annotation",
@@ -111085,7 +64890,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00390/full/max/0/default.jpg",
"type": "Image",
@@ -111097,9 +64901,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00390",
"type": "ImageService3",
@@ -111109,11 +64911,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00390",
"@type": "ImageService2",
@@ -111123,45 +64923,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00390/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00391/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 391"],
- "sv": [
-
- "Bild 391"
-
- ],
-
- "en": [
-
- "Image 391"
-
- ]
-
+ "en": ["Image 391"]
},
"width": 6016,
@@ -111169,199 +64950,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00391"]}
-
+ "value": { "none": ["A0067545_00391"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00391"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00391"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00391"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00391"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9879
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9879
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00391.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00391"]},
+ "label": { "en": ["ALTO XML for A0067545_00391"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00391/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00391/annotation",
"type": "Annotation",
@@ -111369,7 +65056,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00391/full/max/0/default.jpg",
"type": "Image",
@@ -111381,9 +65067,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00391",
"type": "ImageService3",
@@ -111393,11 +65077,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00391",
"@type": "ImageService2",
@@ -111407,45 +65089,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00391/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00392/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 392"],
- "sv": [
-
- "Bild 392"
-
- ],
-
- "en": [
-
- "Image 392"
-
- ]
-
+ "en": ["Image 392"]
},
"width": 5864,
@@ -111453,199 +65116,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00392"]}
-
+ "value": { "none": ["A0067545_00392"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00392"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00392"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00392"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00392"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9926
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9926
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00392.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00392"]},
+ "label": { "en": ["ALTO XML for A0067545_00392"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00392/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00392/annotation",
"type": "Annotation",
@@ -111653,7 +65222,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00392/full/max/0/default.jpg",
"type": "Image",
@@ -111665,9 +65233,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00392",
"type": "ImageService3",
@@ -111677,11 +65243,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00392",
"@type": "ImageService2",
@@ -111691,45 +65255,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00392/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00393/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 393"],
- "sv": [
-
- "Bild 393"
-
- ],
-
- "en": [
-
- "Image 393"
-
- ]
-
+ "en": ["Image 393"]
},
"width": 5864,
@@ -111737,199 +65282,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00393"]}
-
+ "value": { "none": ["A0067545_00393"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00393"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00393"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00393"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00393"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9907
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9907
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00393.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00393"]},
+ "label": { "en": ["ALTO XML for A0067545_00393"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00393/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00393/annotation",
"type": "Annotation",
@@ -111937,7 +65388,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00393/full/max/0/default.jpg",
"type": "Image",
@@ -111949,9 +65399,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00393",
"type": "ImageService3",
@@ -111961,11 +65409,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00393",
"@type": "ImageService2",
@@ -111975,45 +65421,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00393/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00394/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 394"],
- "sv": [
-
- "Bild 394"
-
- ],
-
- "en": [
-
- "Image 394"
-
- ]
-
+ "en": ["Image 394"]
},
"width": 5888,
@@ -112021,199 +65448,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00394"]}
-
+ "value": { "none": ["A0067545_00394"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00394"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00394"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00394"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00394"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9931
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9931
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00394.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00394"]},
+ "label": { "en": ["ALTO XML for A0067545_00394"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00394/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00394/annotation",
"type": "Annotation",
@@ -112221,7 +65554,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00394/full/max/0/default.jpg",
"type": "Image",
@@ -112233,9 +65565,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00394",
"type": "ImageService3",
@@ -112245,11 +65575,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00394",
"@type": "ImageService2",
@@ -112259,45 +65587,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00394/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00395/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 395"],
- "sv": [
-
- "Bild 395"
-
- ],
-
- "en": [
-
- "Image 395"
-
- ]
-
+ "en": ["Image 395"]
},
"width": 5896,
@@ -112305,199 +65614,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00395"]}
-
+ "value": { "none": ["A0067545_00395"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00395"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00395"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00395"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00395"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9915
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9915
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00395.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00395"]},
+ "label": { "en": ["ALTO XML for A0067545_00395"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00395/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00395/annotation",
"type": "Annotation",
@@ -112505,7 +65720,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00395/full/max/0/default.jpg",
"type": "Image",
@@ -112517,9 +65731,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00395",
"type": "ImageService3",
@@ -112529,11 +65741,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00395",
"@type": "ImageService2",
@@ -112543,45 +65753,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00395/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00396/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 396"],
- "sv": [
-
- "Bild 396"
-
- ],
-
- "en": [
-
- "Image 396"
-
- ]
-
+ "en": ["Image 396"]
},
"width": 5896,
@@ -112589,199 +65780,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00396"]}
-
+ "value": { "none": ["A0067545_00396"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00396"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00396"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00396"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00396"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00396.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00396"]},
+ "label": { "en": ["ALTO XML for A0067545_00396"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00396/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00396/annotation",
"type": "Annotation",
@@ -112789,7 +65886,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00396/full/max/0/default.jpg",
"type": "Image",
@@ -112801,9 +65897,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00396",
"type": "ImageService3",
@@ -112813,11 +65907,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00396",
"@type": "ImageService2",
@@ -112827,45 +65919,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00396/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00397/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 397"],
- "sv": [
-
- "Bild 397"
-
- ],
-
- "en": [
-
- "Image 397"
-
- ]
-
+ "en": ["Image 397"]
},
"width": 6016,
@@ -112873,199 +65946,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00397"]}
-
+ "value": { "none": ["A0067545_00397"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00397"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00397"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00397"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00397"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00397.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00397"]},
+ "label": { "en": ["ALTO XML for A0067545_00397"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00397/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00397/annotation",
"type": "Annotation",
@@ -113073,7 +66052,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00397/full/max/0/default.jpg",
"type": "Image",
@@ -113085,9 +66063,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00397",
"type": "ImageService3",
@@ -113097,11 +66073,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00397",
"@type": "ImageService2",
@@ -113111,45 +66085,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00397/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00398/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 398"],
- "sv": [
-
- "Bild 398"
-
- ],
-
- "en": [
-
- "Image 398"
-
- ]
-
+ "en": ["Image 398"]
},
"width": 6016,
@@ -113157,199 +66112,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00398"]}
-
+ "value": { "none": ["A0067545_00398"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00398"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00398"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00398"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00398"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00398.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00398"]},
+ "label": { "en": ["ALTO XML for A0067545_00398"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00398/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00398/annotation",
"type": "Annotation",
@@ -113357,7 +66218,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00398/full/max/0/default.jpg",
"type": "Image",
@@ -113369,9 +66229,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00398",
"type": "ImageService3",
@@ -113381,11 +66239,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00398",
"@type": "ImageService2",
@@ -113395,45 +66251,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00398/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00399/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 399"],
- "sv": [
-
- "Bild 399"
-
- ],
-
- "en": [
-
- "Image 399"
-
- ]
-
+ "en": ["Image 399"]
},
"width": 5984,
@@ -113441,199 +66278,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00399"]}
-
+ "value": { "none": ["A0067545_00399"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00399"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00399"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00399"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00399"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00399.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00399"]},
+ "label": { "en": ["ALTO XML for A0067545_00399"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00399/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00399/annotation",
"type": "Annotation",
@@ -113641,7 +66384,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00399/full/max/0/default.jpg",
"type": "Image",
@@ -113653,9 +66395,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00399",
"type": "ImageService3",
@@ -113665,11 +66405,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00399",
"@type": "ImageService2",
@@ -113679,45 +66417,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00399/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00400/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 400"],
- "sv": [
-
- "Bild 400"
-
- ],
-
- "en": [
-
- "Image 400"
-
- ]
-
+ "en": ["Image 400"]
},
"width": 5960,
@@ -113725,199 +66444,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00400"]}
-
+ "value": { "none": ["A0067545_00400"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00400"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00400"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00400"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00400"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00400.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00400"]},
+ "label": { "en": ["ALTO XML for A0067545_00400"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00400/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00400/annotation",
"type": "Annotation",
@@ -113925,7 +66550,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00400/full/max/0/default.jpg",
"type": "Image",
@@ -113937,9 +66561,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00400",
"type": "ImageService3",
@@ -113949,11 +66571,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00400",
"@type": "ImageService2",
@@ -113963,45 +66583,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00400/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00401/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 401"],
- "sv": [
-
- "Bild 401"
-
- ],
-
- "en": [
-
- "Image 401"
-
- ]
-
+ "en": ["Image 401"]
},
"width": 5984,
@@ -114009,199 +66610,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00401"]}
-
+ "value": { "none": ["A0067545_00401"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00401"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00401"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00401"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00401"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00401.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00401"]},
+ "label": { "en": ["ALTO XML for A0067545_00401"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00401/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00401/annotation",
"type": "Annotation",
@@ -114209,7 +66716,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00401/full/max/0/default.jpg",
"type": "Image",
@@ -114221,9 +66727,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00401",
"type": "ImageService3",
@@ -114233,11 +66737,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00401",
"@type": "ImageService2",
@@ -114247,45 +66749,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00401/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00402/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 402"],
- "sv": [
-
- "Bild 402"
-
- ],
-
- "en": [
-
- "Image 402"
-
- ]
-
+ "en": ["Image 402"]
},
"width": 6016,
@@ -114293,199 +66776,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00402"]}
-
+ "value": { "none": ["A0067545_00402"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00402"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00402"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00402"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00402"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00402.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00402"]},
+ "label": { "en": ["ALTO XML for A0067545_00402"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00402/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00402/annotation",
"type": "Annotation",
@@ -114493,7 +66882,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00402/full/max/0/default.jpg",
"type": "Image",
@@ -114505,9 +66893,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00402",
"type": "ImageService3",
@@ -114517,11 +66903,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00402",
"@type": "ImageService2",
@@ -114531,45 +66915,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00402/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00403/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 403"],
- "sv": [
-
- "Bild 403"
-
- ],
-
- "en": [
-
- "Image 403"
-
- ]
-
+ "en": ["Image 403"]
},
"width": 6016,
@@ -114577,199 +66942,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00403"]}
-
+ "value": { "none": ["A0067545_00403"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00403"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00403"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00403"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00403"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00403.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00403"]},
+ "label": { "en": ["ALTO XML for A0067545_00403"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00403/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00403/annotation",
"type": "Annotation",
@@ -114777,7 +67048,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00403/full/max/0/default.jpg",
"type": "Image",
@@ -114789,9 +67059,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00403",
"type": "ImageService3",
@@ -114801,11 +67069,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00403",
"@type": "ImageService2",
@@ -114815,45 +67081,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00403/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00404/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 404"],
- "sv": [
-
- "Bild 404"
-
- ],
-
- "en": [
-
- "Image 404"
-
- ]
-
+ "en": ["Image 404"]
},
"width": 6016,
@@ -114861,199 +67108,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00404"]}
-
+ "value": { "none": ["A0067545_00404"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00404"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00404"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00404"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00404"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00404.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00404"]},
+ "label": { "en": ["ALTO XML for A0067545_00404"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00404/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00404/annotation",
"type": "Annotation",
@@ -115061,7 +67214,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00404/full/max/0/default.jpg",
"type": "Image",
@@ -115073,9 +67225,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00404",
"type": "ImageService3",
@@ -115085,11 +67235,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00404",
"@type": "ImageService2",
@@ -115099,45 +67247,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00404/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00405/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 405"],
- "sv": [
-
- "Bild 405"
-
- ],
-
- "en": [
-
- "Image 405"
-
- ]
-
+ "en": ["Image 405"]
},
"width": 6016,
@@ -115145,199 +67274,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00405"]}
-
+ "value": { "none": ["A0067545_00405"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00405"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00405"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00405"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00405"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00405.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00405"]},
+ "label": { "en": ["ALTO XML for A0067545_00405"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00405/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00405/annotation",
"type": "Annotation",
@@ -115345,7 +67380,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00405/full/max/0/default.jpg",
"type": "Image",
@@ -115357,9 +67391,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00405",
"type": "ImageService3",
@@ -115369,11 +67401,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00405",
"@type": "ImageService2",
@@ -115383,45 +67413,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00405/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00406/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 406"],
- "sv": [
-
- "Bild 406"
-
- ],
-
- "en": [
-
- "Image 406"
-
- ]
-
+ "en": ["Image 406"]
},
"width": 5928,
@@ -115429,199 +67440,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00406"]}
-
+ "value": { "none": ["A0067545_00406"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00406"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00406"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00406"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00406"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00406.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00406"]},
+ "label": { "en": ["ALTO XML for A0067545_00406"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00406/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00406/annotation",
"type": "Annotation",
@@ -115629,7 +67546,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00406/full/max/0/default.jpg",
"type": "Image",
@@ -115641,9 +67557,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00406",
"type": "ImageService3",
@@ -115653,11 +67567,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00406",
"@type": "ImageService2",
@@ -115667,45 +67579,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00406/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00407/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 407"],
- "sv": [
-
- "Bild 407"
-
- ],
-
- "en": [
-
- "Image 407"
-
- ]
-
+ "en": ["Image 407"]
},
"width": 6016,
@@ -115713,199 +67606,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00407"]}
-
+ "value": { "none": ["A0067545_00407"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00407"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00407"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00407"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00407"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00407.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00407"]},
+ "label": { "en": ["ALTO XML for A0067545_00407"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00407/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00407/annotation",
"type": "Annotation",
@@ -115913,7 +67712,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00407/full/max/0/default.jpg",
"type": "Image",
@@ -115925,9 +67723,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00407",
"type": "ImageService3",
@@ -115937,11 +67733,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00407",
"@type": "ImageService2",
@@ -115951,45 +67745,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00407/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00408/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 408"],
- "sv": [
-
- "Bild 408"
-
- ],
-
- "en": [
-
- "Image 408"
-
- ]
-
+ "en": ["Image 408"]
},
"width": 5864,
@@ -115997,199 +67772,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00408"]}
-
+ "value": { "none": ["A0067545_00408"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00408"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00408"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00408"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00408"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9927
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9927
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00408.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00408"]},
+ "label": { "en": ["ALTO XML for A0067545_00408"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00408/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00408/annotation",
"type": "Annotation",
@@ -116197,7 +67878,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00408/full/max/0/default.jpg",
"type": "Image",
@@ -116209,9 +67889,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00408",
"type": "ImageService3",
@@ -116221,11 +67899,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00408",
"@type": "ImageService2",
@@ -116235,45 +67911,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00408/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00409/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 409"],
- "sv": [
-
- "Bild 409"
-
- ],
-
- "en": [
-
- "Image 409"
-
- ]
-
+ "en": ["Image 409"]
},
"width": 5960,
@@ -116281,199 +67938,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00409"]}
-
+ "value": { "none": ["A0067545_00409"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00409"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00409"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00409"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00409"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9931
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9931
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00409.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00409"]},
+ "label": { "en": ["ALTO XML for A0067545_00409"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00409/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00409/annotation",
"type": "Annotation",
@@ -116481,7 +68044,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00409/full/max/0/default.jpg",
"type": "Image",
@@ -116493,9 +68055,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00409",
"type": "ImageService3",
@@ -116505,11 +68065,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00409",
"@type": "ImageService2",
@@ -116519,45 +68077,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00409/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00410/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 410"],
- "sv": [
-
- "Bild 410"
-
- ],
-
- "en": [
-
- "Image 410"
-
- ]
-
+ "en": ["Image 410"]
},
"width": 5896,
@@ -116565,199 +68104,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00410"]}
-
+ "value": { "none": ["A0067545_00410"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00410"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00410"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00410"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00410"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00410.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00410"]},
+ "label": { "en": ["ALTO XML for A0067545_00410"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00410/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00410/annotation",
"type": "Annotation",
@@ -116765,7 +68210,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00410/full/max/0/default.jpg",
"type": "Image",
@@ -116777,9 +68221,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00410",
"type": "ImageService3",
@@ -116789,11 +68231,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00410",
"@type": "ImageService2",
@@ -116803,45 +68243,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00410/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00411/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 411"],
- "sv": [
-
- "Bild 411"
-
- ],
-
- "en": [
-
- "Image 411"
-
- ]
-
+ "en": ["Image 411"]
},
"width": 5960,
@@ -116849,199 +68270,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00411"]}
-
+ "value": { "none": ["A0067545_00411"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00411"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00411"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00411"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00411"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00411.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00411"]},
+ "label": { "en": ["ALTO XML for A0067545_00411"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00411/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00411/annotation",
"type": "Annotation",
@@ -117049,7 +68376,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00411/full/max/0/default.jpg",
"type": "Image",
@@ -117061,9 +68387,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00411",
"type": "ImageService3",
@@ -117073,11 +68397,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00411",
"@type": "ImageService2",
@@ -117087,45 +68409,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00411/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00412/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 412"],
- "sv": [
-
- "Bild 412"
-
- ],
-
- "en": [
-
- "Image 412"
-
- ]
-
+ "en": ["Image 412"]
},
"width": 5928,
@@ -117133,199 +68436,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00412"]}
-
+ "value": { "none": ["A0067545_00412"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00412"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00412"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00412"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00412"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00412.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00412"]},
+ "label": { "en": ["ALTO XML for A0067545_00412"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00412/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00412/annotation",
"type": "Annotation",
@@ -117333,7 +68542,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00412/full/max/0/default.jpg",
"type": "Image",
@@ -117345,9 +68553,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00412",
"type": "ImageService3",
@@ -117357,11 +68563,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00412",
"@type": "ImageService2",
@@ -117371,45 +68575,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00412/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00413/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 413"],
- "sv": [
-
- "Bild 413"
-
- ],
-
- "en": [
-
- "Image 413"
-
- ]
-
+ "en": ["Image 413"]
},
"width": 5896,
@@ -117417,199 +68602,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00413"]}
-
+ "value": { "none": ["A0067545_00413"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00413"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00413"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00413"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00413"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00413.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00413"]},
+ "label": { "en": ["ALTO XML for A0067545_00413"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00413/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00413/annotation",
"type": "Annotation",
@@ -117617,7 +68708,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00413/full/max/0/default.jpg",
"type": "Image",
@@ -117629,9 +68719,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00413",
"type": "ImageService3",
@@ -117641,11 +68729,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00413",
"@type": "ImageService2",
@@ -117655,45 +68741,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00413/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00414/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 414"],
- "sv": [
-
- "Bild 414"
-
- ],
-
- "en": [
-
- "Image 414"
-
- ]
-
+ "en": ["Image 414"]
},
"width": 6016,
@@ -117701,199 +68768,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00414"]}
-
+ "value": { "none": ["A0067545_00414"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00414"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00414"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00414"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00414"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00414.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00414"]},
+ "label": { "en": ["ALTO XML for A0067545_00414"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00414/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00414/annotation",
"type": "Annotation",
@@ -117901,7 +68874,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00414/full/max/0/default.jpg",
"type": "Image",
@@ -117913,9 +68885,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00414",
"type": "ImageService3",
@@ -117925,11 +68895,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00414",
"@type": "ImageService2",
@@ -117939,45 +68907,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00414/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00415/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 415"],
- "sv": [
-
- "Bild 415"
-
- ],
-
- "en": [
-
- "Image 415"
-
- ]
-
+ "en": ["Image 415"]
},
"width": 5984,
@@ -117985,199 +68934,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00415"]}
-
+ "value": { "none": ["A0067545_00415"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00415"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00415"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00415"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00415"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9920
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9920
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00415.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00415"]},
+ "label": { "en": ["ALTO XML for A0067545_00415"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00415/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00415/annotation",
"type": "Annotation",
@@ -118185,7 +69040,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00415/full/max/0/default.jpg",
"type": "Image",
@@ -118197,9 +69051,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00415",
"type": "ImageService3",
@@ -118209,11 +69061,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00415",
"@type": "ImageService2",
@@ -118223,45 +69073,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00415/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00416/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 416"],
- "sv": [
-
- "Bild 416"
-
- ],
-
- "en": [
-
- "Image 416"
-
- ]
-
+ "en": ["Image 416"]
},
"width": 5864,
@@ -118269,199 +69100,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00416"]}
-
+ "value": { "none": ["A0067545_00416"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00416"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00416"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00416"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00416"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00416.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00416"]},
+ "label": { "en": ["ALTO XML for A0067545_00416"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00416/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00416/annotation",
"type": "Annotation",
@@ -118469,7 +69206,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00416/full/max/0/default.jpg",
"type": "Image",
@@ -118481,9 +69217,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00416",
"type": "ImageService3",
@@ -118493,11 +69227,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00416",
"@type": "ImageService2",
@@ -118507,45 +69239,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00416/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00417/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 417"],
- "sv": [
-
- "Bild 417"
-
- ],
-
- "en": [
-
- "Image 417"
-
- ]
-
+ "en": ["Image 417"]
},
"width": 6016,
@@ -118553,199 +69266,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00417"]}
-
+ "value": { "none": ["A0067545_00417"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00417"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00417"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00417"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00417"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9918
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9918
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00417.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00417"]},
+ "label": { "en": ["ALTO XML for A0067545_00417"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00417/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00417/annotation",
"type": "Annotation",
@@ -118753,7 +69372,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00417/full/max/0/default.jpg",
"type": "Image",
@@ -118765,9 +69383,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00417",
"type": "ImageService3",
@@ -118777,11 +69393,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00417",
"@type": "ImageService2",
@@ -118791,45 +69405,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00417/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00418/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 418"],
- "sv": [
-
- "Bild 418"
-
- ],
-
- "en": [
-
- "Image 418"
-
- ]
-
+ "en": ["Image 418"]
},
"width": 5928,
@@ -118837,199 +69432,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00418"]}
-
+ "value": { "none": ["A0067545_00418"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00418"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00418"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00418"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00418"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9914
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9914
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00418.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00418"]},
+ "label": { "en": ["ALTO XML for A0067545_00418"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00418/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00418/annotation",
"type": "Annotation",
@@ -119037,7 +69538,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00418/full/max/0/default.jpg",
"type": "Image",
@@ -119049,9 +69549,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00418",
"type": "ImageService3",
@@ -119061,11 +69559,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00418",
"@type": "ImageService2",
@@ -119075,45 +69571,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00418/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00419/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 419"],
- "sv": [
-
- "Bild 419"
-
- ],
-
- "en": [
-
- "Image 419"
-
- ]
-
+ "en": ["Image 419"]
},
"width": 5928,
@@ -119121,199 +69598,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00419"]}
-
+ "value": { "none": ["A0067545_00419"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00419"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00419"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00419"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00419"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9919
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9919
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00419.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00419"]},
+ "label": { "en": ["ALTO XML for A0067545_00419"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00419/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00419/annotation",
"type": "Annotation",
@@ -119321,7 +69704,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00419/full/max/0/default.jpg",
"type": "Image",
@@ -119333,9 +69715,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00419",
"type": "ImageService3",
@@ -119345,11 +69725,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00419",
"@type": "ImageService2",
@@ -119359,45 +69737,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00419/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00420/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 420"],
- "sv": [
-
- "Bild 420"
-
- ],
-
- "en": [
-
- "Image 420"
-
- ]
-
+ "en": ["Image 420"]
},
"width": 6016,
@@ -119405,199 +69764,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00420"]}
-
+ "value": { "none": ["A0067545_00420"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00420"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00420"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00420"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00420"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9899
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9899
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00420.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00420"]},
+ "label": { "en": ["ALTO XML for A0067545_00420"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00420/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00420/annotation",
"type": "Annotation",
@@ -119605,7 +69870,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00420/full/max/0/default.jpg",
"type": "Image",
@@ -119617,9 +69881,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00420",
"type": "ImageService3",
@@ -119629,11 +69891,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00420",
"@type": "ImageService2",
@@ -119643,45 +69903,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00420/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00421/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 421"],
- "sv": [
-
- "Bild 421"
-
- ],
-
- "en": [
-
- "Image 421"
-
- ]
-
+ "en": ["Image 421"]
},
"width": 6016,
@@ -119689,199 +69930,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00421"]}
-
+ "value": { "none": ["A0067545_00421"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00421"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00421"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00421"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00421"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00421.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00421"]},
+ "label": { "en": ["ALTO XML for A0067545_00421"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00421/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00421/annotation",
"type": "Annotation",
@@ -119889,7 +70036,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00421/full/max/0/default.jpg",
"type": "Image",
@@ -119901,9 +70047,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00421",
"type": "ImageService3",
@@ -119913,11 +70057,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00421",
"@type": "ImageService2",
@@ -119927,45 +70069,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00421/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00422/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 422"],
- "sv": [
-
- "Bild 422"
-
- ],
-
- "en": [
-
- "Image 422"
-
- ]
-
+ "en": ["Image 422"]
},
"width": 5896,
@@ -119973,199 +70096,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00422"]}
-
+ "value": { "none": ["A0067545_00422"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00422"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00422"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00422"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00422"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9903
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9903
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00422.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00422"]},
+ "label": { "en": ["ALTO XML for A0067545_00422"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00422/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00422/annotation",
"type": "Annotation",
@@ -120173,7 +70202,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00422/full/max/0/default.jpg",
"type": "Image",
@@ -120185,9 +70213,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00422",
"type": "ImageService3",
@@ -120197,11 +70223,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00422",
"@type": "ImageService2",
@@ -120211,45 +70235,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00422/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00423/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 423"],
- "sv": [
-
- "Bild 423"
-
- ],
-
- "en": [
-
- "Image 423"
-
- ]
-
+ "en": ["Image 423"]
},
"width": 6016,
@@ -120257,199 +70262,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00423"]}
-
+ "value": { "none": ["A0067545_00423"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00423"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00423"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00423"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00423"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00423.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00423"]},
+ "label": { "en": ["ALTO XML for A0067545_00423"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00423/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00423/annotation",
"type": "Annotation",
@@ -120457,7 +70368,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00423/full/max/0/default.jpg",
"type": "Image",
@@ -120469,9 +70379,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00423",
"type": "ImageService3",
@@ -120481,11 +70389,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00423",
"@type": "ImageService2",
@@ -120495,45 +70401,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00423/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00424/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 424"],
- "sv": [
-
- "Bild 424"
-
- ],
-
- "en": [
-
- "Image 424"
-
- ]
-
+ "en": ["Image 424"]
},
"width": 6016,
@@ -120541,199 +70428,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00424"]}
-
+ "value": { "none": ["A0067545_00424"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00424"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00424"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00424"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00424"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9921
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9921
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00424.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00424"]},
+ "label": { "en": ["ALTO XML for A0067545_00424"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00424/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00424/annotation",
"type": "Annotation",
@@ -120741,7 +70534,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00424/full/max/0/default.jpg",
"type": "Image",
@@ -120753,9 +70545,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00424",
"type": "ImageService3",
@@ -120765,11 +70555,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00424",
"@type": "ImageService2",
@@ -120779,45 +70567,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00424/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00425/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 425"],
- "sv": [
-
- "Bild 425"
-
- ],
-
- "en": [
-
- "Image 425"
-
- ]
-
+ "en": ["Image 425"]
},
"width": 5960,
@@ -120825,199 +70594,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00425"]}
-
+ "value": { "none": ["A0067545_00425"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00425"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00425"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00425"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00425"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9906
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9906
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00425.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00425"]},
+ "label": { "en": ["ALTO XML for A0067545_00425"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00425/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00425/annotation",
"type": "Annotation",
@@ -121025,7 +70700,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00425/full/max/0/default.jpg",
"type": "Image",
@@ -121037,9 +70711,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00425",
"type": "ImageService3",
@@ -121049,11 +70721,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00425",
"@type": "ImageService2",
@@ -121063,45 +70733,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00425/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00426/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 426"],
- "sv": [
-
- "Bild 426"
-
- ],
-
- "en": [
-
- "Image 426"
-
- ]
-
+ "en": ["Image 426"]
},
"width": 6016,
@@ -121109,199 +70760,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00426"]}
-
+ "value": { "none": ["A0067545_00426"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00426"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00426"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00426"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00426"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9925
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9925
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00426.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00426"]},
+ "label": { "en": ["ALTO XML for A0067545_00426"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00426/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00426/annotation",
"type": "Annotation",
@@ -121309,7 +70866,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00426/full/max/0/default.jpg",
"type": "Image",
@@ -121321,9 +70877,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00426",
"type": "ImageService3",
@@ -121333,11 +70887,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00426",
"@type": "ImageService2",
@@ -121347,45 +70899,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00426/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00427/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 427"],
- "sv": [
-
- "Bild 427"
-
- ],
-
- "en": [
-
- "Image 427"
-
- ]
-
+ "en": ["Image 427"]
},
"width": 5928,
@@ -121393,199 +70926,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00427"]}
-
+ "value": { "none": ["A0067545_00427"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00427"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00427"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00427"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00427"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00427.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00427"]},
+ "label": { "en": ["ALTO XML for A0067545_00427"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00427/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00427/annotation",
"type": "Annotation",
@@ -121593,7 +71032,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00427/full/max/0/default.jpg",
"type": "Image",
@@ -121605,9 +71043,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00427",
"type": "ImageService3",
@@ -121617,11 +71053,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00427",
"@type": "ImageService2",
@@ -121631,45 +71065,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00427/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00428/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 428"],
- "sv": [
-
- "Bild 428"
-
- ],
-
- "en": [
-
- "Image 428"
-
- ]
-
+ "en": ["Image 428"]
},
"width": 6016,
@@ -121677,199 +71092,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00428"]}
-
+ "value": { "none": ["A0067545_00428"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00428"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00428"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00428"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00428"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00428.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00428"]},
+ "label": { "en": ["ALTO XML for A0067545_00428"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00428/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00428/annotation",
"type": "Annotation",
@@ -121877,7 +71198,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00428/full/max/0/default.jpg",
"type": "Image",
@@ -121889,9 +71209,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00428",
"type": "ImageService3",
@@ -121901,11 +71219,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00428",
"@type": "ImageService2",
@@ -121915,45 +71231,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00428/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00429/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 429"],
- "sv": [
-
- "Bild 429"
-
- ],
-
- "en": [
-
- "Image 429"
-
- ]
-
+ "en": ["Image 429"]
},
"width": 6016,
@@ -121961,199 +71258,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00429"]}
-
+ "value": { "none": ["A0067545_00429"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00429"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00429"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00429"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00429"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00429.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00429"]},
+ "label": { "en": ["ALTO XML for A0067545_00429"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00429/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00429/annotation",
"type": "Annotation",
@@ -122161,7 +71364,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00429/full/max/0/default.jpg",
"type": "Image",
@@ -122173,9 +71375,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00429",
"type": "ImageService3",
@@ -122185,11 +71385,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00429",
"@type": "ImageService2",
@@ -122199,45 +71397,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00429/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00430/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 430"],
- "sv": [
-
- "Bild 430"
-
- ],
-
- "en": [
-
- "Image 430"
-
- ]
-
+ "en": ["Image 430"]
},
"width": 5864,
@@ -122245,199 +71424,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00430"]}
-
+ "value": { "none": ["A0067545_00430"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00430"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00430"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00430"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00430"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9916
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9916
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00430.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00430"]},
+ "label": { "en": ["ALTO XML for A0067545_00430"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00430/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00430/annotation",
"type": "Annotation",
@@ -122445,7 +71530,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00430/full/max/0/default.jpg",
"type": "Image",
@@ -122457,9 +71541,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00430",
"type": "ImageService3",
@@ -122469,11 +71551,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00430",
"@type": "ImageService2",
@@ -122483,45 +71563,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00430/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00431/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 431"],
- "sv": [
-
- "Bild 431"
-
- ],
-
- "en": [
-
- "Image 431"
-
- ]
-
+ "en": ["Image 431"]
},
"width": 6016,
@@ -122529,199 +71590,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00431"]}
-
+ "value": { "none": ["A0067545_00431"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00431"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00431"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00431"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00431"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9924
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9924
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00431.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00431"]},
+ "label": { "en": ["ALTO XML for A0067545_00431"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00431/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00431/annotation",
"type": "Annotation",
@@ -122729,7 +71696,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00431/full/max/0/default.jpg",
"type": "Image",
@@ -122741,9 +71707,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00431",
"type": "ImageService3",
@@ -122753,11 +71717,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00431",
"@type": "ImageService2",
@@ -122767,45 +71729,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00431/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00432/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 432"],
- "sv": [
-
- "Bild 432"
-
- ],
-
- "en": [
-
- "Image 432"
-
- ]
-
+ "en": ["Image 432"]
},
"width": 5928,
@@ -122813,199 +71756,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00432"]}
-
+ "value": { "none": ["A0067545_00432"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00432"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00432"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00432"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00432"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00432.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00432"]},
+ "label": { "en": ["ALTO XML for A0067545_00432"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00432/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00432/annotation",
"type": "Annotation",
@@ -123013,7 +71862,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00432/full/max/0/default.jpg",
"type": "Image",
@@ -123025,9 +71873,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00432",
"type": "ImageService3",
@@ -123037,11 +71883,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00432",
"@type": "ImageService2",
@@ -123051,45 +71895,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00432/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00433/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 433"],
- "sv": [
-
- "Bild 433"
-
- ],
-
- "en": [
-
- "Image 433"
-
- ]
-
+ "en": ["Image 433"]
},
"width": 6024,
@@ -123097,199 +71922,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00433"]}
-
+ "value": { "none": ["A0067545_00433"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00433"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00433"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00433"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00433"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9900
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9900
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00433.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00433"]},
+ "label": { "en": ["ALTO XML for A0067545_00433"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00433/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00433/annotation",
"type": "Annotation",
@@ -123297,7 +72028,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00433/full/max/0/default.jpg",
"type": "Image",
@@ -123309,9 +72039,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00433",
"type": "ImageService3",
@@ -123321,11 +72049,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00433",
"@type": "ImageService2",
@@ -123335,45 +72061,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00433/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00434/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 434"],
- "sv": [
-
- "Bild 434"
-
- ],
-
- "en": [
-
- "Image 434"
-
- ]
-
+ "en": ["Image 434"]
},
"width": 5992,
@@ -123381,199 +72088,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00434"]}
-
+ "value": { "none": ["A0067545_00434"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00434"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00434"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00434"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00434"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00434.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00434"]},
+ "label": { "en": ["ALTO XML for A0067545_00434"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00434/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00434/annotation",
"type": "Annotation",
@@ -123581,7 +72194,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00434/full/max/0/default.jpg",
"type": "Image",
@@ -123593,9 +72205,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00434",
"type": "ImageService3",
@@ -123605,11 +72215,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00434",
"@type": "ImageService2",
@@ -123619,45 +72227,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00434/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00435/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 435"],
- "sv": [
-
- "Bild 435"
-
- ],
-
- "en": [
-
- "Image 435"
-
- ]
-
+ "en": ["Image 435"]
},
"width": 5864,
@@ -123665,199 +72254,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00435"]}
-
+ "value": { "none": ["A0067545_00435"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00435"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00435"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00435"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00435"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9917
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9917
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00435.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00435"]},
+ "label": { "en": ["ALTO XML for A0067545_00435"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00435/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00435/annotation",
"type": "Annotation",
@@ -123865,7 +72360,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00435/full/max/0/default.jpg",
"type": "Image",
@@ -123877,9 +72371,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00435",
"type": "ImageService3",
@@ -123889,11 +72381,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00435",
"@type": "ImageService2",
@@ -123903,45 +72393,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00435/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00436/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 436"],
- "sv": [
-
- "Bild 436"
-
- ],
-
- "en": [
-
- "Image 436"
-
- ]
-
+ "en": ["Image 436"]
},
"width": 6016,
@@ -123949,199 +72420,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00436"]}
-
+ "value": { "none": ["A0067545_00436"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00436"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00436"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00436"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00436"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00436.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00436"]},
+ "label": { "en": ["ALTO XML for A0067545_00436"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00436/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00436/annotation",
"type": "Annotation",
@@ -124149,7 +72526,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00436/full/max/0/default.jpg",
"type": "Image",
@@ -124161,9 +72537,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00436",
"type": "ImageService3",
@@ -124173,11 +72547,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00436",
"@type": "ImageService2",
@@ -124187,45 +72559,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00436/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00437/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 437"],
- "sv": [
-
- "Bild 437"
-
- ],
-
- "en": [
-
- "Image 437"
-
- ]
-
+ "en": ["Image 437"]
},
"width": 6016,
@@ -124233,199 +72586,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00437"]}
-
+ "value": { "none": ["A0067545_00437"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00437"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00437"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00437"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00437"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00437.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00437"]},
+ "label": { "en": ["ALTO XML for A0067545_00437"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00437/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00437/annotation",
"type": "Annotation",
@@ -124433,7 +72692,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00437/full/max/0/default.jpg",
"type": "Image",
@@ -124445,9 +72703,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00437",
"type": "ImageService3",
@@ -124457,11 +72713,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00437",
"@type": "ImageService2",
@@ -124471,45 +72725,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00437/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00438/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 438"],
- "sv": [
-
- "Bild 438"
-
- ],
-
- "en": [
-
- "Image 438"
-
- ]
-
+ "en": ["Image 438"]
},
"width": 6016,
@@ -124517,199 +72752,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00438"]}
-
+ "value": { "none": ["A0067545_00438"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00438"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00438"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00438"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00438"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00438.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00438"]},
+ "label": { "en": ["ALTO XML for A0067545_00438"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00438/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00438/annotation",
"type": "Annotation",
@@ -124717,7 +72858,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00438/full/max/0/default.jpg",
"type": "Image",
@@ -124729,9 +72869,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00438",
"type": "ImageService3",
@@ -124741,11 +72879,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00438",
"@type": "ImageService2",
@@ -124755,45 +72891,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00438/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00439/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 439"],
- "sv": [
-
- "Bild 439"
-
- ],
-
- "en": [
-
- "Image 439"
-
- ]
-
+ "en": ["Image 439"]
},
"width": 6016,
@@ -124801,199 +72918,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00439"]}
-
+ "value": { "none": ["A0067545_00439"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00439"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00439"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00439"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00439"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00439.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00439"]},
+ "label": { "en": ["ALTO XML for A0067545_00439"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00439/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00439/annotation",
"type": "Annotation",
@@ -125001,7 +73024,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00439/full/max/0/default.jpg",
"type": "Image",
@@ -125013,9 +73035,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00439",
"type": "ImageService3",
@@ -125025,11 +73045,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00439",
"@type": "ImageService2",
@@ -125039,45 +73057,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00439/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00440/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 440"],
- "sv": [
-
- "Bild 440"
-
- ],
-
- "en": [
-
- "Image 440"
-
- ]
-
+ "en": ["Image 440"]
},
"width": 6016,
@@ -125085,199 +73084,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00440"]}
-
+ "value": { "none": ["A0067545_00440"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00440"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00440"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00440"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00440"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00440.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00440"]},
+ "label": { "en": ["ALTO XML for A0067545_00440"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00440/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00440/annotation",
"type": "Annotation",
@@ -125285,7 +73190,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00440/full/max/0/default.jpg",
"type": "Image",
@@ -125297,9 +73201,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00440",
"type": "ImageService3",
@@ -125309,11 +73211,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00440",
"@type": "ImageService2",
@@ -125323,45 +73223,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00440/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00441/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 441"],
- "sv": [
-
- "Bild 441"
-
- ],
-
- "en": [
-
- "Image 441"
-
- ]
-
+ "en": ["Image 441"]
},
"width": 5864,
@@ -125369,199 +73250,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00441"]}
-
+ "value": { "none": ["A0067545_00441"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00441"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00441"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00441"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00441"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00441.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00441"]},
+ "label": { "en": ["ALTO XML for A0067545_00441"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00441/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00441/annotation",
"type": "Annotation",
@@ -125569,7 +73356,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00441/full/max/0/default.jpg",
"type": "Image",
@@ -125581,9 +73367,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00441",
"type": "ImageService3",
@@ -125593,11 +73377,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00441",
"@type": "ImageService2",
@@ -125607,45 +73389,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00441/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00442/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 442"],
- "sv": [
-
- "Bild 442"
-
- ],
-
- "en": [
-
- "Image 442"
-
- ]
-
+ "en": ["Image 442"]
},
"width": 5960,
@@ -125653,199 +73416,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00442"]}
-
+ "value": { "none": ["A0067545_00442"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00442"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00442"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00442"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00442"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00442.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00442"]},
+ "label": { "en": ["ALTO XML for A0067545_00442"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00442/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00442/annotation",
"type": "Annotation",
@@ -125853,7 +73522,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00442/full/max/0/default.jpg",
"type": "Image",
@@ -125865,9 +73533,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00442",
"type": "ImageService3",
@@ -125877,11 +73543,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00442",
"@type": "ImageService2",
@@ -125891,45 +73555,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00442/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00443/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 443"],
- "sv": [
-
- "Bild 443"
-
- ],
-
- "en": [
-
- "Image 443"
-
- ]
-
+ "en": ["Image 443"]
},
"width": 6016,
@@ -125937,199 +73582,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00443"]}
-
+ "value": { "none": ["A0067545_00443"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00443"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00443"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00443"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00443"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00443.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00443"]},
+ "label": { "en": ["ALTO XML for A0067545_00443"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00443/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00443/annotation",
"type": "Annotation",
@@ -126137,7 +73688,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00443/full/max/0/default.jpg",
"type": "Image",
@@ -126149,9 +73699,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00443",
"type": "ImageService3",
@@ -126161,11 +73709,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00443",
"@type": "ImageService2",
@@ -126175,45 +73721,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00443/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00444/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 444"],
- "sv": [
-
- "Bild 444"
-
- ],
-
- "en": [
-
- "Image 444"
-
- ]
-
+ "en": ["Image 444"]
},
"width": 5864,
@@ -126221,199 +73748,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00444"]}
-
+ "value": { "none": ["A0067545_00444"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00444"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00444"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00444"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00444"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00444.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00444"]},
+ "label": { "en": ["ALTO XML for A0067545_00444"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00444/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00444/annotation",
"type": "Annotation",
@@ -126421,7 +73854,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00444/full/max/0/default.jpg",
"type": "Image",
@@ -126433,9 +73865,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00444",
"type": "ImageService3",
@@ -126445,11 +73875,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00444",
"@type": "ImageService2",
@@ -126459,45 +73887,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00444/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00445/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 445"],
- "sv": [
-
- "Bild 445"
-
- ],
-
- "en": [
-
- "Image 445"
-
- ]
-
+ "en": ["Image 445"]
},
"width": 5928,
@@ -126505,199 +73914,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00445"]}
-
+ "value": { "none": ["A0067545_00445"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00445"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00445"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00445"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00445"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9939
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9939
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00445.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00445"]},
+ "label": { "en": ["ALTO XML for A0067545_00445"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00445/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00445/annotation",
"type": "Annotation",
@@ -126705,7 +74020,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00445/full/max/0/default.jpg",
"type": "Image",
@@ -126717,9 +74031,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00445",
"type": "ImageService3",
@@ -126729,11 +74041,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00445",
"@type": "ImageService2",
@@ -126743,45 +74053,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00445/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00446/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 446"],
- "sv": [
-
- "Bild 446"
-
- ],
-
- "en": [
-
- "Image 446"
-
- ]
-
+ "en": ["Image 446"]
},
"width": 5896,
@@ -126789,199 +74080,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00446"]}
-
+ "value": { "none": ["A0067545_00446"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00446"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00446"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00446"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00446"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00446.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00446"]},
+ "label": { "en": ["ALTO XML for A0067545_00446"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00446/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00446/annotation",
"type": "Annotation",
@@ -126989,7 +74186,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00446/full/max/0/default.jpg",
"type": "Image",
@@ -127001,9 +74197,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00446",
"type": "ImageService3",
@@ -127013,11 +74207,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00446",
"@type": "ImageService2",
@@ -127027,45 +74219,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00446/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00447/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 447"],
- "sv": [
-
- "Bild 447"
-
- ],
-
- "en": [
-
- "Image 447"
-
- ]
-
+ "en": ["Image 447"]
},
"width": 5992,
@@ -127073,199 +74246,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00447"]}
-
+ "value": { "none": ["A0067545_00447"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00447"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00447"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00447"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00447"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00447.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00447"]},
+ "label": { "en": ["ALTO XML for A0067545_00447"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00447/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00447/annotation",
"type": "Annotation",
@@ -127273,7 +74352,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00447/full/max/0/default.jpg",
"type": "Image",
@@ -127285,9 +74363,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00447",
"type": "ImageService3",
@@ -127297,11 +74373,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00447",
"@type": "ImageService2",
@@ -127311,45 +74385,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00447/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00448/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 448"],
- "sv": [
-
- "Bild 448"
-
- ],
-
- "en": [
-
- "Image 448"
-
- ]
-
+ "en": ["Image 448"]
},
"width": 5960,
@@ -127357,199 +74412,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00448"]}
-
+ "value": { "none": ["A0067545_00448"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00448"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00448"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00448"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00448"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00448.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00448"]},
+ "label": { "en": ["ALTO XML for A0067545_00448"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00448/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00448/annotation",
"type": "Annotation",
@@ -127557,7 +74518,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00448/full/max/0/default.jpg",
"type": "Image",
@@ -127569,9 +74529,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00448",
"type": "ImageService3",
@@ -127581,11 +74539,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00448",
"@type": "ImageService2",
@@ -127595,45 +74551,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00448/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00449/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 449"],
- "sv": [
-
- "Bild 449"
-
- ],
-
- "en": [
-
- "Image 449"
-
- ]
-
+ "en": ["Image 449"]
},
"width": 5864,
@@ -127641,199 +74578,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00449"]}
-
+ "value": { "none": ["A0067545_00449"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00449"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00449"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00449"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00449"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9892
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9892
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00449.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00449"]},
+ "label": { "en": ["ALTO XML for A0067545_00449"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00449/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00449/annotation",
"type": "Annotation",
@@ -127841,7 +74684,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00449/full/max/0/default.jpg",
"type": "Image",
@@ -127853,9 +74695,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00449",
"type": "ImageService3",
@@ -127865,11 +74705,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00449",
"@type": "ImageService2",
@@ -127879,45 +74717,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00449/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00450/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 450"],
- "sv": [
-
- "Bild 450"
-
- ],
-
- "en": [
-
- "Image 450"
-
- ]
-
+ "en": ["Image 450"]
},
"width": 6016,
@@ -127925,199 +74744,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00450"]}
-
+ "value": { "none": ["A0067545_00450"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00450"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00450"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00450"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00450"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9775
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9775
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00450.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00450"]},
+ "label": { "en": ["ALTO XML for A0067545_00450"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00450/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00450/annotation",
"type": "Annotation",
@@ -128125,7 +74850,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00450/full/max/0/default.jpg",
"type": "Image",
@@ -128137,9 +74861,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00450",
"type": "ImageService3",
@@ -128149,11 +74871,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00450",
"@type": "ImageService2",
@@ -128163,45 +74883,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00450/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00451/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 451"],
- "sv": [
-
- "Bild 451"
-
- ],
-
- "en": [
-
- "Image 451"
-
- ]
-
+ "en": ["Image 451"]
},
"width": 6016,
@@ -128209,199 +74910,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00451"]}
-
+ "value": { "none": ["A0067545_00451"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00451"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00451"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00451"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00451"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9722
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9722
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00451.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00451"]},
+ "label": { "en": ["ALTO XML for A0067545_00451"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00451/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00451/annotation",
"type": "Annotation",
@@ -128409,7 +75016,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00451/full/max/0/default.jpg",
"type": "Image",
@@ -128421,9 +75027,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00451",
"type": "ImageService3",
@@ -128433,11 +75037,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00451",
"@type": "ImageService2",
@@ -128447,45 +75049,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00451/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00452/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 452"],
- "sv": [
-
- "Bild 452"
-
- ],
-
- "en": [
-
- "Image 452"
-
- ]
-
+ "en": ["Image 452"]
},
"width": 5984,
@@ -128493,199 +75076,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00452"]}
-
+ "value": { "none": ["A0067545_00452"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00452"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00452"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00452"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00452"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9776
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9776
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00452.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00452"]},
+ "label": { "en": ["ALTO XML for A0067545_00452"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00452/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00452/annotation",
"type": "Annotation",
@@ -128693,7 +75182,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00452/full/max/0/default.jpg",
"type": "Image",
@@ -128705,9 +75193,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00452",
"type": "ImageService3",
@@ -128717,11 +75203,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00452",
"@type": "ImageService2",
@@ -128731,45 +75215,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00452/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00453/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 453"],
- "sv": [
-
- "Bild 453"
-
- ],
-
- "en": [
-
- "Image 453"
-
- ]
-
+ "en": ["Image 453"]
},
"width": 5984,
@@ -128777,199 +75242,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00453"]}
-
+ "value": { "none": ["A0067545_00453"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00453"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00453"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00453"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00453"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9946
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9946
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00453.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00453"]},
+ "label": { "en": ["ALTO XML for A0067545_00453"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00453/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00453/annotation",
"type": "Annotation",
@@ -128977,7 +75348,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00453/full/max/0/default.jpg",
"type": "Image",
@@ -128989,9 +75359,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00453",
"type": "ImageService3",
@@ -129001,11 +75369,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00453",
"@type": "ImageService2",
@@ -129015,45 +75381,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00453/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00454/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 454"],
- "sv": [
-
- "Bild 454"
-
- ],
-
- "en": [
-
- "Image 454"
-
- ]
-
+ "en": ["Image 454"]
},
"width": 6016,
@@ -129061,199 +75408,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00454"]}
-
+ "value": { "none": ["A0067545_00454"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00454"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00454"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00454"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00454"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00454.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00454"]},
+ "label": { "en": ["ALTO XML for A0067545_00454"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00454/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00454/annotation",
"type": "Annotation",
@@ -129261,7 +75514,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00454/full/max/0/default.jpg",
"type": "Image",
@@ -129273,9 +75525,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00454",
"type": "ImageService3",
@@ -129285,11 +75535,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00454",
"@type": "ImageService2",
@@ -129299,45 +75547,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00454/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00455/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 455"],
- "sv": [
-
- "Bild 455"
-
- ],
-
- "en": [
-
- "Image 455"
-
- ]
-
+ "en": ["Image 455"]
},
"width": 5864,
@@ -129345,199 +75574,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00455"]}
-
+ "value": { "none": ["A0067545_00455"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00455"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00455"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00455"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00455"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9855
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9855
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00455.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00455"]},
+ "label": { "en": ["ALTO XML for A0067545_00455"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00455/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00455/annotation",
"type": "Annotation",
@@ -129545,7 +75680,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00455/full/max/0/default.jpg",
"type": "Image",
@@ -129557,9 +75691,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00455",
"type": "ImageService3",
@@ -129569,11 +75701,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00455",
"@type": "ImageService2",
@@ -129583,45 +75713,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00455/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00456/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 456"],
- "sv": [
-
- "Bild 456"
-
- ],
-
- "en": [
-
- "Image 456"
-
- ]
-
+ "en": ["Image 456"]
},
"width": 5864,
@@ -129629,199 +75740,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00456"]}
-
+ "value": { "none": ["A0067545_00456"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00456"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00456"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00456"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00456"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9911
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9911
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00456.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00456"]},
+ "label": { "en": ["ALTO XML for A0067545_00456"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00456/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00456/annotation",
"type": "Annotation",
@@ -129829,7 +75846,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00456/full/max/0/default.jpg",
"type": "Image",
@@ -129841,9 +75857,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00456",
"type": "ImageService3",
@@ -129853,11 +75867,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00456",
"@type": "ImageService2",
@@ -129867,45 +75879,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00456/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00457/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 457"],
- "sv": [
-
- "Bild 457"
-
- ],
-
- "en": [
-
- "Image 457"
-
- ]
-
+ "en": ["Image 457"]
},
"width": 6016,
@@ -129913,199 +75906,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00457"]}
-
+ "value": { "none": ["A0067545_00457"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00457"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00457"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00457"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00457"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9930
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9930
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00457.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00457"]},
+ "label": { "en": ["ALTO XML for A0067545_00457"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00457/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00457/annotation",
"type": "Annotation",
@@ -130113,7 +76012,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00457/full/max/0/default.jpg",
"type": "Image",
@@ -130125,9 +76023,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00457",
"type": "ImageService3",
@@ -130137,11 +76033,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00457",
"@type": "ImageService2",
@@ -130151,45 +76045,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00457/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00458/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 458"],
- "sv": [
-
- "Bild 458"
-
- ],
-
- "en": [
-
- "Image 458"
-
- ]
-
+ "en": ["Image 458"]
},
"width": 5984,
@@ -130197,199 +76072,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00458"]}
-
+ "value": { "none": ["A0067545_00458"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00458"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00458"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00458"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00458"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00458.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00458"]},
+ "label": { "en": ["ALTO XML for A0067545_00458"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00458/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00458/annotation",
"type": "Annotation",
@@ -130397,7 +76178,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00458/full/max/0/default.jpg",
"type": "Image",
@@ -130409,9 +76189,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00458",
"type": "ImageService3",
@@ -130421,11 +76199,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00458",
"@type": "ImageService2",
@@ -130435,45 +76211,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00458/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00459/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 459"],
- "sv": [
-
- "Bild 459"
-
- ],
-
- "en": [
-
- "Image 459"
-
- ]
-
+ "en": ["Image 459"]
},
"width": 6016,
@@ -130481,199 +76238,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00459"]}
-
+ "value": { "none": ["A0067545_00459"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00459"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00459"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00459"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00459"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00459.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00459"]},
+ "label": { "en": ["ALTO XML for A0067545_00459"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00459/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00459/annotation",
"type": "Annotation",
@@ -130681,7 +76344,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00459/full/max/0/default.jpg",
"type": "Image",
@@ -130693,9 +76355,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00459",
"type": "ImageService3",
@@ -130705,11 +76365,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00459",
"@type": "ImageService2",
@@ -130719,45 +76377,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00459/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00460/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 460"],
- "sv": [
-
- "Bild 460"
-
- ],
-
- "en": [
-
- "Image 460"
-
- ]
-
+ "en": ["Image 460"]
},
"width": 5896,
@@ -130765,199 +76404,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00460"]}
-
+ "value": { "none": ["A0067545_00460"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00460"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00460"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00460"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00460"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9956
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9956
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00460.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00460"]},
+ "label": { "en": ["ALTO XML for A0067545_00460"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00460/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00460/annotation",
"type": "Annotation",
@@ -130965,7 +76510,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00460/full/max/0/default.jpg",
"type": "Image",
@@ -130977,9 +76521,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00460",
"type": "ImageService3",
@@ -130989,11 +76531,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00460",
"@type": "ImageService2",
@@ -131003,45 +76543,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00460/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00461/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 461"],
- "sv": [
-
- "Bild 461"
-
- ],
-
- "en": [
-
- "Image 461"
-
- ]
-
+ "en": ["Image 461"]
},
"width": 5984,
@@ -131049,199 +76570,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00461"]}
-
+ "value": { "none": ["A0067545_00461"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00461"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00461"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00461"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00461"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00461.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00461"]},
+ "label": { "en": ["ALTO XML for A0067545_00461"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00461/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00461/annotation",
"type": "Annotation",
@@ -131249,7 +76676,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00461/full/max/0/default.jpg",
"type": "Image",
@@ -131261,9 +76687,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00461",
"type": "ImageService3",
@@ -131273,11 +76697,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00461",
"@type": "ImageService2",
@@ -131287,45 +76709,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00461/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00462/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 462"],
- "sv": [
-
- "Bild 462"
-
- ],
-
- "en": [
-
- "Image 462"
-
- ]
-
+ "en": ["Image 462"]
},
"width": 6016,
@@ -131333,199 +76736,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00462"]}
-
+ "value": { "none": ["A0067545_00462"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00462"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00462"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00462"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00462"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00462.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00462"]},
+ "label": { "en": ["ALTO XML for A0067545_00462"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00462/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00462/annotation",
"type": "Annotation",
@@ -131533,7 +76842,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00462/full/max/0/default.jpg",
"type": "Image",
@@ -131545,9 +76853,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00462",
"type": "ImageService3",
@@ -131557,11 +76863,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00462",
"@type": "ImageService2",
@@ -131571,45 +76875,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00462/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00463/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 463"],
- "sv": [
-
- "Bild 463"
-
- ],
-
- "en": [
-
- "Image 463"
-
- ]
-
+ "en": ["Image 463"]
},
"width": 5984,
@@ -131617,199 +76902,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00463"]}
-
+ "value": { "none": ["A0067545_00463"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00463"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00463"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00463"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00463"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00463.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00463"]},
+ "label": { "en": ["ALTO XML for A0067545_00463"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00463/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00463/annotation",
"type": "Annotation",
@@ -131817,7 +77008,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00463/full/max/0/default.jpg",
"type": "Image",
@@ -131829,9 +77019,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00463",
"type": "ImageService3",
@@ -131841,11 +77029,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00463",
"@type": "ImageService2",
@@ -131855,45 +77041,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00463/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00464/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 464"],
- "sv": [
-
- "Bild 464"
-
- ],
-
- "en": [
-
- "Image 464"
-
- ]
-
+ "en": ["Image 464"]
},
"width": 5984,
@@ -131901,199 +77068,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00464"]}
-
+ "value": { "none": ["A0067545_00464"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00464"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00464"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00464"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00464"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00464.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00464"]},
+ "label": { "en": ["ALTO XML for A0067545_00464"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00464/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00464/annotation",
"type": "Annotation",
@@ -132101,7 +77174,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00464/full/max/0/default.jpg",
"type": "Image",
@@ -132113,9 +77185,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00464",
"type": "ImageService3",
@@ -132125,11 +77195,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00464",
"@type": "ImageService2",
@@ -132139,45 +77207,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00464/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00465/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 465"],
- "sv": [
-
- "Bild 465"
-
- ],
-
- "en": [
-
- "Image 465"
-
- ]
-
+ "en": ["Image 465"]
},
"width": 5864,
@@ -132185,199 +77234,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00465"]}
-
+ "value": { "none": ["A0067545_00465"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00465"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00465"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00465"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00465"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00465.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00465"]},
+ "label": { "en": ["ALTO XML for A0067545_00465"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00465/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00465/annotation",
"type": "Annotation",
@@ -132385,7 +77340,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00465/full/max/0/default.jpg",
"type": "Image",
@@ -132397,9 +77351,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00465",
"type": "ImageService3",
@@ -132409,11 +77361,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00465",
"@type": "ImageService2",
@@ -132423,45 +77373,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00465/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00466/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 466"],
- "sv": [
-
- "Bild 466"
-
- ],
-
- "en": [
-
- "Image 466"
-
- ]
-
+ "en": ["Image 466"]
},
"width": 5928,
@@ -132469,199 +77400,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00466"]}
-
+ "value": { "none": ["A0067545_00466"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00466"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00466"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00466"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00466"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9967
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9967
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00466.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00466"]},
+ "label": { "en": ["ALTO XML for A0067545_00466"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00466/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00466/annotation",
"type": "Annotation",
@@ -132669,7 +77506,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00466/full/max/0/default.jpg",
"type": "Image",
@@ -132681,9 +77517,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00466",
"type": "ImageService3",
@@ -132693,11 +77527,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00466",
"@type": "ImageService2",
@@ -132707,45 +77539,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00466/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00467/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 467"],
- "sv": [
-
- "Bild 467"
-
- ],
-
- "en": [
-
- "Image 467"
-
- ]
-
+ "en": ["Image 467"]
},
"width": 5896,
@@ -132753,199 +77566,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00467"]}
-
+ "value": { "none": ["A0067545_00467"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00467"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00467"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00467"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00467"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00467.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00467"]},
+ "label": { "en": ["ALTO XML for A0067545_00467"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00467/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00467/annotation",
"type": "Annotation",
@@ -132953,7 +77672,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00467/full/max/0/default.jpg",
"type": "Image",
@@ -132965,9 +77683,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00467",
"type": "ImageService3",
@@ -132977,11 +77693,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00467",
"@type": "ImageService2",
@@ -132991,45 +77705,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00467/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00468/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 468"],
- "sv": [
-
- "Bild 468"
-
- ],
-
- "en": [
-
- "Image 468"
-
- ]
-
+ "en": ["Image 468"]
},
"width": 5864,
@@ -133037,199 +77732,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00468"]}
-
+ "value": { "none": ["A0067545_00468"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00468"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00468"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00468"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00468"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9962
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9962
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00468.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00468"]},
+ "label": { "en": ["ALTO XML for A0067545_00468"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00468/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00468/annotation",
"type": "Annotation",
@@ -133237,7 +77838,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00468/full/max/0/default.jpg",
"type": "Image",
@@ -133249,9 +77849,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00468",
"type": "ImageService3",
@@ -133261,11 +77859,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00468",
"@type": "ImageService2",
@@ -133275,45 +77871,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00468/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00469/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 469"],
- "sv": [
-
- "Bild 469"
-
- ],
-
- "en": [
-
- "Image 469"
-
- ]
-
+ "en": ["Image 469"]
},
"width": 6016,
@@ -133321,199 +77898,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00469"]}
-
+ "value": { "none": ["A0067545_00469"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00469"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00469"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00469"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00469"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9956
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9956
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00469.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00469"]},
+ "label": { "en": ["ALTO XML for A0067545_00469"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00469/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00469/annotation",
"type": "Annotation",
@@ -133521,7 +78004,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00469/full/max/0/default.jpg",
"type": "Image",
@@ -133533,9 +78015,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00469",
"type": "ImageService3",
@@ -133545,11 +78025,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00469",
"@type": "ImageService2",
@@ -133559,45 +78037,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00469/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00470/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 470"],
- "sv": [
-
- "Bild 470"
-
- ],
-
- "en": [
-
- "Image 470"
-
- ]
-
+ "en": ["Image 470"]
},
"width": 6016,
@@ -133605,199 +78064,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00470"]}
-
+ "value": { "none": ["A0067545_00470"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00470"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00470"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00470"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00470"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00470.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00470"]},
+ "label": { "en": ["ALTO XML for A0067545_00470"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00470/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00470/annotation",
"type": "Annotation",
@@ -133805,7 +78170,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00470/full/max/0/default.jpg",
"type": "Image",
@@ -133817,9 +78181,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00470",
"type": "ImageService3",
@@ -133829,11 +78191,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00470",
"@type": "ImageService2",
@@ -133843,45 +78203,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00470/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00471/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 471"],
- "sv": [
-
- "Bild 471"
-
- ],
-
- "en": [
-
- "Image 471"
-
- ]
-
+ "en": ["Image 471"]
},
"width": 6016,
@@ -133889,199 +78230,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00471"]}
-
+ "value": { "none": ["A0067545_00471"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00471"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00471"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00471"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00471"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00471.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00471"]},
+ "label": { "en": ["ALTO XML for A0067545_00471"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00471/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00471/annotation",
"type": "Annotation",
@@ -134089,7 +78336,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00471/full/max/0/default.jpg",
"type": "Image",
@@ -134101,9 +78347,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00471",
"type": "ImageService3",
@@ -134113,11 +78357,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00471",
"@type": "ImageService2",
@@ -134127,45 +78369,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00471/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00472/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 472"],
- "sv": [
-
- "Bild 472"
-
- ],
-
- "en": [
-
- "Image 472"
-
- ]
-
+ "en": ["Image 472"]
},
"width": 5896,
@@ -134173,199 +78396,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00472"]}
-
+ "value": { "none": ["A0067545_00472"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00472"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00472"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00472"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00472"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9973
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9973
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00472.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00472"]},
+ "label": { "en": ["ALTO XML for A0067545_00472"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00472/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00472/annotation",
"type": "Annotation",
@@ -134373,7 +78502,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00472/full/max/0/default.jpg",
"type": "Image",
@@ -134385,9 +78513,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00472",
"type": "ImageService3",
@@ -134397,11 +78523,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00472",
"@type": "ImageService2",
@@ -134411,45 +78535,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00472/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00473/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 473"],
- "sv": [
-
- "Bild 473"
-
- ],
-
- "en": [
-
- "Image 473"
-
- ]
-
+ "en": ["Image 473"]
},
"width": 5896,
@@ -134457,199 +78562,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00473"]}
-
+ "value": { "none": ["A0067545_00473"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00473"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00473"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00473"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00473"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00473.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00473"]},
+ "label": { "en": ["ALTO XML for A0067545_00473"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00473/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00473/annotation",
"type": "Annotation",
@@ -134657,7 +78668,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00473/full/max/0/default.jpg",
"type": "Image",
@@ -134669,9 +78679,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00473",
"type": "ImageService3",
@@ -134681,11 +78689,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00473",
"@type": "ImageService2",
@@ -134695,45 +78701,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00473/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00474/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 474"],
- "sv": [
-
- "Bild 474"
-
- ],
-
- "en": [
-
- "Image 474"
-
- ]
-
+ "en": ["Image 474"]
},
"width": 5896,
@@ -134741,199 +78728,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00474"]}
-
+ "value": { "none": ["A0067545_00474"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00474"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00474"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00474"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00474"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00474.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00474"]},
+ "label": { "en": ["ALTO XML for A0067545_00474"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00474/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00474/annotation",
"type": "Annotation",
@@ -134941,7 +78834,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00474/full/max/0/default.jpg",
"type": "Image",
@@ -134953,9 +78845,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00474",
"type": "ImageService3",
@@ -134965,11 +78855,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00474",
"@type": "ImageService2",
@@ -134979,45 +78867,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00474/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00475/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 475"],
- "sv": [
-
- "Bild 475"
-
- ],
-
- "en": [
-
- "Image 475"
-
- ]
-
+ "en": ["Image 475"]
},
"width": 5992,
@@ -135025,199 +78894,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00475"]}
-
+ "value": { "none": ["A0067545_00475"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00475"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00475"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00475"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00475"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00475.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00475"]},
+ "label": { "en": ["ALTO XML for A0067545_00475"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00475/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00475/annotation",
"type": "Annotation",
@@ -135225,7 +79000,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00475/full/max/0/default.jpg",
"type": "Image",
@@ -135237,9 +79011,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00475",
"type": "ImageService3",
@@ -135249,11 +79021,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00475",
"@type": "ImageService2",
@@ -135263,45 +79033,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00475/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00476/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 476"],
- "sv": [
-
- "Bild 476"
-
- ],
-
- "en": [
-
- "Image 476"
-
- ]
-
+ "en": ["Image 476"]
},
"width": 6016,
@@ -135309,199 +79060,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00476"]}
-
+ "value": { "none": ["A0067545_00476"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00476"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00476"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00476"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00476"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9972
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9972
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00476.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00476"]},
+ "label": { "en": ["ALTO XML for A0067545_00476"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00476/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00476/annotation",
"type": "Annotation",
@@ -135509,7 +79166,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00476/full/max/0/default.jpg",
"type": "Image",
@@ -135521,9 +79177,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00476",
"type": "ImageService3",
@@ -135533,11 +79187,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00476",
"@type": "ImageService2",
@@ -135547,45 +79199,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00476/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00477/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 477"],
- "sv": [
-
- "Bild 477"
-
- ],
-
- "en": [
-
- "Image 477"
-
- ]
-
+ "en": ["Image 477"]
},
"width": 5896,
@@ -135593,199 +79226,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00477"]}
-
+ "value": { "none": ["A0067545_00477"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00477"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00477"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00477"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00477"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9965
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9965
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00477.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00477"]},
+ "label": { "en": ["ALTO XML for A0067545_00477"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00477/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00477/annotation",
"type": "Annotation",
@@ -135793,7 +79332,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00477/full/max/0/default.jpg",
"type": "Image",
@@ -135805,9 +79343,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00477",
"type": "ImageService3",
@@ -135817,11 +79353,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00477",
"@type": "ImageService2",
@@ -135831,45 +79365,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00477/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00478/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 478"],
- "sv": [
-
- "Bild 478"
-
- ],
-
- "en": [
-
- "Image 478"
-
- ]
-
+ "en": ["Image 478"]
},
"width": 6016,
@@ -135877,199 +79392,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00478"]}
-
+ "value": { "none": ["A0067545_00478"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00478"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00478"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00478"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00478"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00478.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00478"]},
+ "label": { "en": ["ALTO XML for A0067545_00478"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00478/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00478/annotation",
"type": "Annotation",
@@ -136077,7 +79498,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00478/full/max/0/default.jpg",
"type": "Image",
@@ -136089,9 +79509,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00478",
"type": "ImageService3",
@@ -136101,11 +79519,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00478",
"@type": "ImageService2",
@@ -136115,45 +79531,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00478/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00479/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 479"],
- "sv": [
-
- "Bild 479"
-
- ],
-
- "en": [
-
- "Image 479"
-
- ]
-
+ "en": ["Image 479"]
},
"width": 5984,
@@ -136161,199 +79558,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00479"]}
-
+ "value": { "none": ["A0067545_00479"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00479"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00479"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00479"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00479"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00479.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00479"]},
+ "label": { "en": ["ALTO XML for A0067545_00479"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00479/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00479/annotation",
"type": "Annotation",
@@ -136361,7 +79664,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00479/full/max/0/default.jpg",
"type": "Image",
@@ -136373,9 +79675,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00479",
"type": "ImageService3",
@@ -136385,11 +79685,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00479",
"@type": "ImageService2",
@@ -136399,45 +79697,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00479/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00480/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 480"],
- "sv": [
-
- "Bild 480"
-
- ],
-
- "en": [
-
- "Image 480"
-
- ]
-
+ "en": ["Image 480"]
},
"width": 5928,
@@ -136445,199 +79724,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00480"]}
-
+ "value": { "none": ["A0067545_00480"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00480"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00480"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00480"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00480"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9950
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9950
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00480.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00480"]},
+ "label": { "en": ["ALTO XML for A0067545_00480"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00480/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00480/annotation",
"type": "Annotation",
@@ -136645,7 +79830,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00480/full/max/0/default.jpg",
"type": "Image",
@@ -136657,9 +79841,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00480",
"type": "ImageService3",
@@ -136669,11 +79851,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00480",
"@type": "ImageService2",
@@ -136683,45 +79863,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00480/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00481/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 481"],
- "sv": [
-
- "Bild 481"
-
- ],
-
- "en": [
-
- "Image 481"
-
- ]
-
+ "en": ["Image 481"]
},
"width": 6016,
@@ -136729,199 +79890,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00481"]}
-
+ "value": { "none": ["A0067545_00481"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00481"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00481"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00481"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00481"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00481.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00481"]},
+ "label": { "en": ["ALTO XML for A0067545_00481"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00481/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00481/annotation",
"type": "Annotation",
@@ -136929,7 +79996,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00481/full/max/0/default.jpg",
"type": "Image",
@@ -136941,9 +80007,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00481",
"type": "ImageService3",
@@ -136953,11 +80017,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00481",
"@type": "ImageService2",
@@ -136967,45 +80029,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00481/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00482/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 482"],
- "sv": [
-
- "Bild 482"
-
- ],
-
- "en": [
-
- "Image 482"
-
- ]
-
+ "en": ["Image 482"]
},
"width": 5928,
@@ -137013,199 +80056,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00482"]}
-
+ "value": { "none": ["A0067545_00482"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00482"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00482"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00482"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00482"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9639
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9639
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00482.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00482"]},
+ "label": { "en": ["ALTO XML for A0067545_00482"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00482/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00482/annotation",
"type": "Annotation",
@@ -137213,7 +80162,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00482/full/max/0/default.jpg",
"type": "Image",
@@ -137225,9 +80173,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00482",
"type": "ImageService3",
@@ -137237,11 +80183,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00482",
"@type": "ImageService2",
@@ -137251,45 +80195,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00482/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00483/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 483"],
- "sv": [
-
- "Bild 483"
-
- ],
-
- "en": [
-
- "Image 483"
-
- ]
-
+ "en": ["Image 483"]
},
"width": 5928,
@@ -137297,199 +80222,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00483"]}
-
+ "value": { "none": ["A0067545_00483"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00483"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00483"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00483"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00483"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00483.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00483"]},
+ "label": { "en": ["ALTO XML for A0067545_00483"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00483/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00483/annotation",
"type": "Annotation",
@@ -137497,7 +80328,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00483/full/max/0/default.jpg",
"type": "Image",
@@ -137509,9 +80339,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00483",
"type": "ImageService3",
@@ -137521,11 +80349,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00483",
"@type": "ImageService2",
@@ -137535,45 +80361,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00483/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00484/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 484"],
- "sv": [
-
- "Bild 484"
-
- ],
-
- "en": [
-
- "Image 484"
-
- ]
-
+ "en": ["Image 484"]
},
"width": 6016,
@@ -137581,199 +80388,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00484"]}
-
+ "value": { "none": ["A0067545_00484"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00484"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00484"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00484"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00484"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00484.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00484"]},
+ "label": { "en": ["ALTO XML for A0067545_00484"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00484/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00484/annotation",
"type": "Annotation",
@@ -137781,7 +80494,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00484/full/max/0/default.jpg",
"type": "Image",
@@ -137793,9 +80505,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00484",
"type": "ImageService3",
@@ -137805,11 +80515,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00484",
"@type": "ImageService2",
@@ -137819,45 +80527,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00484/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00485/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 485"],
- "sv": [
-
- "Bild 485"
-
- ],
-
- "en": [
-
- "Image 485"
-
- ]
-
+ "en": ["Image 485"]
},
"width": 6016,
@@ -137865,199 +80554,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00485"]}
-
+ "value": { "none": ["A0067545_00485"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00485"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00485"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00485"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00485"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9764
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9764
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00485.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00485"]},
+ "label": { "en": ["ALTO XML for A0067545_00485"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00485/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00485/annotation",
"type": "Annotation",
@@ -138065,7 +80660,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00485/full/max/0/default.jpg",
"type": "Image",
@@ -138077,9 +80671,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00485",
"type": "ImageService3",
@@ -138089,11 +80681,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00485",
"@type": "ImageService2",
@@ -138103,45 +80693,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00485/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00486/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 486"],
- "sv": [
-
- "Bild 486"
-
- ],
-
- "en": [
-
- "Image 486"
-
- ]
-
+ "en": ["Image 486"]
},
"width": 6016,
@@ -138149,199 +80720,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00486"]}
-
+ "value": { "none": ["A0067545_00486"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00486"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00486"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00486"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00486"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9907
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9907
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00486.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00486"]},
+ "label": { "en": ["ALTO XML for A0067545_00486"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00486/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00486/annotation",
"type": "Annotation",
@@ -138349,7 +80826,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00486/full/max/0/default.jpg",
"type": "Image",
@@ -138361,9 +80837,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00486",
"type": "ImageService3",
@@ -138373,11 +80847,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00486",
"@type": "ImageService2",
@@ -138387,45 +80859,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00486/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00487/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 487"],
- "sv": [
-
- "Bild 487"
-
- ],
-
- "en": [
-
- "Image 487"
-
- ]
-
+ "en": ["Image 487"]
},
"width": 5984,
@@ -138433,199 +80886,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00487"]}
-
+ "value": { "none": ["A0067545_00487"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00487"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00487"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00487"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00487"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9775
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9775
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00487.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00487"]},
+ "label": { "en": ["ALTO XML for A0067545_00487"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00487/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00487/annotation",
"type": "Annotation",
@@ -138633,7 +80992,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00487/full/max/0/default.jpg",
"type": "Image",
@@ -138645,9 +81003,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00487",
"type": "ImageService3",
@@ -138657,11 +81013,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00487",
"@type": "ImageService2",
@@ -138671,45 +81025,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00487/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00488/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 488"],
- "sv": [
-
- "Bild 488"
-
- ],
-
- "en": [
-
- "Image 488"
-
- ]
-
+ "en": ["Image 488"]
},
"width": 6016,
@@ -138717,199 +81052,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00488"]}
-
+ "value": { "none": ["A0067545_00488"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00488"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00488"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00488"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00488"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9956
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9956
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00488.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00488"]},
+ "label": { "en": ["ALTO XML for A0067545_00488"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00488/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00488/annotation",
"type": "Annotation",
@@ -138917,7 +81158,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00488/full/max/0/default.jpg",
"type": "Image",
@@ -138929,9 +81169,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00488",
"type": "ImageService3",
@@ -138941,11 +81179,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00488",
"@type": "ImageService2",
@@ -138955,45 +81191,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00488/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00489/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 489"],
- "sv": [
-
- "Bild 489"
-
- ],
-
- "en": [
-
- "Image 489"
-
- ]
-
+ "en": ["Image 489"]
},
"width": 5864,
@@ -139001,199 +81218,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00489"]}
-
+ "value": { "none": ["A0067545_00489"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00489"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00489"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00489"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00489"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00489.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00489"]},
+ "label": { "en": ["ALTO XML for A0067545_00489"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00489/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00489/annotation",
"type": "Annotation",
@@ -139201,7 +81324,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00489/full/max/0/default.jpg",
"type": "Image",
@@ -139213,9 +81335,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00489",
"type": "ImageService3",
@@ -139225,11 +81345,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00489",
"@type": "ImageService2",
@@ -139239,45 +81357,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00489/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00490/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 490"],
- "sv": [
-
- "Bild 490"
-
- ],
-
- "en": [
-
- "Image 490"
-
- ]
-
+ "en": ["Image 490"]
},
"width": 5984,
@@ -139285,199 +81384,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00490"]}
-
+ "value": { "none": ["A0067545_00490"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00490"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00490"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00490"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00490"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9975
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9975
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00490.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00490"]},
+ "label": { "en": ["ALTO XML for A0067545_00490"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00490/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00490/annotation",
"type": "Annotation",
@@ -139485,7 +81490,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00490/full/max/0/default.jpg",
"type": "Image",
@@ -139497,9 +81501,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00490",
"type": "ImageService3",
@@ -139509,11 +81511,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00490",
"@type": "ImageService2",
@@ -139523,45 +81523,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00490/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00491/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 491"],
- "sv": [
-
- "Bild 491"
-
- ],
-
- "en": [
-
- "Image 491"
-
- ]
-
+ "en": ["Image 491"]
},
"width": 6016,
@@ -139569,199 +81550,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00491"]}
-
+ "value": { "none": ["A0067545_00491"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00491"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00491"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00491"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00491"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
- "value": {
-
- "sv": [
-
- "Texten är skapad med artificiell intelligens och kan innehålla fel."
-
- ],
-
- "en": [
-
- "The text is created with artificial intelligence and may contain errors."
-
- ]
-
- }
-
- },
-
- {
-
- "label": {
-
- "sv": [
-
- "Konfidensvärde"
-
+ "value": {
+ "sv": [
+ "Texten är skapad med artificiell intelligens och kan innehålla fel."
],
"en": [
-
- "Confidence value"
-
+ "The text is created with artificial intelligence and may contain errors."
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Konfidensvärde"],
+
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00491.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00491"]},
+ "label": { "en": ["ALTO XML for A0067545_00491"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00491/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00491/annotation",
"type": "Annotation",
@@ -139769,7 +81656,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00491/full/max/0/default.jpg",
"type": "Image",
@@ -139781,9 +81667,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00491",
"type": "ImageService3",
@@ -139793,11 +81677,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00491",
"@type": "ImageService2",
@@ -139807,45 +81689,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00491/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00492/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 492"],
- "sv": [
-
- "Bild 492"
-
- ],
-
- "en": [
-
- "Image 492"
-
- ]
-
+ "en": ["Image 492"]
},
"width": 5896,
@@ -139853,199 +81716,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00492"]}
-
+ "value": { "none": ["A0067545_00492"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00492"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00492"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00492"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00492"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00492.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00492"]},
+ "label": { "en": ["ALTO XML for A0067545_00492"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00492/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00492/annotation",
"type": "Annotation",
@@ -140053,7 +81822,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00492/full/max/0/default.jpg",
"type": "Image",
@@ -140065,9 +81833,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00492",
"type": "ImageService3",
@@ -140077,11 +81843,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00492",
"@type": "ImageService2",
@@ -140091,45 +81855,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00492/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00493/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 493"],
- "sv": [
-
- "Bild 493"
-
- ],
-
- "en": [
-
- "Image 493"
-
- ]
-
+ "en": ["Image 493"]
},
"width": 6016,
@@ -140137,199 +81882,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00493"]}
-
+ "value": { "none": ["A0067545_00493"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00493"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00493"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00493"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00493"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00493.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00493"]},
+ "label": { "en": ["ALTO XML for A0067545_00493"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00493/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00493/annotation",
"type": "Annotation",
@@ -140337,7 +81988,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00493/full/max/0/default.jpg",
"type": "Image",
@@ -140349,9 +81999,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00493",
"type": "ImageService3",
@@ -140361,11 +82009,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00493",
"@type": "ImageService2",
@@ -140375,45 +82021,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00493/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00494/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 494"],
- "sv": [
-
- "Bild 494"
-
- ],
-
- "en": [
-
- "Image 494"
-
- ]
-
+ "en": ["Image 494"]
},
"width": 6016,
@@ -140421,199 +82048,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00494"]}
-
+ "value": { "none": ["A0067545_00494"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00494"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00494"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00494"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00494"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9965
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9965
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00494.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00494"]},
+ "label": { "en": ["ALTO XML for A0067545_00494"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00494/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00494/annotation",
"type": "Annotation",
@@ -140621,7 +82154,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00494/full/max/0/default.jpg",
"type": "Image",
@@ -140633,9 +82165,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00494",
"type": "ImageService3",
@@ -140645,11 +82175,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00494",
"@type": "ImageService2",
@@ -140659,45 +82187,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00494/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00495/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 495"],
- "sv": [
-
- "Bild 495"
-
- ],
-
- "en": [
-
- "Image 495"
-
- ]
-
+ "en": ["Image 495"]
},
"width": 5984,
@@ -140705,199 +82214,105 @@
"height": 5352,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00495"]}
-
+ "value": { "none": ["A0067545_00495"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00495"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00495"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00495"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00495"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00495.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00495"]},
+ "label": { "en": ["ALTO XML for A0067545_00495"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00495/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00495/annotation",
"type": "Annotation",
@@ -140905,7 +82320,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00495/full/max/0/default.jpg",
"type": "Image",
@@ -140917,9 +82331,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00495",
"type": "ImageService3",
@@ -140929,11 +82341,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00495",
"@type": "ImageService2",
@@ -140943,45 +82353,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00495/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00496/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 496"],
- "sv": [
-
- "Bild 496"
-
- ],
-
- "en": [
-
- "Image 496"
-
- ]
-
+ "en": ["Image 496"]
},
"width": 6016,
@@ -140989,199 +82380,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00496"]}
-
+ "value": { "none": ["A0067545_00496"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00496"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00496"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00496"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00496"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9971
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9971
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00496.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00496"]},
+ "label": { "en": ["ALTO XML for A0067545_00496"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00496/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00496/annotation",
"type": "Annotation",
@@ -141189,7 +82486,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00496/full/max/0/default.jpg",
"type": "Image",
@@ -141201,9 +82497,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00496",
"type": "ImageService3",
@@ -141213,11 +82507,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00496",
"@type": "ImageService2",
@@ -141227,45 +82519,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00496/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00497/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 497"],
- "sv": [
-
- "Bild 497"
-
- ],
-
- "en": [
-
- "Image 497"
-
- ]
-
+ "en": ["Image 497"]
},
"width": 6016,
@@ -141273,199 +82546,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00497"]}
-
+ "value": { "none": ["A0067545_00497"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00497"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00497"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00497"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00497"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00497.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00497"]},
+ "label": { "en": ["ALTO XML for A0067545_00497"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00497/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00497/annotation",
"type": "Annotation",
@@ -141473,7 +82652,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00497/full/max/0/default.jpg",
"type": "Image",
@@ -141485,9 +82663,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00497",
"type": "ImageService3",
@@ -141497,11 +82673,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00497",
"@type": "ImageService2",
@@ -141511,45 +82685,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00497/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00498/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 498"],
- "sv": [
-
- "Bild 498"
-
- ],
-
- "en": [
-
- "Image 498"
-
- ]
-
+ "en": ["Image 498"]
},
"width": 6016,
@@ -141557,199 +82712,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00498"]}
-
+ "value": { "none": ["A0067545_00498"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00498"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00498"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00498"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00498"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00498.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00498"]},
+ "label": { "en": ["ALTO XML for A0067545_00498"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00498/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00498/annotation",
"type": "Annotation",
@@ -141757,7 +82818,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00498/full/max/0/default.jpg",
"type": "Image",
@@ -141769,9 +82829,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00498",
"type": "ImageService3",
@@ -141781,11 +82839,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00498",
"@type": "ImageService2",
@@ -141795,45 +82851,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00498/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00499/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 499"],
- "sv": [
-
- "Bild 499"
-
- ],
-
- "en": [
-
- "Image 499"
-
- ]
-
+ "en": ["Image 499"]
},
"width": 6016,
@@ -141841,199 +82878,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00499"]}
-
+ "value": { "none": ["A0067545_00499"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00499"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00499"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00499"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00499"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00499.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00499"]},
+ "label": { "en": ["ALTO XML for A0067545_00499"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00499/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00499/annotation",
"type": "Annotation",
@@ -142041,7 +82984,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00499/full/max/0/default.jpg",
"type": "Image",
@@ -142053,9 +82995,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00499",
"type": "ImageService3",
@@ -142065,11 +83005,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00499",
"@type": "ImageService2",
@@ -142079,45 +83017,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00499/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00500/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 500"],
- "sv": [
-
- "Bild 500"
-
- ],
-
- "en": [
-
- "Image 500"
-
- ]
-
+ "en": ["Image 500"]
},
"width": 6016,
@@ -142125,199 +83044,105 @@
"height": 5320,
"metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00500"]}
-
- },
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00500"
-
- ]
-
- }
-
+ "value": { "none": ["A0067545_00500"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "sv": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00500"
-
- ],
-
- "en": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00500"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00500"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Transkriptionsmetod"
+ "en": ["Source reference"]
+ },
+ "value": {
+ "sv": [
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00500"
],
"en": [
-
- "Transcription method"
-
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00500"
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Transkriptionsmetod"],
+
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00500.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00500"]},
+ "label": { "en": ["ALTO XML for A0067545_00500"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00500/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00500/annotation",
"type": "Annotation",
@@ -142325,7 +83150,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00500/full/max/0/default.jpg",
"type": "Image",
@@ -142337,9 +83161,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00500",
"type": "ImageService3",
@@ -142349,11 +83171,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00500",
"@type": "ImageService2",
@@ -142363,45 +83183,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00500/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00501/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 501"],
- "sv": [
-
- "Bild 501"
-
- ],
-
- "en": [
-
- "Image 501"
-
- ]
-
+ "en": ["Image 501"]
},
"width": 6176,
@@ -142409,199 +83210,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00501"]}
-
+ "value": { "none": ["A0067545_00501"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00501"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00501"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00501"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00501"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00501.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00501"]},
+ "label": { "en": ["ALTO XML for A0067545_00501"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00501/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00501/annotation",
"type": "Annotation",
@@ -142609,7 +83316,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00501/full/max/0/default.jpg",
"type": "Image",
@@ -142621,9 +83327,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00501",
"type": "ImageService3",
@@ -142633,11 +83337,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00501",
"@type": "ImageService2",
@@ -142647,45 +83349,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00501/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00502/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 502"],
- "sv": [
-
- "Bild 502"
-
- ],
-
- "en": [
-
- "Image 502"
-
- ]
-
+ "en": ["Image 502"]
},
"width": 5864,
@@ -142693,199 +83376,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00502"]}
-
+ "value": { "none": ["A0067545_00502"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00502"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00502"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00502"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00502"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9734
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9734
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00502.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00502"]},
+ "label": { "en": ["ALTO XML for A0067545_00502"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00502/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00502/annotation",
"type": "Annotation",
@@ -142893,7 +83482,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00502/full/max/0/default.jpg",
"type": "Image",
@@ -142905,9 +83493,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00502",
"type": "ImageService3",
@@ -142917,11 +83503,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00502",
"@type": "ImageService2",
@@ -142931,45 +83515,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00502/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00503/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 503"],
- "sv": [
-
- "Bild 503"
-
- ],
-
- "en": [
-
- "Image 503"
-
- ]
-
+ "en": ["Image 503"]
},
"width": 6016,
@@ -142977,199 +83542,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00503"]}
-
+ "value": { "none": ["A0067545_00503"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00503"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00503"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00503"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00503"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00503.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00503"]},
+ "label": { "en": ["ALTO XML for A0067545_00503"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00503/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00503/annotation",
"type": "Annotation",
@@ -143177,7 +83648,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00503/full/max/0/default.jpg",
"type": "Image",
@@ -143189,9 +83659,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00503",
"type": "ImageService3",
@@ -143201,11 +83669,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00503",
"@type": "ImageService2",
@@ -143215,45 +83681,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00503/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00504/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 504"],
- "sv": [
-
- "Bild 504"
-
- ],
-
- "en": [
-
- "Image 504"
-
- ]
-
+ "en": ["Image 504"]
},
"width": 5896,
@@ -143261,199 +83708,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00504"]}
-
+ "value": { "none": ["A0067545_00504"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00504"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00504"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00504"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00504"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9919
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9919
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00504.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00504"]},
+ "label": { "en": ["ALTO XML for A0067545_00504"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00504/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00504/annotation",
"type": "Annotation",
@@ -143461,7 +83814,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00504/full/max/0/default.jpg",
"type": "Image",
@@ -143473,9 +83825,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00504",
"type": "ImageService3",
@@ -143485,11 +83835,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00504",
"@type": "ImageService2",
@@ -143499,45 +83847,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00504/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00505/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 505"],
- "sv": [
-
- "Bild 505"
-
- ],
-
- "en": [
-
- "Image 505"
-
- ]
-
+ "en": ["Image 505"]
},
"width": 5896,
@@ -143545,199 +83874,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00505"]}
-
+ "value": { "none": ["A0067545_00505"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00505"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00505"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00505"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00505"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9849
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9849
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00505.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00505"]},
+ "label": { "en": ["ALTO XML for A0067545_00505"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00505/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00505/annotation",
"type": "Annotation",
@@ -143745,7 +83980,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00505/full/max/0/default.jpg",
"type": "Image",
@@ -143757,9 +83991,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00505",
"type": "ImageService3",
@@ -143769,11 +84001,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00505",
"@type": "ImageService2",
@@ -143783,45 +84013,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00505/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00506/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 506"],
- "sv": [
-
- "Bild 506"
-
- ],
-
- "en": [
-
- "Image 506"
-
- ]
-
+ "en": ["Image 506"]
},
"width": 6016,
@@ -143829,199 +84040,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00506"]}
-
+ "value": { "none": ["A0067545_00506"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00506"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00506"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00506"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00506"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9932
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9932
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00506.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00506"]},
+ "label": { "en": ["ALTO XML for A0067545_00506"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00506/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00506/annotation",
"type": "Annotation",
@@ -144029,7 +84146,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00506/full/max/0/default.jpg",
"type": "Image",
@@ -144041,9 +84157,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00506",
"type": "ImageService3",
@@ -144053,11 +84167,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00506",
"@type": "ImageService2",
@@ -144067,45 +84179,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00506/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00507/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 507"],
- "sv": [
-
- "Bild 507"
-
- ],
-
- "en": [
-
- "Image 507"
-
- ]
-
+ "en": ["Image 507"]
},
"width": 6016,
@@ -144113,199 +84206,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00507"]}
-
+ "value": { "none": ["A0067545_00507"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00507"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00507"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00507"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00507"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00507.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00507"]},
+ "label": { "en": ["ALTO XML for A0067545_00507"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00507/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00507/annotation",
"type": "Annotation",
@@ -144313,7 +84312,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00507/full/max/0/default.jpg",
"type": "Image",
@@ -144325,9 +84323,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00507",
"type": "ImageService3",
@@ -144337,11 +84333,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00507",
"@type": "ImageService2",
@@ -144351,45 +84345,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00507/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00508/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 508"],
- "sv": [
-
- "Bild 508"
-
- ],
-
- "en": [
-
- "Image 508"
-
- ]
-
+ "en": ["Image 508"]
},
"width": 6016,
@@ -144397,199 +84372,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00508"]}
-
+ "value": { "none": ["A0067545_00508"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00508"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00508"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00508"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00508"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9964
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9964
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00508.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00508"]},
+ "label": { "en": ["ALTO XML for A0067545_00508"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00508/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00508/annotation",
"type": "Annotation",
@@ -144597,7 +84478,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00508/full/max/0/default.jpg",
"type": "Image",
@@ -144609,9 +84489,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00508",
"type": "ImageService3",
@@ -144621,11 +84499,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00508",
"@type": "ImageService2",
@@ -144635,45 +84511,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00508/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00509/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 509"],
- "sv": [
-
- "Bild 509"
-
- ],
-
- "en": [
-
- "Image 509"
-
- ]
-
+ "en": ["Image 509"]
},
"width": 5896,
@@ -144681,199 +84538,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00509"]}
-
+ "value": { "none": ["A0067545_00509"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00509"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00509"]
}
-
},
- {
-
- "label": {
-
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
+ {
+ "label": {
+ "sv": ["Källhänvisning"],
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00509"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00509"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00509.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00509"]},
+ "label": { "en": ["ALTO XML for A0067545_00509"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00509/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00509/annotation",
"type": "Annotation",
@@ -144881,7 +84644,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00509/full/max/0/default.jpg",
"type": "Image",
@@ -144893,9 +84655,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00509",
"type": "ImageService3",
@@ -144905,11 +84665,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00509",
"@type": "ImageService2",
@@ -144919,45 +84677,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00509/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00510/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 510"],
- "sv": [
-
- "Bild 510"
-
- ],
-
- "en": [
-
- "Image 510"
-
- ]
-
+ "en": ["Image 510"]
},
"width": 6016,
@@ -144965,199 +84704,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00510"]}
-
+ "value": { "none": ["A0067545_00510"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00510"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00510"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00510"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00510"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00510.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00510"]},
+ "label": { "en": ["ALTO XML for A0067545_00510"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00510/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00510/annotation",
"type": "Annotation",
@@ -145165,7 +84810,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00510/full/max/0/default.jpg",
"type": "Image",
@@ -145177,9 +84821,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00510",
"type": "ImageService3",
@@ -145189,11 +84831,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00510",
"@type": "ImageService2",
@@ -145203,45 +84843,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00510/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00511/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 511"],
- "sv": [
-
- "Bild 511"
-
- ],
-
- "en": [
-
- "Image 511"
-
- ]
-
+ "en": ["Image 511"]
},
"width": 5896,
@@ -145249,199 +84870,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00511"]}
-
+ "value": { "none": ["A0067545_00511"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00511"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00511"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00511"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00511"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00511.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00511"]},
+ "label": { "en": ["ALTO XML for A0067545_00511"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00511/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00511/annotation",
"type": "Annotation",
@@ -145449,7 +84976,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00511/full/max/0/default.jpg",
"type": "Image",
@@ -145461,9 +84987,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00511",
"type": "ImageService3",
@@ -145473,11 +84997,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00511",
"@type": "ImageService2",
@@ -145487,45 +85009,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00511/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00512/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 512"],
- "sv": [
-
- "Bild 512"
-
- ],
-
- "en": [
-
- "Image 512"
-
- ]
-
+ "en": ["Image 512"]
},
"width": 5984,
@@ -145533,199 +85036,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00512"]}
-
+ "value": { "none": ["A0067545_00512"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00512"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00512"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00512"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00512"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00512.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00512"]},
+ "label": { "en": ["ALTO XML for A0067545_00512"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00512/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00512/annotation",
"type": "Annotation",
@@ -145733,7 +85142,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00512/full/max/0/default.jpg",
"type": "Image",
@@ -145745,9 +85153,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00512",
"type": "ImageService3",
@@ -145757,11 +85163,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00512",
"@type": "ImageService2",
@@ -145771,45 +85175,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00512/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00513/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 513"],
- "sv": [
-
- "Bild 513"
-
- ],
-
- "en": [
-
- "Image 513"
-
- ]
-
+ "en": ["Image 513"]
},
"width": 5864,
@@ -145817,199 +85202,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00513"]}
-
+ "value": { "none": ["A0067545_00513"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00513"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00513"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00513"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00513"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00513.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00513"]},
+ "label": { "en": ["ALTO XML for A0067545_00513"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00513/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00513/annotation",
"type": "Annotation",
@@ -146017,7 +85308,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00513/full/max/0/default.jpg",
"type": "Image",
@@ -146029,9 +85319,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00513",
"type": "ImageService3",
@@ -146041,11 +85329,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00513",
"@type": "ImageService2",
@@ -146055,45 +85341,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00513/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00514/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 514"],
- "sv": [
-
- "Bild 514"
-
- ],
-
- "en": [
-
- "Image 514"
-
- ]
-
+ "en": ["Image 514"]
},
"width": 5864,
@@ -146101,199 +85368,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00514"]}
-
+ "value": { "none": ["A0067545_00514"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00514"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00514"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00514"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00514"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00514.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00514"]},
+ "label": { "en": ["ALTO XML for A0067545_00514"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00514/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00514/annotation",
"type": "Annotation",
@@ -146301,7 +85474,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00514/full/max/0/default.jpg",
"type": "Image",
@@ -146313,9 +85485,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00514",
"type": "ImageService3",
@@ -146325,11 +85495,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00514",
"@type": "ImageService2",
@@ -146339,45 +85507,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00514/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00515/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 515"],
- "sv": [
-
- "Bild 515"
-
- ],
-
- "en": [
-
- "Image 515"
-
- ]
-
+ "en": ["Image 515"]
},
"width": 5984,
@@ -146385,199 +85534,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00515"]}
-
+ "value": { "none": ["A0067545_00515"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00515"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00515"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00515"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00515"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00515.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00515"]},
+ "label": { "en": ["ALTO XML for A0067545_00515"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00515/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00515/annotation",
"type": "Annotation",
@@ -146585,7 +85640,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00515/full/max/0/default.jpg",
"type": "Image",
@@ -146597,9 +85651,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00515",
"type": "ImageService3",
@@ -146609,11 +85661,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00515",
"@type": "ImageService2",
@@ -146623,45 +85673,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00515/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00516/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 516"],
- "sv": [
-
- "Bild 516"
-
- ],
-
- "en": [
-
- "Image 516"
-
- ]
-
+ "en": ["Image 516"]
},
"width": 6016,
@@ -146669,199 +85700,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00516"]}
-
+ "value": { "none": ["A0067545_00516"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00516"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00516"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00516"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00516"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00516.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00516"]},
+ "label": { "en": ["ALTO XML for A0067545_00516"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00516/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00516/annotation",
"type": "Annotation",
@@ -146869,7 +85806,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00516/full/max/0/default.jpg",
"type": "Image",
@@ -146881,9 +85817,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00516",
"type": "ImageService3",
@@ -146893,11 +85827,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00516",
"@type": "ImageService2",
@@ -146907,45 +85839,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00516/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00517/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 517"],
- "sv": [
-
- "Bild 517"
-
- ],
-
- "en": [
-
- "Image 517"
-
- ]
-
+ "en": ["Image 517"]
},
"width": 5864,
@@ -146953,199 +85866,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00517"]}
-
+ "value": { "none": ["A0067545_00517"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00517"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00517"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00517"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00517"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00517.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00517"]},
+ "label": { "en": ["ALTO XML for A0067545_00517"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00517/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00517/annotation",
"type": "Annotation",
@@ -147153,7 +85972,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00517/full/max/0/default.jpg",
"type": "Image",
@@ -147165,9 +85983,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00517",
"type": "ImageService3",
@@ -147177,11 +85993,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00517",
"@type": "ImageService2",
@@ -147191,245 +86005,132 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00517/canvas"
-
}
-
]
-
}
-
]
-
},
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00518/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 518"
-
- ],
-
- "en": [
-
- "Image 518"
-
- ]
-
- },
-
- "width": 5864,
-
- "height": 5288,
-
- "metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00518"]}
-
- },
-
- {
-
- "label": {
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00518/canvas",
- "sv": [
+ "type": "Canvas",
- "Länk"
+ "label": {
+ "sv": ["Bild 518"],
- ],
+ "en": ["Image 518"]
+ },
- "en": [
+ "width": 5864,
- "Link"
+ "height": 5288,
- ]
+ "metadata": [
+ {
+ "label": {
+ "sv": ["Bildid"],
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
+ "value": { "none": ["A0067545_00518"] }
+ },
- "https://sok.riksarkivet.se/bildvisning/A0067545_00518"
+ {
+ "label": {
+ "sv": ["Länk"],
- ]
+ "en": ["Link"]
+ },
+ "value": {
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00518"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00518"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00518"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00518.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00518"]},
+ "label": { "en": ["ALTO XML for A0067545_00518"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00518/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00518/annotation",
"type": "Annotation",
@@ -147437,7 +86138,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00518/full/max/0/default.jpg",
"type": "Image",
@@ -147449,9 +86149,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00518",
"type": "ImageService3",
@@ -147461,11 +86159,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00518",
"@type": "ImageService2",
@@ -147475,45 +86171,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00518/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00519/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 519"],
- "sv": [
-
- "Bild 519"
-
- ],
-
- "en": [
-
- "Image 519"
-
- ]
-
+ "en": ["Image 519"]
},
"width": 6016,
@@ -147521,199 +86198,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00519"]}
-
+ "value": { "none": ["A0067545_00519"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00519"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00519"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00519"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00519"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9869
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9869
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00519.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00519"]},
+ "label": { "en": ["ALTO XML for A0067545_00519"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00519/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00519/annotation",
"type": "Annotation",
@@ -147721,7 +86304,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00519/full/max/0/default.jpg",
"type": "Image",
@@ -147733,9 +86315,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00519",
"type": "ImageService3",
@@ -147745,11 +86325,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00519",
"@type": "ImageService2",
@@ -147759,45 +86337,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00519/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00520/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 520"],
- "sv": [
-
- "Bild 520"
-
- ],
-
- "en": [
-
- "Image 520"
-
- ]
-
+ "en": ["Image 520"]
},
"width": 5984,
@@ -147805,199 +86364,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00520"]}
-
+ "value": { "none": ["A0067545_00520"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00520"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00520"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00520"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00520"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9639
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9639
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00520.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00520"]},
+ "label": { "en": ["ALTO XML for A0067545_00520"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00520/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00520/annotation",
"type": "Annotation",
@@ -148005,7 +86470,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00520/full/max/0/default.jpg",
"type": "Image",
@@ -148017,9 +86481,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00520",
"type": "ImageService3",
@@ -148029,11 +86491,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00520",
"@type": "ImageService2",
@@ -148043,45 +86503,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00520/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00521/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 521"],
- "sv": [
-
- "Bild 521"
-
- ],
-
- "en": [
-
- "Image 521"
-
- ]
-
+ "en": ["Image 521"]
},
"width": 5896,
@@ -148089,199 +86530,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00521"]}
-
+ "value": { "none": ["A0067545_00521"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00521"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00521"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00521"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00521"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00521.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00521"]},
+ "label": { "en": ["ALTO XML for A0067545_00521"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00521/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00521/annotation",
"type": "Annotation",
@@ -148289,7 +86636,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00521/full/max/0/default.jpg",
"type": "Image",
@@ -148301,9 +86647,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00521",
"type": "ImageService3",
@@ -148313,11 +86657,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00521",
"@type": "ImageService2",
@@ -148327,45 +86669,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00521/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00522/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 522"],
- "sv": [
-
- "Bild 522"
-
- ],
-
- "en": [
-
- "Image 522"
-
- ]
-
+ "en": ["Image 522"]
},
"width": 6016,
@@ -148373,199 +86696,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00522"]}
-
+ "value": { "none": ["A0067545_00522"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00522"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00522"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00522"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00522"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9941
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9941
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00522.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00522"]},
+ "label": { "en": ["ALTO XML for A0067545_00522"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00522/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00522/annotation",
"type": "Annotation",
@@ -148573,7 +86802,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00522/full/max/0/default.jpg",
"type": "Image",
@@ -148585,9 +86813,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00522",
"type": "ImageService3",
@@ -148597,11 +86823,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00522",
"@type": "ImageService2",
@@ -148611,45 +86835,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00522/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00523/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 523"],
- "sv": [
-
- "Bild 523"
-
- ],
-
- "en": [
-
- "Image 523"
-
- ]
-
+ "en": ["Image 523"]
},
"width": 5984,
@@ -148657,199 +86862,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00523"]}
-
+ "value": { "none": ["A0067545_00523"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00523"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00523"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00523"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00523"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9784
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9784
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00523.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00523"]},
+ "label": { "en": ["ALTO XML for A0067545_00523"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00523/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00523/annotation",
"type": "Annotation",
@@ -148857,7 +86968,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00523/full/max/0/default.jpg",
"type": "Image",
@@ -148869,9 +86979,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00523",
"type": "ImageService3",
@@ -148881,11 +86989,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00523",
"@type": "ImageService2",
@@ -148895,45 +87001,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00523/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00524/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 524"],
- "sv": [
-
- "Bild 524"
-
- ],
-
- "en": [
-
- "Image 524"
-
- ]
-
+ "en": ["Image 524"]
},
"width": 5984,
@@ -148941,199 +87028,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00524"]}
-
+ "value": { "none": ["A0067545_00524"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00524"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00524"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00524"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00524"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9842
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9842
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00524.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00524"]},
+ "label": { "en": ["ALTO XML for A0067545_00524"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00524/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00524/annotation",
"type": "Annotation",
@@ -149141,7 +87134,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00524/full/max/0/default.jpg",
"type": "Image",
@@ -149153,9 +87145,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00524",
"type": "ImageService3",
@@ -149165,11 +87155,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00524",
"@type": "ImageService2",
@@ -149179,45 +87167,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00524/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00525/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 525"],
- "sv": [
-
- "Bild 525"
-
- ],
-
- "en": [
-
- "Image 525"
-
- ]
-
+ "en": ["Image 525"]
},
"width": 5864,
@@ -149225,199 +87194,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00525"]}
-
+ "value": { "none": ["A0067545_00525"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00525"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00525"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00525"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00525"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00525.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00525"]},
+ "label": { "en": ["ALTO XML for A0067545_00525"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00525/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00525/annotation",
"type": "Annotation",
@@ -149425,7 +87300,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00525/full/max/0/default.jpg",
"type": "Image",
@@ -149437,9 +87311,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00525",
"type": "ImageService3",
@@ -149449,11 +87321,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00525",
"@type": "ImageService2",
@@ -149463,45 +87333,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00525/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00526/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 526"],
- "sv": [
-
- "Bild 526"
-
- ],
-
- "en": [
-
- "Image 526"
-
- ]
-
+ "en": ["Image 526"]
},
"width": 5896,
@@ -149509,199 +87360,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00526"]}
-
+ "value": { "none": ["A0067545_00526"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00526"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00526"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00526"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00526"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00526.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00526"]},
+ "label": { "en": ["ALTO XML for A0067545_00526"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00526/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00526/annotation",
"type": "Annotation",
@@ -149709,7 +87466,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00526/full/max/0/default.jpg",
"type": "Image",
@@ -149721,9 +87477,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00526",
"type": "ImageService3",
@@ -149733,11 +87487,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00526",
"@type": "ImageService2",
@@ -149747,45 +87499,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00526/canvas"
-
}
-
]
-
}
-
]
+ },
- },
-
- {
-
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00527/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 527"
-
- ],
-
- "en": [
+ {
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00527/canvas",
- "Image 527"
+ "type": "Canvas",
- ]
+ "label": {
+ "sv": ["Bild 527"],
+ "en": ["Image 527"]
},
"width": 5984,
@@ -149793,199 +87526,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00527"]}
-
+ "value": { "none": ["A0067545_00527"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00527"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00527"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00527"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00527"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9913
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9913
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00527.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00527"]},
+ "label": { "en": ["ALTO XML for A0067545_00527"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00527/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00527/annotation",
"type": "Annotation",
@@ -149993,7 +87632,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00527/full/max/0/default.jpg",
"type": "Image",
@@ -150005,9 +87643,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00527",
"type": "ImageService3",
@@ -150017,11 +87653,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00527",
"@type": "ImageService2",
@@ -150031,45 +87665,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00527/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00528/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 528"],
- "sv": [
-
- "Bild 528"
-
- ],
-
- "en": [
-
- "Image 528"
-
- ]
-
+ "en": ["Image 528"]
},
"width": 5960,
@@ -150077,199 +87692,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00528"]}
-
+ "value": { "none": ["A0067545_00528"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00528"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00528"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00528"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00528"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00528.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00528"]},
+ "label": { "en": ["ALTO XML for A0067545_00528"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00528/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00528/annotation",
"type": "Annotation",
@@ -150277,7 +87798,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00528/full/max/0/default.jpg",
"type": "Image",
@@ -150289,9 +87809,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00528",
"type": "ImageService3",
@@ -150301,11 +87819,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00528",
"@type": "ImageService2",
@@ -150315,45 +87831,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00528/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00529/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 529"],
- "sv": [
-
- "Bild 529"
-
- ],
-
- "en": [
-
- "Image 529"
-
- ]
-
+ "en": ["Image 529"]
},
"width": 5984,
@@ -150361,199 +87858,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00529"]}
-
+ "value": { "none": ["A0067545_00529"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00529"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00529"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00529"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00529"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00529.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00529"]},
+ "label": { "en": ["ALTO XML for A0067545_00529"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00529/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00529/annotation",
"type": "Annotation",
@@ -150561,7 +87964,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00529/full/max/0/default.jpg",
"type": "Image",
@@ -150573,9 +87975,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00529",
"type": "ImageService3",
@@ -150585,11 +87985,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00529",
"@type": "ImageService2",
@@ -150599,45 +87997,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00529/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00530/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 530"],
- "sv": [
-
- "Bild 530"
-
- ],
-
- "en": [
-
- "Image 530"
-
- ]
-
+ "en": ["Image 530"]
},
"width": 5984,
@@ -150645,199 +88024,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00530"]}
-
+ "value": { "none": ["A0067545_00530"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00530"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00530"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00530"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00530"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00530.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00530"]},
+ "label": { "en": ["ALTO XML for A0067545_00530"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00530/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00530/annotation",
"type": "Annotation",
@@ -150845,7 +88130,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00530/full/max/0/default.jpg",
"type": "Image",
@@ -150857,9 +88141,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00530",
"type": "ImageService3",
@@ -150869,11 +88151,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00530",
"@type": "ImageService2",
@@ -150883,45 +88163,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00530/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00531/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 531"],
- "sv": [
-
- "Bild 531"
-
- ],
-
- "en": [
-
- "Image 531"
-
- ]
-
+ "en": ["Image 531"]
},
"width": 5864,
@@ -150929,199 +88190,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00531"]}
-
+ "value": { "none": ["A0067545_00531"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00531"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00531"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00531"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00531"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9958
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9958
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00531.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00531"]},
+ "label": { "en": ["ALTO XML for A0067545_00531"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00531/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00531/annotation",
"type": "Annotation",
@@ -151129,7 +88296,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00531/full/max/0/default.jpg",
"type": "Image",
@@ -151141,9 +88307,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00531",
"type": "ImageService3",
@@ -151153,11 +88317,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00531",
"@type": "ImageService2",
@@ -151167,45 +88329,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00531/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00532/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 532"],
- "sv": [
-
- "Bild 532"
-
- ],
-
- "en": [
-
- "Image 532"
-
- ]
-
+ "en": ["Image 532"]
},
"width": 6016,
@@ -151213,199 +88356,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00532"]}
-
+ "value": { "none": ["A0067545_00532"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00532"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00532"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00532"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00532"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00532.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00532"]},
+ "label": { "en": ["ALTO XML for A0067545_00532"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00532/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00532/annotation",
"type": "Annotation",
@@ -151413,7 +88462,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00532/full/max/0/default.jpg",
"type": "Image",
@@ -151425,9 +88473,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00532",
"type": "ImageService3",
@@ -151437,11 +88483,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00532",
"@type": "ImageService2",
@@ -151451,45 +88495,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00532/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00533/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 533"],
- "sv": [
-
- "Bild 533"
-
- ],
-
- "en": [
-
- "Image 533"
-
- ]
-
+ "en": ["Image 533"]
},
"width": 6016,
@@ -151497,199 +88522,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00533"]}
-
+ "value": { "none": ["A0067545_00533"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00533"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00533"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00533"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00533"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9911
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9911
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00533.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00533"]},
+ "label": { "en": ["ALTO XML for A0067545_00533"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00533/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00533/annotation",
"type": "Annotation",
@@ -151697,7 +88628,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00533/full/max/0/default.jpg",
"type": "Image",
@@ -151709,9 +88639,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00533",
"type": "ImageService3",
@@ -151721,11 +88649,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00533",
"@type": "ImageService2",
@@ -151735,45 +88661,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00533/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00534/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 534"],
- "sv": [
-
- "Bild 534"
-
- ],
-
- "en": [
-
- "Image 534"
-
- ]
-
+ "en": ["Image 534"]
},
"width": 5896,
@@ -151781,199 +88688,105 @@
"height": 5320,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00534"]}
-
+ "value": { "none": ["A0067545_00534"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00534"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00534"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00534"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00534"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9641
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9641
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00534.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00534"]},
+ "label": { "en": ["ALTO XML for A0067545_00534"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00534/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00534/annotation",
"type": "Annotation",
@@ -151981,7 +88794,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00534/full/max/0/default.jpg",
"type": "Image",
@@ -151993,9 +88805,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00534",
"type": "ImageService3",
@@ -152005,11 +88815,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00534",
"@type": "ImageService2",
@@ -152019,45 +88827,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00534/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00535/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 535"],
- "sv": [
-
- "Bild 535"
-
- ],
-
- "en": [
-
- "Image 535"
-
- ]
-
+ "en": ["Image 535"]
},
"width": 5992,
@@ -152065,199 +88854,105 @@
"height": 5288,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00535"]}
-
+ "value": { "none": ["A0067545_00535"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00535"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00535"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00535"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00535"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00535.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00535"]},
+ "label": { "en": ["ALTO XML for A0067545_00535"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00535/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00535/annotation",
"type": "Annotation",
@@ -152265,7 +88960,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00535/full/max/0/default.jpg",
"type": "Image",
@@ -152277,9 +88971,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00535",
"type": "ImageService3",
@@ -152289,11 +88981,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00535",
"@type": "ImageService2",
@@ -152303,45 +88993,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00535/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00536/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 536"],
- "sv": [
-
- "Bild 536"
-
- ],
-
- "en": [
-
- "Image 536"
-
- ]
-
+ "en": ["Image 536"]
},
"width": 5984,
@@ -152349,199 +89020,105 @@
"height": 4872,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00536"]}
-
+ "value": { "none": ["A0067545_00536"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00536"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00536"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00536"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00536"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00536.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00536"]},
+ "label": { "en": ["ALTO XML for A0067545_00536"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00536/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00536/annotation",
"type": "Annotation",
@@ -152549,7 +89126,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00536/full/max/0/default.jpg",
"type": "Image",
@@ -152561,9 +89137,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00536",
"type": "ImageService3",
@@ -152573,11 +89147,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00536",
"@type": "ImageService2",
@@ -152587,45 +89159,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00536/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00537/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 537"],
- "sv": [
-
- "Bild 537"
-
- ],
-
- "en": [
-
- "Image 537"
-
- ]
-
+ "en": ["Image 537"]
},
"width": 6016,
@@ -152633,199 +89186,105 @@
"height": 5152,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00537"]}
-
+ "value": { "none": ["A0067545_00537"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00537"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00537"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00537"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00537"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00537.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00537"]},
+ "label": { "en": ["ALTO XML for A0067545_00537"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00537/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00537/annotation",
"type": "Annotation",
@@ -152833,7 +89292,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00537/full/max/0/default.jpg",
"type": "Image",
@@ -152845,9 +89303,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00537",
"type": "ImageService3",
@@ -152857,11 +89313,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00537",
"@type": "ImageService2",
@@ -152871,45 +89325,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00537/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00538/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 538"],
- "sv": [
-
- "Bild 538"
-
- ],
-
- "en": [
-
- "Image 538"
-
- ]
-
+ "en": ["Image 538"]
},
"width": 6016,
@@ -152917,199 +89352,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00538"]}
-
+ "value": { "none": ["A0067545_00538"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00538"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00538"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00538"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00538"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00538.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00538"]},
+ "label": { "en": ["ALTO XML for A0067545_00538"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00538/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00538/annotation",
"type": "Annotation",
@@ -153117,7 +89458,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00538/full/max/0/default.jpg",
"type": "Image",
@@ -153129,9 +89469,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00538",
"type": "ImageService3",
@@ -153141,11 +89479,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00538",
"@type": "ImageService2",
@@ -153155,45 +89491,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00538/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00539/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 539"],
- "sv": [
-
- "Bild 539"
-
- ],
-
- "en": [
-
- "Image 539"
-
- ]
-
+ "en": ["Image 539"]
},
"width": 5984,
@@ -153201,199 +89518,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00539"]}
-
+ "value": { "none": ["A0067545_00539"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00539"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00539"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00539"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00539"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9954
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9954
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00539.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00539"]},
+ "label": { "en": ["ALTO XML for A0067545_00539"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00539/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00539/annotation",
"type": "Annotation",
@@ -153401,7 +89624,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00539/full/max/0/default.jpg",
"type": "Image",
@@ -153413,9 +89635,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00539",
"type": "ImageService3",
@@ -153425,11 +89645,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00539",
"@type": "ImageService2",
@@ -153439,45 +89657,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00539/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00540/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 540"],
- "sv": [
-
- "Bild 540"
-
- ],
-
- "en": [
-
- "Image 540"
-
- ]
-
+ "en": ["Image 540"]
},
"width": 5984,
@@ -153485,199 +89684,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00540"]}
-
+ "value": { "none": ["A0067545_00540"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00540"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00540"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00540"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00540"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9956
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9956
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00540.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00540"]},
+ "label": { "en": ["ALTO XML for A0067545_00540"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00540/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00540/annotation",
"type": "Annotation",
@@ -153685,7 +89790,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00540/full/max/0/default.jpg",
"type": "Image",
@@ -153697,9 +89801,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00540",
"type": "ImageService3",
@@ -153709,11 +89811,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00540",
"@type": "ImageService2",
@@ -153723,45 +89823,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00540/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00541/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 541"],
- "sv": [
-
- "Bild 541"
-
- ],
-
- "en": [
-
- "Image 541"
-
- ]
-
+ "en": ["Image 541"]
},
"width": 6016,
@@ -153769,199 +89850,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00541"]}
-
+ "value": { "none": ["A0067545_00541"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00541"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00541"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00541"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00541"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9953
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9953
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00541.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00541"]},
+ "label": { "en": ["ALTO XML for A0067545_00541"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00541/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00541/annotation",
"type": "Annotation",
@@ -153969,7 +89956,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00541/full/max/0/default.jpg",
"type": "Image",
@@ -153981,9 +89967,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00541",
"type": "ImageService3",
@@ -153993,11 +89977,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00541",
"@type": "ImageService2",
@@ -154007,45 +89989,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00541/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00542/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 542"],
- "sv": [
-
- "Bild 542"
-
- ],
-
- "en": [
-
- "Image 542"
-
- ]
-
+ "en": ["Image 542"]
},
"width": 6016,
@@ -154053,199 +90016,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00542"]}
-
+ "value": { "none": ["A0067545_00542"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00542"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00542"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00542"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00542"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9885
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9885
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00542.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00542"]},
+ "label": { "en": ["ALTO XML for A0067545_00542"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00542/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00542/annotation",
"type": "Annotation",
@@ -154253,7 +90122,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00542/full/max/0/default.jpg",
"type": "Image",
@@ -154265,9 +90133,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00542",
"type": "ImageService3",
@@ -154277,11 +90143,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00542",
"@type": "ImageService2",
@@ -154291,45 +90155,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00542/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00543/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 543"],
- "sv": [
-
- "Bild 543"
-
- ],
-
- "en": [
-
- "Image 543"
-
- ]
-
+ "en": ["Image 543"]
},
"width": 5896,
@@ -154337,199 +90182,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00543"]}
-
+ "value": { "none": ["A0067545_00543"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00543"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00543"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00543"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00543"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9877
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9877
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00543.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00543"]},
+ "label": { "en": ["ALTO XML for A0067545_00543"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00543/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00543/annotation",
"type": "Annotation",
@@ -154537,7 +90288,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00543/full/max/0/default.jpg",
"type": "Image",
@@ -154549,9 +90299,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00543",
"type": "ImageService3",
@@ -154561,11 +90309,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00543",
"@type": "ImageService2",
@@ -154575,45 +90321,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00543/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00544/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 544"],
- "sv": [
-
- "Bild 544"
-
- ],
-
- "en": [
-
- "Image 544"
-
- ]
-
+ "en": ["Image 544"]
},
"width": 5864,
@@ -154621,199 +90348,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00544"]}
-
+ "value": { "none": ["A0067545_00544"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00544"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00544"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00544"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00544"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9808
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9808
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00544.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00544"]},
+ "label": { "en": ["ALTO XML for A0067545_00544"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00544/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00544/annotation",
"type": "Annotation",
@@ -154821,7 +90454,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00544/full/max/0/default.jpg",
"type": "Image",
@@ -154833,9 +90465,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00544",
"type": "ImageService3",
@@ -154845,11 +90475,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00544",
"@type": "ImageService2",
@@ -154859,45 +90487,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00544/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00545/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 545"],
- "sv": [
-
- "Bild 545"
-
- ],
-
- "en": [
-
- "Image 545"
-
- ]
-
+ "en": ["Image 545"]
},
"width": 5864,
@@ -154905,199 +90514,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00545"]}
-
+ "value": { "none": ["A0067545_00545"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00545"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00545"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00545"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00545"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00545.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00545"]},
+ "label": { "en": ["ALTO XML for A0067545_00545"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00545/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00545/annotation",
"type": "Annotation",
@@ -155105,7 +90620,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00545/full/max/0/default.jpg",
"type": "Image",
@@ -155117,9 +90631,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00545",
"type": "ImageService3",
@@ -155129,11 +90641,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00545",
"@type": "ImageService2",
@@ -155143,45 +90653,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00545/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00546/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 546"],
- "sv": [
-
- "Bild 546"
-
- ],
-
- "en": [
-
- "Image 546"
-
- ]
-
+ "en": ["Image 546"]
},
"width": 5984,
@@ -155189,199 +90680,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00546"]}
-
+ "value": { "none": ["A0067545_00546"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00546"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00546"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00546"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00546"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00546.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00546"]},
+ "label": { "en": ["ALTO XML for A0067545_00546"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00546/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00546/annotation",
"type": "Annotation",
@@ -155389,7 +90786,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00546/full/max/0/default.jpg",
"type": "Image",
@@ -155401,9 +90797,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00546",
"type": "ImageService3",
@@ -155413,11 +90807,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00546",
"@type": "ImageService2",
@@ -155427,45 +90819,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00546/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00547/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 547"],
- "sv": [
-
- "Bild 547"
-
- ],
-
- "en": [
-
- "Image 547"
-
- ]
-
+ "en": ["Image 547"]
},
"width": 5928,
@@ -155473,199 +90846,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00547"]}
-
+ "value": { "none": ["A0067545_00547"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00547"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00547"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00547"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00547"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9914
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9914
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00547.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00547"]},
+ "label": { "en": ["ALTO XML for A0067545_00547"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00547/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00547/annotation",
"type": "Annotation",
@@ -155673,7 +90952,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00547/full/max/0/default.jpg",
"type": "Image",
@@ -155685,9 +90963,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00547",
"type": "ImageService3",
@@ -155697,11 +90973,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00547",
"@type": "ImageService2",
@@ -155711,45 +90985,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00547/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00548/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 548"],
- "sv": [
-
- "Bild 548"
-
- ],
-
- "en": [
-
- "Image 548"
-
- ]
-
+ "en": ["Image 548"]
},
"width": 5984,
@@ -155757,199 +91012,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00548"]}
-
+ "value": { "none": ["A0067545_00548"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00548"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00548"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00548"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00548"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9965
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9965
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00548.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00548"]},
+ "label": { "en": ["ALTO XML for A0067545_00548"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00548/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00548/annotation",
"type": "Annotation",
@@ -155957,7 +91118,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00548/full/max/0/default.jpg",
"type": "Image",
@@ -155969,9 +91129,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00548",
"type": "ImageService3",
@@ -155981,11 +91139,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00548",
"@type": "ImageService2",
@@ -155995,45 +91151,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00548/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00549/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 549"],
- "sv": [
-
- "Bild 549"
-
- ],
-
- "en": [
-
- "Image 549"
-
- ]
-
+ "en": ["Image 549"]
},
"width": 5984,
@@ -156041,199 +91178,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00549"]}
-
+ "value": { "none": ["A0067545_00549"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00549"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00549"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00549"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00549"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9960
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9960
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00549.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00549"]},
+ "label": { "en": ["ALTO XML for A0067545_00549"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00549/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00549/annotation",
"type": "Annotation",
@@ -156241,7 +91284,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00549/full/max/0/default.jpg",
"type": "Image",
@@ -156253,9 +91295,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00549",
"type": "ImageService3",
@@ -156265,11 +91305,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00549",
"@type": "ImageService2",
@@ -156279,45 +91317,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00549/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00550/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 550"],
- "sv": [
-
- "Bild 550"
-
- ],
-
- "en": [
-
- "Image 550"
-
- ]
-
+ "en": ["Image 550"]
},
"width": 5928,
@@ -156325,199 +91344,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00550"]}
-
+ "value": { "none": ["A0067545_00550"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00550"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00550"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00550"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00550"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9962
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9962
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00550.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00550"]},
+ "label": { "en": ["ALTO XML for A0067545_00550"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00550/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00550/annotation",
"type": "Annotation",
@@ -156525,7 +91450,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00550/full/max/0/default.jpg",
"type": "Image",
@@ -156537,9 +91461,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00550",
"type": "ImageService3",
@@ -156549,11 +91471,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00550",
"@type": "ImageService2",
@@ -156563,45 +91483,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00550/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00551/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 551"],
- "sv": [
-
- "Bild 551"
-
- ],
-
- "en": [
-
- "Image 551"
-
- ]
-
+ "en": ["Image 551"]
},
"width": 5896,
@@ -156609,199 +91510,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00551"]}
-
+ "value": { "none": ["A0067545_00551"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00551"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00551"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00551"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00551"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9967
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9967
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00551.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00551"]},
+ "label": { "en": ["ALTO XML for A0067545_00551"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00551/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00551/annotation",
"type": "Annotation",
@@ -156809,7 +91616,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00551/full/max/0/default.jpg",
"type": "Image",
@@ -156821,9 +91627,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00551",
"type": "ImageService3",
@@ -156833,11 +91637,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00551",
"@type": "ImageService2",
@@ -156847,45 +91649,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00551/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00552/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 552"],
- "sv": [
-
- "Bild 552"
-
- ],
-
- "en": [
-
- "Image 552"
-
- ]
-
+ "en": ["Image 552"]
},
"width": 5960,
@@ -156893,199 +91676,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00552"]}
-
+ "value": { "none": ["A0067545_00552"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00552"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00552"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00552"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00552"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00552.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00552"]},
+ "label": { "en": ["ALTO XML for A0067545_00552"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00552/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00552/annotation",
"type": "Annotation",
@@ -157093,7 +91782,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00552/full/max/0/default.jpg",
"type": "Image",
@@ -157105,9 +91793,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00552",
"type": "ImageService3",
@@ -157117,11 +91803,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00552",
"@type": "ImageService2",
@@ -157131,45 +91815,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00552/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00553/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 553"],
- "sv": [
-
- "Bild 553"
-
- ],
-
- "en": [
-
- "Image 553"
-
- ]
-
+ "en": ["Image 553"]
},
"width": 6016,
@@ -157177,199 +91842,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00553"]}
-
+ "value": { "none": ["A0067545_00553"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00553"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00553"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00553"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00553"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00553.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00553"]},
+ "label": { "en": ["ALTO XML for A0067545_00553"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00553/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00553/annotation",
"type": "Annotation",
@@ -157377,7 +91948,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00553/full/max/0/default.jpg",
"type": "Image",
@@ -157389,9 +91959,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00553",
"type": "ImageService3",
@@ -157401,11 +91969,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00553",
"@type": "ImageService2",
@@ -157415,45 +91981,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00553/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00554/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 554"],
- "sv": [
-
- "Bild 554"
-
- ],
-
- "en": [
-
- "Image 554"
-
- ]
-
+ "en": ["Image 554"]
},
"width": 5864,
@@ -157461,199 +92008,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00554"]}
-
+ "value": { "none": ["A0067545_00554"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00554"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00554"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00554"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00554"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9962
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9962
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00554.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00554"]},
+ "label": { "en": ["ALTO XML for A0067545_00554"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00554/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00554/annotation",
"type": "Annotation",
@@ -157661,7 +92114,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00554/full/max/0/default.jpg",
"type": "Image",
@@ -157673,9 +92125,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00554",
"type": "ImageService3",
@@ -157685,11 +92135,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00554",
"@type": "ImageService2",
@@ -157699,45 +92147,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00554/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00555/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 555"],
- "sv": [
-
- "Bild 555"
-
- ],
-
- "en": [
-
- "Image 555"
-
- ]
-
+ "en": ["Image 555"]
},
"width": 5984,
@@ -157745,199 +92174,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00555"]}
-
+ "value": { "none": ["A0067545_00555"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00555"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00555"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00555"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00555"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9973
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9973
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00555.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00555"]},
+ "label": { "en": ["ALTO XML for A0067545_00555"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00555/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00555/annotation",
"type": "Annotation",
@@ -157945,7 +92280,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00555/full/max/0/default.jpg",
"type": "Image",
@@ -157957,9 +92291,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00555",
"type": "ImageService3",
@@ -157969,11 +92301,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00555",
"@type": "ImageService2",
@@ -157983,45 +92313,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00555/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00556/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 556"],
- "sv": [
-
- "Bild 556"
-
- ],
-
- "en": [
-
- "Image 556"
-
- ]
-
+ "en": ["Image 556"]
},
"width": 5984,
@@ -158029,199 +92340,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00556"]}
-
+ "value": { "none": ["A0067545_00556"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00556"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00556"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00556"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00556"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9967
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9967
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00556.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00556"]},
+ "label": { "en": ["ALTO XML for A0067545_00556"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00556/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00556/annotation",
"type": "Annotation",
@@ -158229,7 +92446,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00556/full/max/0/default.jpg",
"type": "Image",
@@ -158241,9 +92457,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00556",
"type": "ImageService3",
@@ -158253,11 +92467,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00556",
"@type": "ImageService2",
@@ -158267,45 +92479,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00556/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00557/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 557"],
- "sv": [
-
- "Bild 557"
-
- ],
-
- "en": [
-
- "Image 557"
-
- ]
-
+ "en": ["Image 557"]
},
"width": 6016,
@@ -158313,199 +92506,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00557"]}
-
+ "value": { "none": ["A0067545_00557"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00557"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00557"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00557"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00557"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00557.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00557"]},
+ "label": { "en": ["ALTO XML for A0067545_00557"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00557/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00557/annotation",
"type": "Annotation",
@@ -158513,7 +92612,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00557/full/max/0/default.jpg",
"type": "Image",
@@ -158525,9 +92623,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00557",
"type": "ImageService3",
@@ -158537,11 +92633,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00557",
"@type": "ImageService2",
@@ -158551,45 +92645,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00557/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00558/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 558"],
- "sv": [
-
- "Bild 558"
-
- ],
-
- "en": [
-
- "Image 558"
-
- ]
-
+ "en": ["Image 558"]
},
"width": 6016,
@@ -158597,199 +92672,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00558"]}
-
+ "value": { "none": ["A0067545_00558"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00558"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00558"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00558"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00558"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9962
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9962
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00558.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00558"]},
+ "label": { "en": ["ALTO XML for A0067545_00558"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00558/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00558/annotation",
"type": "Annotation",
@@ -158797,7 +92778,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00558/full/max/0/default.jpg",
"type": "Image",
@@ -158809,9 +92789,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00558",
"type": "ImageService3",
@@ -158821,11 +92799,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00558",
"@type": "ImageService2",
@@ -158835,45 +92811,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00558/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00559/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 559"],
- "sv": [
-
- "Bild 559"
-
- ],
-
- "en": [
-
- "Image 559"
-
- ]
-
+ "en": ["Image 559"]
},
"width": 6016,
@@ -158881,199 +92838,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00559"]}
-
+ "value": { "none": ["A0067545_00559"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00559"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00559"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00559"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00559"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9967
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9967
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00559.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00559"]},
+ "label": { "en": ["ALTO XML for A0067545_00559"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00559/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00559/annotation",
"type": "Annotation",
@@ -159081,7 +92944,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00559/full/max/0/default.jpg",
"type": "Image",
@@ -159093,9 +92955,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00559",
"type": "ImageService3",
@@ -159105,11 +92965,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00559",
"@type": "ImageService2",
@@ -159119,45 +92977,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00559/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00560/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 560"],
- "sv": [
-
- "Bild 560"
-
- ],
-
- "en": [
-
- "Image 560"
-
- ]
-
+ "en": ["Image 560"]
},
"width": 5896,
@@ -159165,199 +93004,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00560"]}
-
+ "value": { "none": ["A0067545_00560"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00560"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00560"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00560"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00560"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00560.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00560"]},
+ "label": { "en": ["ALTO XML for A0067545_00560"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00560/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00560/annotation",
"type": "Annotation",
@@ -159365,7 +93110,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00560/full/max/0/default.jpg",
"type": "Image",
@@ -159377,9 +93121,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00560",
"type": "ImageService3",
@@ -159389,11 +93131,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00560",
"@type": "ImageService2",
@@ -159403,45 +93143,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00560/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00561/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 561"],
- "sv": [
-
- "Bild 561"
-
- ],
-
- "en": [
-
- "Image 561"
-
- ]
-
+ "en": ["Image 561"]
},
"width": 6016,
@@ -159449,199 +93170,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00561"]}
-
+ "value": { "none": ["A0067545_00561"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00561"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00561"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00561"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00561"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9928
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9928
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00561.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00561"]},
+ "label": { "en": ["ALTO XML for A0067545_00561"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00561/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00561/annotation",
"type": "Annotation",
@@ -159649,7 +93276,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00561/full/max/0/default.jpg",
"type": "Image",
@@ -159661,9 +93287,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00561",
"type": "ImageService3",
@@ -159673,11 +93297,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00561",
"@type": "ImageService2",
@@ -159687,45 +93309,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00561/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00562/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 562"],
- "sv": [
-
- "Bild 562"
-
- ],
-
- "en": [
-
- "Image 562"
-
- ]
-
+ "en": ["Image 562"]
},
"width": 5984,
@@ -159733,199 +93336,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00562"]}
-
+ "value": { "none": ["A0067545_00562"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00562"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00562"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00562"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00562"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9926
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9926
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00562.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00562"]},
+ "label": { "en": ["ALTO XML for A0067545_00562"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00562/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00562/annotation",
"type": "Annotation",
@@ -159933,7 +93442,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00562/full/max/0/default.jpg",
"type": "Image",
@@ -159945,9 +93453,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00562",
"type": "ImageService3",
@@ -159957,11 +93463,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00562",
"@type": "ImageService2",
@@ -159971,45 +93475,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00562/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00563/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 563"],
- "sv": [
-
- "Bild 563"
-
- ],
-
- "en": [
-
- "Image 563"
-
- ]
-
+ "en": ["Image 563"]
},
"width": 6016,
@@ -160017,199 +93502,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00563"]}
-
+ "value": { "none": ["A0067545_00563"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00563"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00563"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00563"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00563"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9863
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9863
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00563.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00563"]},
+ "label": { "en": ["ALTO XML for A0067545_00563"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00563/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00563/annotation",
"type": "Annotation",
@@ -160217,7 +93608,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00563/full/max/0/default.jpg",
"type": "Image",
@@ -160229,9 +93619,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00563",
"type": "ImageService3",
@@ -160241,11 +93629,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00563",
"@type": "ImageService2",
@@ -160255,45 +93641,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00563/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00564/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 564"],
- "sv": [
-
- "Bild 564"
-
- ],
-
- "en": [
-
- "Image 564"
-
- ]
-
+ "en": ["Image 564"]
},
"width": 6016,
@@ -160301,199 +93668,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00564"]}
-
+ "value": { "none": ["A0067545_00564"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00564"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00564"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00564"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00564"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00564.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00564"]},
+ "label": { "en": ["ALTO XML for A0067545_00564"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00564/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00564/annotation",
"type": "Annotation",
@@ -160501,7 +93774,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00564/full/max/0/default.jpg",
"type": "Image",
@@ -160513,9 +93785,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00564",
"type": "ImageService3",
@@ -160525,11 +93795,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00564",
"@type": "ImageService2",
@@ -160539,45 +93807,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00564/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00565/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 565"],
- "sv": [
-
- "Bild 565"
-
- ],
-
- "en": [
-
- "Image 565"
-
- ]
-
+ "en": ["Image 565"]
},
"width": 6016,
@@ -160585,199 +93834,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00565"]}
-
+ "value": { "none": ["A0067545_00565"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00565"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00565"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00565"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00565"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00565.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00565"]},
+ "label": { "en": ["ALTO XML for A0067545_00565"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00565/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00565/annotation",
"type": "Annotation",
@@ -160785,7 +93940,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00565/full/max/0/default.jpg",
"type": "Image",
@@ -160797,9 +93951,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00565",
"type": "ImageService3",
@@ -160809,11 +93961,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00565",
"@type": "ImageService2",
@@ -160823,45 +93973,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00565/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00566/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 566"],
- "sv": [
-
- "Bild 566"
-
- ],
-
- "en": [
-
- "Image 566"
-
- ]
-
+ "en": ["Image 566"]
},
"width": 6016,
@@ -160869,199 +94000,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00566"]}
-
+ "value": { "none": ["A0067545_00566"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00566"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00566"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00566"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00566"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9787
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9787
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00566.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00566"]},
+ "label": { "en": ["ALTO XML for A0067545_00566"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00566/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00566/annotation",
"type": "Annotation",
@@ -161069,7 +94106,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00566/full/max/0/default.jpg",
"type": "Image",
@@ -161081,9 +94117,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00566",
"type": "ImageService3",
@@ -161093,11 +94127,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00566",
"@type": "ImageService2",
@@ -161107,45 +94139,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00566/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00567/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 567"],
- "sv": [
-
- "Bild 567"
-
- ],
-
- "en": [
-
- "Image 567"
-
- ]
-
+ "en": ["Image 567"]
},
"width": 5896,
@@ -161153,199 +94166,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00567"]}
-
+ "value": { "none": ["A0067545_00567"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00567"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00567"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00567"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00567"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9936
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9936
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00567.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00567"]},
+ "label": { "en": ["ALTO XML for A0067545_00567"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00567/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00567/annotation",
"type": "Annotation",
@@ -161353,7 +94272,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00567/full/max/0/default.jpg",
"type": "Image",
@@ -161365,9 +94283,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00567",
"type": "ImageService3",
@@ -161377,11 +94293,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00567",
"@type": "ImageService2",
@@ -161391,45 +94305,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00567/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00568/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 568"],
- "sv": [
-
- "Bild 568"
-
- ],
-
- "en": [
-
- "Image 568"
-
- ]
-
+ "en": ["Image 568"]
},
"width": 6016,
@@ -161437,199 +94332,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00568"]}
-
+ "value": { "none": ["A0067545_00568"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00568"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00568"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00568"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00568"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9977
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9977
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00568.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00568"]},
+ "label": { "en": ["ALTO XML for A0067545_00568"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00568/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00568/annotation",
"type": "Annotation",
@@ -161637,7 +94438,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00568/full/max/0/default.jpg",
"type": "Image",
@@ -161649,9 +94449,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00568",
"type": "ImageService3",
@@ -161661,11 +94459,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00568",
"@type": "ImageService2",
@@ -161675,45 +94471,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00568/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00569/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 569"],
- "sv": [
-
- "Bild 569"
-
- ],
-
- "en": [
-
- "Image 569"
-
- ]
-
+ "en": ["Image 569"]
},
"width": 6016,
@@ -161721,199 +94498,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00569"]}
-
+ "value": { "none": ["A0067545_00569"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00569"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00569"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00569"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00569"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00569.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00569"]},
+ "label": { "en": ["ALTO XML for A0067545_00569"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00569/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00569/annotation",
"type": "Annotation",
@@ -161921,7 +94604,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00569/full/max/0/default.jpg",
"type": "Image",
@@ -161933,9 +94615,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00569",
"type": "ImageService3",
@@ -161945,11 +94625,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00569",
"@type": "ImageService2",
@@ -161959,45 +94637,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00569/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00570/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 570"],
- "sv": [
-
- "Bild 570"
-
- ],
-
- "en": [
-
- "Image 570"
-
- ]
-
+ "en": ["Image 570"]
},
"width": 6016,
@@ -162005,199 +94664,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00570"]}
-
+ "value": { "none": ["A0067545_00570"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00570"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00570"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00570"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00570"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9976
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9976
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00570.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00570"]},
+ "label": { "en": ["ALTO XML for A0067545_00570"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00570/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00570/annotation",
"type": "Annotation",
@@ -162205,7 +94770,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00570/full/max/0/default.jpg",
"type": "Image",
@@ -162217,9 +94781,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00570",
"type": "ImageService3",
@@ -162229,11 +94791,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00570",
"@type": "ImageService2",
@@ -162243,45 +94803,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00570/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00571/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 571"],
- "sv": [
-
- "Bild 571"
-
- ],
-
- "en": [
-
- "Image 571"
-
- ]
-
+ "en": ["Image 571"]
},
"width": 6016,
@@ -162289,199 +94830,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00571"]}
-
+ "value": { "none": ["A0067545_00571"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00571"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00571"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00571"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00571"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9977
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9977
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00571.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00571"]},
+ "label": { "en": ["ALTO XML for A0067545_00571"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00571/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00571/annotation",
"type": "Annotation",
@@ -162489,7 +94936,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00571/full/max/0/default.jpg",
"type": "Image",
@@ -162501,9 +94947,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00571",
"type": "ImageService3",
@@ -162513,11 +94957,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00571",
"@type": "ImageService2",
@@ -162527,45 +94969,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00571/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00572/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 572"],
- "sv": [
-
- "Bild 572"
-
- ],
-
- "en": [
-
- "Image 572"
-
- ]
-
+ "en": ["Image 572"]
},
"width": 5864,
@@ -162573,199 +94996,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00572"]}
-
+ "value": { "none": ["A0067545_00572"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00572"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00572"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00572"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00572"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9966
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9966
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00572.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00572"]},
+ "label": { "en": ["ALTO XML for A0067545_00572"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00572/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00572/annotation",
"type": "Annotation",
@@ -162773,7 +95102,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00572/full/max/0/default.jpg",
"type": "Image",
@@ -162785,9 +95113,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00572",
"type": "ImageService3",
@@ -162797,11 +95123,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00572",
"@type": "ImageService2",
@@ -162811,45 +95135,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00572/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00573/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 573"],
- "sv": [
-
- "Bild 573"
-
- ],
-
- "en": [
-
- "Image 573"
-
- ]
-
+ "en": ["Image 573"]
},
"width": 5864,
@@ -162857,199 +95162,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00573"]}
-
+ "value": { "none": ["A0067545_00573"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00573"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00573"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00573"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00573"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00573.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00573"]},
+ "label": { "en": ["ALTO XML for A0067545_00573"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00573/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00573/annotation",
"type": "Annotation",
@@ -163057,7 +95268,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00573/full/max/0/default.jpg",
"type": "Image",
@@ -163069,9 +95279,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00573",
"type": "ImageService3",
@@ -163081,11 +95289,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00573",
"@type": "ImageService2",
@@ -163095,45 +95301,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00573/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00574/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 574"],
- "sv": [
-
- "Bild 574"
-
- ],
-
- "en": [
-
- "Image 574"
-
- ]
-
+ "en": ["Image 574"]
},
"width": 5864,
@@ -163141,199 +95328,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00574"]}
-
+ "value": { "none": ["A0067545_00574"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00574"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00574"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00574"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00574"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9974
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9974
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00574.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00574"]},
+ "label": { "en": ["ALTO XML for A0067545_00574"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00574/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00574/annotation",
"type": "Annotation",
@@ -163341,7 +95434,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00574/full/max/0/default.jpg",
"type": "Image",
@@ -163353,9 +95445,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00574",
"type": "ImageService3",
@@ -163365,11 +95455,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00574",
"@type": "ImageService2",
@@ -163379,45 +95467,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00574/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00575/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 575"],
- "sv": [
-
- "Bild 575"
-
- ],
-
- "en": [
-
- "Image 575"
-
- ]
-
+ "en": ["Image 575"]
},
"width": 5896,
@@ -163425,199 +95494,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00575"]}
-
+ "value": { "none": ["A0067545_00575"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00575"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00575"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00575"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00575"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9952
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9952
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00575.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00575"]},
+ "label": { "en": ["ALTO XML for A0067545_00575"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00575/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00575/annotation",
"type": "Annotation",
@@ -163625,7 +95600,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00575/full/max/0/default.jpg",
"type": "Image",
@@ -163637,9 +95611,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00575",
"type": "ImageService3",
@@ -163649,11 +95621,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00575",
"@type": "ImageService2",
@@ -163663,45 +95633,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00575/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00576/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 576"],
- "sv": [
-
- "Bild 576"
-
- ],
-
- "en": [
-
- "Image 576"
-
- ]
-
+ "en": ["Image 576"]
},
"width": 5896,
@@ -163709,199 +95660,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00576"]}
-
+ "value": { "none": ["A0067545_00576"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00576"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00576"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00576"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00576"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9977
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9977
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00576.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00576"]},
+ "label": { "en": ["ALTO XML for A0067545_00576"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00576/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00576/annotation",
"type": "Annotation",
@@ -163909,7 +95766,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00576/full/max/0/default.jpg",
"type": "Image",
@@ -163921,9 +95777,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00576",
"type": "ImageService3",
@@ -163933,11 +95787,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00576",
"@type": "ImageService2",
@@ -163947,45 +95799,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00576/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00577/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 577"],
- "sv": [
-
- "Bild 577"
-
- ],
-
- "en": [
-
- "Image 577"
-
- ]
-
+ "en": ["Image 577"]
},
"width": 6016,
@@ -163993,199 +95826,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00577"]}
-
+ "value": { "none": ["A0067545_00577"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00577"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00577"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00577"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00577"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9973
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9973
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00577.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00577"]},
+ "label": { "en": ["ALTO XML for A0067545_00577"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00577/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00577/annotation",
"type": "Annotation",
@@ -164193,7 +95932,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00577/full/max/0/default.jpg",
"type": "Image",
@@ -164205,9 +95943,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00577",
"type": "ImageService3",
@@ -164217,11 +95953,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00577",
"@type": "ImageService2",
@@ -164231,45 +95965,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00577/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00578/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 578"],
- "sv": [
-
- "Bild 578"
-
- ],
-
- "en": [
-
- "Image 578"
-
- ]
-
+ "en": ["Image 578"]
},
"width": 6016,
@@ -164277,199 +95992,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00578"]}
-
+ "value": { "none": ["A0067545_00578"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00578"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00578"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00578"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00578"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9976
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9976
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00578.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00578"]},
+ "label": { "en": ["ALTO XML for A0067545_00578"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00578/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00578/annotation",
"type": "Annotation",
@@ -164477,7 +96098,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00578/full/max/0/default.jpg",
"type": "Image",
@@ -164489,9 +96109,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00578",
"type": "ImageService3",
@@ -164501,11 +96119,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00578",
"@type": "ImageService2",
@@ -164515,45 +96131,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00578/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00579/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 579"],
- "sv": [
-
- "Bild 579"
-
- ],
-
- "en": [
-
- "Image 579"
-
- ]
-
+ "en": ["Image 579"]
},
"width": 5864,
@@ -164561,199 +96158,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00579"]}
-
+ "value": { "none": ["A0067545_00579"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00579"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00579"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00579"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00579"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9964
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9964
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00579.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00579"]},
+ "label": { "en": ["ALTO XML for A0067545_00579"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00579/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00579/annotation",
"type": "Annotation",
@@ -164761,7 +96264,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00579/full/max/0/default.jpg",
"type": "Image",
@@ -164773,9 +96275,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00579",
"type": "ImageService3",
@@ -164785,11 +96285,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00579",
"@type": "ImageService2",
@@ -164799,45 +96297,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00579/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00580/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 580"],
- "sv": [
-
- "Bild 580"
-
- ],
-
- "en": [
-
- "Image 580"
-
- ]
-
+ "en": ["Image 580"]
},
"width": 5864,
@@ -164845,199 +96324,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00580"]}
-
+ "value": { "none": ["A0067545_00580"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00580"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00580"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00580"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00580"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9872
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9872
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00580.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00580"]},
+ "label": { "en": ["ALTO XML for A0067545_00580"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00580/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00580/annotation",
"type": "Annotation",
@@ -165045,7 +96430,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00580/full/max/0/default.jpg",
"type": "Image",
@@ -165057,9 +96441,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00580",
"type": "ImageService3",
@@ -165069,11 +96451,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00580",
"@type": "ImageService2",
@@ -165083,45 +96463,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00580/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00581/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 581"],
- "sv": [
-
- "Bild 581"
-
- ],
-
- "en": [
-
- "Image 581"
-
- ]
-
+ "en": ["Image 581"]
},
"width": 5984,
@@ -165129,199 +96490,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00581"]}
-
+ "value": { "none": ["A0067545_00581"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00581"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00581"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00581"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00581"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9894
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9894
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00581.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00581"]},
+ "label": { "en": ["ALTO XML for A0067545_00581"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00581/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00581/annotation",
"type": "Annotation",
@@ -165329,7 +96596,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00581/full/max/0/default.jpg",
"type": "Image",
@@ -165341,9 +96607,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00581",
"type": "ImageService3",
@@ -165353,11 +96617,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00581",
"@type": "ImageService2",
@@ -165367,45 +96629,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00581/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00582/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 582"],
- "sv": [
-
- "Bild 582"
-
- ],
-
- "en": [
-
- "Image 582"
-
- ]
-
+ "en": ["Image 582"]
},
"width": 5864,
@@ -165413,199 +96656,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00582"]}
-
+ "value": { "none": ["A0067545_00582"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00582"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00582"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00582"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00582"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9902
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9902
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00582.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00582"]},
+ "label": { "en": ["ALTO XML for A0067545_00582"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00582/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00582/annotation",
"type": "Annotation",
@@ -165613,7 +96762,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00582/full/max/0/default.jpg",
"type": "Image",
@@ -165625,9 +96773,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00582",
"type": "ImageService3",
@@ -165637,11 +96783,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00582",
"@type": "ImageService2",
@@ -165651,45 +96795,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00582/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00583/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 583"],
- "sv": [
-
- "Bild 583"
-
- ],
-
- "en": [
-
- "Image 583"
-
- ]
-
+ "en": ["Image 583"]
},
"width": 6016,
@@ -165697,199 +96822,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00583"]}
-
+ "value": { "none": ["A0067545_00583"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00583"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00583"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00583"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00583"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9671
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9671
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00583.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00583"]},
+ "label": { "en": ["ALTO XML for A0067545_00583"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00583/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00583/annotation",
"type": "Annotation",
@@ -165897,7 +96928,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00583/full/max/0/default.jpg",
"type": "Image",
@@ -165909,9 +96939,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00583",
"type": "ImageService3",
@@ -165921,11 +96949,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00583",
"@type": "ImageService2",
@@ -165935,45 +96961,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00583/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00584/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 584"],
- "sv": [
-
- "Bild 584"
-
- ],
-
- "en": [
-
- "Image 584"
-
- ]
-
+ "en": ["Image 584"]
},
"width": 6016,
@@ -165981,199 +96988,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00584"]}
-
+ "value": { "none": ["A0067545_00584"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00584"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00584"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00584"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00584"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9883
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9883
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00584.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00584"]},
+ "label": { "en": ["ALTO XML for A0067545_00584"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00584/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00584/annotation",
"type": "Annotation",
@@ -166181,7 +97094,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00584/full/max/0/default.jpg",
"type": "Image",
@@ -166193,9 +97105,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00584",
"type": "ImageService3",
@@ -166205,11 +97115,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00584",
"@type": "ImageService2",
@@ -166219,45 +97127,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00584/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00585/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 585"],
- "sv": [
-
- "Bild 585"
-
- ],
-
- "en": [
-
- "Image 585"
-
- ]
-
+ "en": ["Image 585"]
},
"width": 5864,
@@ -166265,199 +97154,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00585"]}
-
+ "value": { "none": ["A0067545_00585"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00585"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00585"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00585"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00585"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9949
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9949
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00585.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00585"]},
+ "label": { "en": ["ALTO XML for A0067545_00585"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00585/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00585/annotation",
"type": "Annotation",
@@ -166465,7 +97260,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00585/full/max/0/default.jpg",
"type": "Image",
@@ -166477,9 +97271,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00585",
"type": "ImageService3",
@@ -166489,11 +97281,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00585",
"@type": "ImageService2",
@@ -166503,45 +97293,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00585/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00586/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 586"],
- "sv": [
-
- "Bild 586"
-
- ],
-
- "en": [
-
- "Image 586"
-
- ]
-
+ "en": ["Image 586"]
},
"width": 6016,
@@ -166549,199 +97320,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00586"]}
-
+ "value": { "none": ["A0067545_00586"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00586"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00586"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00586"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00586"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9963
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9963
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00586.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00586"]},
+ "label": { "en": ["ALTO XML for A0067545_00586"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00586/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00586/annotation",
"type": "Annotation",
@@ -166749,7 +97426,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00586/full/max/0/default.jpg",
"type": "Image",
@@ -166761,9 +97437,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00586",
"type": "ImageService3",
@@ -166773,11 +97447,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00586",
"@type": "ImageService2",
@@ -166787,45 +97459,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00586/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00587/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 587"],
- "sv": [
-
- "Bild 587"
-
- ],
-
- "en": [
-
- "Image 587"
-
- ]
-
+ "en": ["Image 587"]
},
"width": 5896,
@@ -166833,199 +97486,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00587"]}
-
+ "value": { "none": ["A0067545_00587"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00587"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00587"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00587"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00587"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9973
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9973
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00587.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00587"]},
+ "label": { "en": ["ALTO XML for A0067545_00587"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00587/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00587/annotation",
"type": "Annotation",
@@ -167033,7 +97592,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00587/full/max/0/default.jpg",
"type": "Image",
@@ -167045,9 +97603,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00587",
"type": "ImageService3",
@@ -167057,11 +97613,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00587",
"@type": "ImageService2",
@@ -167071,45 +97625,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00587/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00588/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 588"],
- "sv": [
-
- "Bild 588"
-
- ],
-
- "en": [
-
- "Image 588"
-
- ]
-
+ "en": ["Image 588"]
},
"width": 5984,
@@ -167117,199 +97652,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00588"]}
-
+ "value": { "none": ["A0067545_00588"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00588"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00588"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00588"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00588"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9897
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9897
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00588.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00588"]},
+ "label": { "en": ["ALTO XML for A0067545_00588"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00588/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00588/annotation",
"type": "Annotation",
@@ -167317,7 +97758,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00588/full/max/0/default.jpg",
"type": "Image",
@@ -167329,9 +97769,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00588",
"type": "ImageService3",
@@ -167341,11 +97779,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00588",
"@type": "ImageService2",
@@ -167355,45 +97791,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00588/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00589/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 589"],
- "sv": [
-
- "Bild 589"
-
- ],
-
- "en": [
-
- "Image 589"
-
- ]
-
+ "en": ["Image 589"]
},
"width": 5896,
@@ -167401,199 +97818,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00589"]}
-
+ "value": { "none": ["A0067545_00589"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00589"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00589"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00589"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00589"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9899
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9899
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00589.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00589"]},
+ "label": { "en": ["ALTO XML for A0067545_00589"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00589/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00589/annotation",
"type": "Annotation",
@@ -167601,7 +97924,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00589/full/max/0/default.jpg",
"type": "Image",
@@ -167613,9 +97935,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00589",
"type": "ImageService3",
@@ -167625,11 +97945,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00589",
"@type": "ImageService2",
@@ -167639,45 +97957,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00589/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00590/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 590"],
- "sv": [
-
- "Bild 590"
-
- ],
-
- "en": [
-
- "Image 590"
-
- ]
-
+ "en": ["Image 590"]
},
"width": 6016,
@@ -167685,199 +97984,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00590"]}
-
+ "value": { "none": ["A0067545_00590"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00590"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00590"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00590"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00590"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9908
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9908
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00590.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00590"]},
+ "label": { "en": ["ALTO XML for A0067545_00590"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00590/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00590/annotation",
"type": "Annotation",
@@ -167885,7 +98090,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00590/full/max/0/default.jpg",
"type": "Image",
@@ -167897,9 +98101,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00590",
"type": "ImageService3",
@@ -167909,11 +98111,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00590",
"@type": "ImageService2",
@@ -167923,45 +98123,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00590/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00591/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 591"],
- "sv": [
-
- "Bild 591"
-
- ],
-
- "en": [
-
- "Image 591"
-
- ]
-
+ "en": ["Image 591"]
},
"width": 5864,
@@ -167969,199 +98150,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00591"]}
-
+ "value": { "none": ["A0067545_00591"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00591"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00591"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00591"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00591"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9976
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9976
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00591.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00591"]},
+ "label": { "en": ["ALTO XML for A0067545_00591"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00591/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00591/annotation",
"type": "Annotation",
@@ -168169,7 +98256,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00591/full/max/0/default.jpg",
"type": "Image",
@@ -168181,9 +98267,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00591",
"type": "ImageService3",
@@ -168193,11 +98277,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00591",
"@type": "ImageService2",
@@ -168207,45 +98289,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00591/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00592/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 592"],
- "sv": [
-
- "Bild 592"
-
- ],
-
- "en": [
-
- "Image 592"
-
- ]
-
+ "en": ["Image 592"]
},
"width": 5896,
@@ -168253,199 +98316,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00592"]}
-
+ "value": { "none": ["A0067545_00592"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00592"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00592"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00592"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00592"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00592.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00592"]},
+ "label": { "en": ["ALTO XML for A0067545_00592"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00592/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00592/annotation",
"type": "Annotation",
@@ -168453,7 +98422,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00592/full/max/0/default.jpg",
"type": "Image",
@@ -168465,9 +98433,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00592",
"type": "ImageService3",
@@ -168477,11 +98443,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00592",
"@type": "ImageService2",
@@ -168491,45 +98455,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00592/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00593/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 593"],
- "sv": [
-
- "Bild 593"
-
- ],
-
- "en": [
-
- "Image 593"
-
- ]
-
+ "en": ["Image 593"]
},
"width": 6016,
@@ -168537,199 +98482,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00593"]}
-
+ "value": { "none": ["A0067545_00593"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00593"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00593"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00593"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00593"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00593.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00593"]},
+ "label": { "en": ["ALTO XML for A0067545_00593"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00593/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00593/annotation",
"type": "Annotation",
@@ -168737,7 +98588,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00593/full/max/0/default.jpg",
"type": "Image",
@@ -168749,9 +98599,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00593",
"type": "ImageService3",
@@ -168761,11 +98609,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00593",
"@type": "ImageService2",
@@ -168775,45 +98621,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00593/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00594/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 594"],
- "sv": [
-
- "Bild 594"
-
- ],
-
- "en": [
-
- "Image 594"
-
- ]
-
+ "en": ["Image 594"]
},
"width": 6016,
@@ -168821,199 +98648,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00594"]}
-
+ "value": { "none": ["A0067545_00594"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00594"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00594"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00594"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00594"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00594.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00594"]},
+ "label": { "en": ["ALTO XML for A0067545_00594"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00594/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00594/annotation",
"type": "Annotation",
@@ -169021,7 +98754,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00594/full/max/0/default.jpg",
"type": "Image",
@@ -169033,9 +98765,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00594",
"type": "ImageService3",
@@ -169045,11 +98775,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00594",
"@type": "ImageService2",
@@ -169059,45 +98787,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00594/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00595/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 595"],
- "sv": [
-
- "Bild 595"
-
- ],
-
- "en": [
-
- "Image 595"
-
- ]
-
+ "en": ["Image 595"]
},
"width": 6016,
@@ -169105,199 +98814,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00595"]}
-
+ "value": { "none": ["A0067545_00595"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00595"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00595"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00595"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00595"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00595.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00595"]},
+ "label": { "en": ["ALTO XML for A0067545_00595"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00595/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00595/annotation",
"type": "Annotation",
@@ -169305,7 +98920,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00595/full/max/0/default.jpg",
"type": "Image",
@@ -169317,9 +98931,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00595",
"type": "ImageService3",
@@ -169329,11 +98941,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00595",
"@type": "ImageService2",
@@ -169343,45 +98953,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00595/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00596/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 596"],
- "sv": [
-
- "Bild 596"
-
- ],
-
- "en": [
-
- "Image 596"
-
- ]
-
+ "en": ["Image 596"]
},
"width": 5800,
@@ -169389,199 +98980,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00596"]}
-
+ "value": { "none": ["A0067545_00596"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00596"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00596"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00596"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00596"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9971
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9971
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00596.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00596"]},
+ "label": { "en": ["ALTO XML for A0067545_00596"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00596/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00596/annotation",
"type": "Annotation",
@@ -169589,7 +99086,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00596/full/max/0/default.jpg",
"type": "Image",
@@ -169601,9 +99097,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00596",
"type": "ImageService3",
@@ -169613,11 +99107,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00596",
"@type": "ImageService2",
@@ -169627,45 +99119,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00596/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00597/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 597"],
- "sv": [
-
- "Bild 597"
-
- ],
-
- "en": [
-
- "Image 597"
-
- ]
-
+ "en": ["Image 597"]
},
"width": 5984,
@@ -169673,199 +99146,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00597"]}
-
+ "value": { "none": ["A0067545_00597"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00597"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00597"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00597"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00597"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00597.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00597"]},
+ "label": { "en": ["ALTO XML for A0067545_00597"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00597/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00597/annotation",
"type": "Annotation",
@@ -169873,7 +99252,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00597/full/max/0/default.jpg",
"type": "Image",
@@ -169885,9 +99263,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00597",
"type": "ImageService3",
@@ -169897,11 +99273,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00597",
"@type": "ImageService2",
@@ -169911,45 +99285,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00597/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00598/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 598"],
- "sv": [
-
- "Bild 598"
-
- ],
-
- "en": [
-
- "Image 598"
-
- ]
-
+ "en": ["Image 598"]
},
"width": 5864,
@@ -169957,199 +99312,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00598"]}
-
+ "value": { "none": ["A0067545_00598"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00598"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00598"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00598"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00598"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9972
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9972
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00598.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00598"]},
+ "label": { "en": ["ALTO XML for A0067545_00598"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00598/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00598/annotation",
"type": "Annotation",
@@ -170157,7 +99418,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00598/full/max/0/default.jpg",
"type": "Image",
@@ -170169,9 +99429,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00598",
"type": "ImageService3",
@@ -170181,11 +99439,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00598",
"@type": "ImageService2",
@@ -170195,45 +99451,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00598/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00599/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 599"],
- "sv": [
-
- "Bild 599"
-
- ],
-
- "en": [
-
- "Image 599"
-
- ]
-
+ "en": ["Image 599"]
},
"width": 5984,
@@ -170241,199 +99478,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00599"]}
-
+ "value": { "none": ["A0067545_00599"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00599"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00599"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00599"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00599"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00599.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00599"]},
+ "label": { "en": ["ALTO XML for A0067545_00599"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00599/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00599/annotation",
"type": "Annotation",
@@ -170441,7 +99584,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00599/full/max/0/default.jpg",
"type": "Image",
@@ -170453,9 +99595,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00599",
"type": "ImageService3",
@@ -170465,11 +99605,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00599",
"@type": "ImageService2",
@@ -170479,45 +99617,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00599/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00600/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 600"],
- "sv": [
-
- "Bild 600"
-
- ],
-
- "en": [
-
- "Image 600"
-
- ]
-
+ "en": ["Image 600"]
},
"width": 6016,
@@ -170525,199 +99644,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00600"]}
-
+ "value": { "none": ["A0067545_00600"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00600"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00600"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00600"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00600"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00600.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00600"]},
+ "label": { "en": ["ALTO XML for A0067545_00600"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00600/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00600/annotation",
"type": "Annotation",
@@ -170725,7 +99750,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00600/full/max/0/default.jpg",
"type": "Image",
@@ -170737,9 +99761,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00600",
"type": "ImageService3",
@@ -170749,11 +99771,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00600",
"@type": "ImageService2",
@@ -170763,45 +99783,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00600/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00601/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 601"],
- "sv": [
-
- "Bild 601"
-
- ],
-
- "en": [
-
- "Image 601"
-
- ]
-
+ "en": ["Image 601"]
},
"width": 5896,
@@ -170809,199 +99810,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00601"]}
-
+ "value": { "none": ["A0067545_00601"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00601"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00601"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00601"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00601"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00601.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00601"]},
+ "label": { "en": ["ALTO XML for A0067545_00601"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00601/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00601/annotation",
"type": "Annotation",
@@ -171009,7 +99916,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00601/full/max/0/default.jpg",
"type": "Image",
@@ -171021,9 +99927,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00601",
"type": "ImageService3",
@@ -171033,11 +99937,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00601",
"@type": "ImageService2",
@@ -171047,45 +99949,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00601/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00602/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 602"],
- "sv": [
-
- "Bild 602"
-
- ],
-
- "en": [
-
- "Image 602"
-
- ]
-
+ "en": ["Image 602"]
},
"width": 6016,
@@ -171093,199 +99976,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00602"]}
-
+ "value": { "none": ["A0067545_00602"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00602"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00602"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00602"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00602"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00602.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00602"]},
+ "label": { "en": ["ALTO XML for A0067545_00602"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00602/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00602/annotation",
"type": "Annotation",
@@ -171293,7 +100082,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00602/full/max/0/default.jpg",
"type": "Image",
@@ -171305,9 +100093,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00602",
"type": "ImageService3",
@@ -171317,11 +100103,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00602",
"@type": "ImageService2",
@@ -171331,45 +100115,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00602/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00603/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 603"],
- "sv": [
-
- "Bild 603"
-
- ],
-
- "en": [
-
- "Image 603"
-
- ]
-
+ "en": ["Image 603"]
},
"width": 5896,
@@ -171377,199 +100142,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00603"]}
-
+ "value": { "none": ["A0067545_00603"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00603"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00603"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00603"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00603"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9945
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9945
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00603.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00603"]},
+ "label": { "en": ["ALTO XML for A0067545_00603"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00603/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00603/annotation",
"type": "Annotation",
@@ -171577,7 +100248,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00603/full/max/0/default.jpg",
"type": "Image",
@@ -171589,9 +100259,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00603",
"type": "ImageService3",
@@ -171601,11 +100269,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00603",
"@type": "ImageService2",
@@ -171615,45 +100281,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00603/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00604/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 604"],
- "sv": [
-
- "Bild 604"
-
- ],
-
- "en": [
-
- "Image 604"
-
- ]
-
+ "en": ["Image 604"]
},
"width": 6016,
@@ -171661,199 +100308,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00604"]}
-
+ "value": { "none": ["A0067545_00604"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00604"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00604"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00604"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00604"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9977
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9977
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00604.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00604"]},
+ "label": { "en": ["ALTO XML for A0067545_00604"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00604/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00604/annotation",
"type": "Annotation",
@@ -171861,7 +100414,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00604/full/max/0/default.jpg",
"type": "Image",
@@ -171873,9 +100425,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00604",
"type": "ImageService3",
@@ -171885,11 +100435,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00604",
"@type": "ImageService2",
@@ -171899,45 +100447,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00604/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00605/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 605"],
- "sv": [
-
- "Bild 605"
-
- ],
-
- "en": [
-
- "Image 605"
-
- ]
-
+ "en": ["Image 605"]
},
"width": 6016,
@@ -171945,199 +100474,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00605"]}
-
+ "value": { "none": ["A0067545_00605"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00605"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00605"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00605"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00605"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00605.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00605"]},
+ "label": { "en": ["ALTO XML for A0067545_00605"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00605/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00605/annotation",
"type": "Annotation",
@@ -172145,7 +100580,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00605/full/max/0/default.jpg",
"type": "Image",
@@ -172157,9 +100591,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00605",
"type": "ImageService3",
@@ -172169,11 +100601,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00605",
"@type": "ImageService2",
@@ -172183,45 +100613,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00605/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00606/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 606"],
- "sv": [
-
- "Bild 606"
-
- ],
-
- "en": [
-
- "Image 606"
-
- ]
-
+ "en": ["Image 606"]
},
"width": 5864,
@@ -172229,199 +100640,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00606"]}
-
+ "value": { "none": ["A0067545_00606"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00606"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00606"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00606"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00606"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9970
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9970
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00606.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00606"]},
+ "label": { "en": ["ALTO XML for A0067545_00606"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00606/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00606/annotation",
"type": "Annotation",
@@ -172429,7 +100746,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00606/full/max/0/default.jpg",
"type": "Image",
@@ -172441,9 +100757,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00606",
"type": "ImageService3",
@@ -172453,11 +100767,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00606",
"@type": "ImageService2",
@@ -172467,45 +100779,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00606/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00607/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 607"],
- "sv": [
-
- "Bild 607"
-
- ],
-
- "en": [
-
- "Image 607"
-
- ]
-
+ "en": ["Image 607"]
},
"width": 5896,
@@ -172513,199 +100806,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00607"]}
-
+ "value": { "none": ["A0067545_00607"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00607"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00607"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00607"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00607"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9976
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9976
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00607.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00607"]},
+ "label": { "en": ["ALTO XML for A0067545_00607"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00607/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00607/annotation",
"type": "Annotation",
@@ -172713,7 +100912,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00607/full/max/0/default.jpg",
"type": "Image",
@@ -172725,9 +100923,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00607",
"type": "ImageService3",
@@ -172737,11 +100933,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00607",
"@type": "ImageService2",
@@ -172751,45 +100945,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00607/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00608/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 608"],
- "sv": [
-
- "Bild 608"
-
- ],
-
- "en": [
-
- "Image 608"
-
- ]
-
+ "en": ["Image 608"]
},
"width": 5896,
@@ -172797,199 +100972,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00608"]}
-
+ "value": { "none": ["A0067545_00608"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00608"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00608"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00608"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00608"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9962
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9962
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00608.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00608"]},
+ "label": { "en": ["ALTO XML for A0067545_00608"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00608/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00608/annotation",
"type": "Annotation",
@@ -172997,7 +101078,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00608/full/max/0/default.jpg",
"type": "Image",
@@ -173009,9 +101089,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00608",
"type": "ImageService3",
@@ -173021,11 +101099,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00608",
"@type": "ImageService2",
@@ -173035,45 +101111,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00608/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00609/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 609"],
- "sv": [
-
- "Bild 609"
-
- ],
-
- "en": [
-
- "Image 609"
-
- ]
-
+ "en": ["Image 609"]
},
"width": 5864,
@@ -173081,199 +101138,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00609"]}
-
+ "value": { "none": ["A0067545_00609"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00609"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00609"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00609"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00609"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9975
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9975
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00609.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00609"]},
+ "label": { "en": ["ALTO XML for A0067545_00609"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00609/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00609/annotation",
"type": "Annotation",
@@ -173281,7 +101244,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00609/full/max/0/default.jpg",
"type": "Image",
@@ -173293,9 +101255,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00609",
"type": "ImageService3",
@@ -173305,11 +101265,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00609",
"@type": "ImageService2",
@@ -173319,45 +101277,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00609/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00610/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 610"],
- "sv": [
-
- "Bild 610"
-
- ],
-
- "en": [
-
- "Image 610"
-
- ]
-
+ "en": ["Image 610"]
},
"width": 6016,
@@ -173365,199 +101304,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00610"]}
-
+ "value": { "none": ["A0067545_00610"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00610"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00610"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00610"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00610"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9971
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9971
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00610.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00610"]},
+ "label": { "en": ["ALTO XML for A0067545_00610"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00610/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00610/annotation",
"type": "Annotation",
@@ -173565,7 +101410,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00610/full/max/0/default.jpg",
"type": "Image",
@@ -173577,9 +101421,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00610",
"type": "ImageService3",
@@ -173589,11 +101431,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00610",
"@type": "ImageService2",
@@ -173603,45 +101443,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00610/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00611/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 611"],
- "sv": [
-
- "Bild 611"
-
- ],
-
- "en": [
-
- "Image 611"
-
- ]
-
+ "en": ["Image 611"]
},
"width": 5896,
@@ -173649,199 +101470,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00611"]}
-
+ "value": { "none": ["A0067545_00611"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00611"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00611"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00611"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00611"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9974
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9974
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00611.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00611"]},
+ "label": { "en": ["ALTO XML for A0067545_00611"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00611/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00611/annotation",
"type": "Annotation",
@@ -173849,7 +101576,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00611/full/max/0/default.jpg",
"type": "Image",
@@ -173861,9 +101587,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00611",
"type": "ImageService3",
@@ -173873,11 +101597,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00611",
"@type": "ImageService2",
@@ -173887,45 +101609,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00611/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00612/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 612"],
- "sv": [
-
- "Bild 612"
-
- ],
-
- "en": [
-
- "Image 612"
-
- ]
-
+ "en": ["Image 612"]
},
"width": 5896,
@@ -173933,199 +101636,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00612"]}
-
+ "value": { "none": ["A0067545_00612"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00612"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00612"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00612"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00612"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9918
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9918
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00612.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00612"]},
+ "label": { "en": ["ALTO XML for A0067545_00612"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00612/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00612/annotation",
"type": "Annotation",
@@ -174133,7 +101742,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00612/full/max/0/default.jpg",
"type": "Image",
@@ -174145,9 +101753,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00612",
"type": "ImageService3",
@@ -174157,11 +101763,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00612",
"@type": "ImageService2",
@@ -174171,45 +101775,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00612/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00613/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 613"],
- "sv": [
-
- "Bild 613"
-
- ],
-
- "en": [
-
- "Image 613"
-
- ]
-
+ "en": ["Image 613"]
},
"width": 6016,
@@ -174217,199 +101802,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00613"]}
-
+ "value": { "none": ["A0067545_00613"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00613"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00613"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00613"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00613"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9904
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9904
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00613.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00613"]},
+ "label": { "en": ["ALTO XML for A0067545_00613"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00613/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00613/annotation",
"type": "Annotation",
@@ -174417,7 +101908,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00613/full/max/0/default.jpg",
"type": "Image",
@@ -174429,9 +101919,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00613",
"type": "ImageService3",
@@ -174441,11 +101929,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00613",
"@type": "ImageService2",
@@ -174455,45 +101941,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00613/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00614/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 614"],
- "sv": [
-
- "Bild 614"
-
- ],
-
- "en": [
-
- "Image 614"
-
- ]
-
+ "en": ["Image 614"]
},
"width": 5864,
@@ -174501,199 +101968,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00614"]}
-
+ "value": { "none": ["A0067545_00614"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00614"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00614"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00614"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00614"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00614.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00614"]},
+ "label": { "en": ["ALTO XML for A0067545_00614"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00614/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00614/annotation",
"type": "Annotation",
@@ -174701,7 +102074,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00614/full/max/0/default.jpg",
"type": "Image",
@@ -174713,9 +102085,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00614",
"type": "ImageService3",
@@ -174725,11 +102095,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00614",
"@type": "ImageService2",
@@ -174739,45 +102107,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00614/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00615/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 615"],
- "sv": [
-
- "Bild 615"
-
- ],
-
- "en": [
-
- "Image 615"
-
- ]
-
+ "en": ["Image 615"]
},
"width": 5864,
@@ -174785,199 +102134,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00615"]}
-
+ "value": { "none": ["A0067545_00615"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00615"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00615"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00615"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00615"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9937
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9937
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00615.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00615"]},
+ "label": { "en": ["ALTO XML for A0067545_00615"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00615/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00615/annotation",
"type": "Annotation",
@@ -174985,7 +102240,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00615/full/max/0/default.jpg",
"type": "Image",
@@ -174997,9 +102251,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00615",
"type": "ImageService3",
@@ -175009,11 +102261,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00615",
"@type": "ImageService2",
@@ -175023,45 +102273,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00615/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00616/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 616"],
- "sv": [
-
- "Bild 616"
-
- ],
-
- "en": [
-
- "Image 616"
-
- ]
-
+ "en": ["Image 616"]
},
"width": 5864,
@@ -175069,199 +102300,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00616"]}
-
+ "value": { "none": ["A0067545_00616"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00616"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00616"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00616"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00616"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9913
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9913
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00616.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00616"]},
+ "label": { "en": ["ALTO XML for A0067545_00616"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00616/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00616/annotation",
"type": "Annotation",
@@ -175269,7 +102406,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00616/full/max/0/default.jpg",
"type": "Image",
@@ -175281,9 +102417,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00616",
"type": "ImageService3",
@@ -175293,11 +102427,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00616",
"@type": "ImageService2",
@@ -175307,45 +102439,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00616/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00617/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 617"],
- "sv": [
-
- "Bild 617"
-
- ],
-
- "en": [
-
- "Image 617"
-
- ]
-
+ "en": ["Image 617"]
},
"width": 5984,
@@ -175353,199 +102466,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00617"]}
-
+ "value": { "none": ["A0067545_00617"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00617"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00617"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00617"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00617"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9724
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9724
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00617.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00617"]},
+ "label": { "en": ["ALTO XML for A0067545_00617"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00617/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00617/annotation",
"type": "Annotation",
@@ -175553,7 +102572,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00617/full/max/0/default.jpg",
"type": "Image",
@@ -175565,9 +102583,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00617",
"type": "ImageService3",
@@ -175577,11 +102593,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00617",
"@type": "ImageService2",
@@ -175591,45 +102605,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00617/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00618/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 618"],
- "sv": [
-
- "Bild 618"
-
- ],
-
- "en": [
-
- "Image 618"
-
- ]
-
+ "en": ["Image 618"]
},
"width": 6016,
@@ -175637,199 +102632,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00618"]}
-
+ "value": { "none": ["A0067545_00618"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00618"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00618"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00618"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00618"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9672
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9672
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00618.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00618"]},
+ "label": { "en": ["ALTO XML for A0067545_00618"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00618/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00618/annotation",
"type": "Annotation",
@@ -175837,7 +102738,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00618/full/max/0/default.jpg",
"type": "Image",
@@ -175849,9 +102749,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00618",
"type": "ImageService3",
@@ -175861,11 +102759,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00618",
"@type": "ImageService2",
@@ -175875,45 +102771,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00618/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00619/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 619"],
- "sv": [
-
- "Bild 619"
-
- ],
-
- "en": [
-
- "Image 619"
-
- ]
-
+ "en": ["Image 619"]
},
"width": 5896,
@@ -175921,199 +102798,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00619"]}
-
+ "value": { "none": ["A0067545_00619"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00619"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00619"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00619"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00619"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9462
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9462
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00619.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00619"]},
+ "label": { "en": ["ALTO XML for A0067545_00619"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00619/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00619/annotation",
"type": "Annotation",
@@ -176121,7 +102904,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00619/full/max/0/default.jpg",
"type": "Image",
@@ -176133,9 +102915,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00619",
"type": "ImageService3",
@@ -176145,11 +102925,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00619",
"@type": "ImageService2",
@@ -176159,45 +102937,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00619/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00620/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 620"],
- "sv": [
-
- "Bild 620"
-
- ],
-
- "en": [
-
- "Image 620"
-
- ]
-
+ "en": ["Image 620"]
},
"width": 5864,
@@ -176205,199 +102964,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00620"]}
-
+ "value": { "none": ["A0067545_00620"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00620"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00620"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00620"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00620"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9384
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9384
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00620.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00620"]},
+ "label": { "en": ["ALTO XML for A0067545_00620"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00620/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00620/annotation",
"type": "Annotation",
@@ -176405,7 +103070,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00620/full/max/0/default.jpg",
"type": "Image",
@@ -176417,9 +103081,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00620",
"type": "ImageService3",
@@ -176429,11 +103091,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00620",
"@type": "ImageService2",
@@ -176443,45 +103103,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00620/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00621/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 621"],
- "sv": [
-
- "Bild 621"
-
- ],
-
- "en": [
-
- "Image 621"
-
- ]
-
+ "en": ["Image 621"]
},
"width": 5864,
@@ -176489,199 +103130,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00621"]}
-
+ "value": { "none": ["A0067545_00621"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00621"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00621"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00621"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00621"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00621.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00621"]},
+ "label": { "en": ["ALTO XML for A0067545_00621"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00621/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00621/annotation",
"type": "Annotation",
@@ -176689,7 +103236,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00621/full/max/0/default.jpg",
"type": "Image",
@@ -176701,9 +103247,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00621",
"type": "ImageService3",
@@ -176713,11 +103257,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00621",
"@type": "ImageService2",
@@ -176727,45 +103269,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00621/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00622/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 622"],
- "sv": [
-
- "Bild 622"
-
- ],
-
- "en": [
-
- "Image 622"
-
- ]
-
+ "en": ["Image 622"]
},
"width": 5896,
@@ -176773,199 +103296,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00622"]}
-
+ "value": { "none": ["A0067545_00622"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00622"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00622"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00622"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00622"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9904
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9904
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00622.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00622"]},
+ "label": { "en": ["ALTO XML for A0067545_00622"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00622/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00622/annotation",
"type": "Annotation",
@@ -176973,7 +103402,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00622/full/max/0/default.jpg",
"type": "Image",
@@ -176985,9 +103413,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00622",
"type": "ImageService3",
@@ -176997,11 +103423,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00622",
"@type": "ImageService2",
@@ -177011,45 +103435,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00622/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00623/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 623"],
- "sv": [
-
- "Bild 623"
-
- ],
-
- "en": [
-
- "Image 623"
-
- ]
-
+ "en": ["Image 623"]
},
"width": 5896,
@@ -177057,199 +103462,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00623"]}
-
+ "value": { "none": ["A0067545_00623"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00623"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00623"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00623"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00623"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9930
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9930
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00623.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00623"]},
+ "label": { "en": ["ALTO XML for A0067545_00623"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00623/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00623/annotation",
"type": "Annotation",
@@ -177257,7 +103568,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00623/full/max/0/default.jpg",
"type": "Image",
@@ -177269,9 +103579,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00623",
"type": "ImageService3",
@@ -177281,11 +103589,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00623",
"@type": "ImageService2",
@@ -177295,45 +103601,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00623/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00624/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 624"],
- "sv": [
-
- "Bild 624"
-
- ],
-
- "en": [
-
- "Image 624"
-
- ]
-
+ "en": ["Image 624"]
},
"width": 5896,
@@ -177341,199 +103628,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00624"]}
-
+ "value": { "none": ["A0067545_00624"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00624"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00624"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00624"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00624"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9914
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9914
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00624.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00624"]},
+ "label": { "en": ["ALTO XML for A0067545_00624"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00624/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00624/annotation",
"type": "Annotation",
@@ -177541,7 +103734,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00624/full/max/0/default.jpg",
"type": "Image",
@@ -177553,9 +103745,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00624",
"type": "ImageService3",
@@ -177565,11 +103755,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00624",
"@type": "ImageService2",
@@ -177579,45 +103767,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00624/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00625/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 625"],
- "sv": [
-
- "Bild 625"
-
- ],
-
- "en": [
-
- "Image 625"
-
- ]
-
+ "en": ["Image 625"]
},
"width": 5864,
@@ -177625,199 +103794,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00625"]}
-
+ "value": { "none": ["A0067545_00625"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00625"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00625"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00625"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00625"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9897
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9897
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00625.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00625"]},
+ "label": { "en": ["ALTO XML for A0067545_00625"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00625/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00625/annotation",
"type": "Annotation",
@@ -177825,7 +103900,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00625/full/max/0/default.jpg",
"type": "Image",
@@ -177837,9 +103911,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00625",
"type": "ImageService3",
@@ -177849,11 +103921,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00625",
"@type": "ImageService2",
@@ -177863,45 +103933,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00625/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00626/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 626"],
- "sv": [
-
- "Bild 626"
-
- ],
-
- "en": [
-
- "Image 626"
-
- ]
-
+ "en": ["Image 626"]
},
"width": 5920,
@@ -177909,199 +103960,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00626"]}
-
+ "value": { "none": ["A0067545_00626"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00626"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00626"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00626"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00626"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9871
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9871
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00626.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00626"]},
+ "label": { "en": ["ALTO XML for A0067545_00626"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00626/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00626/annotation",
"type": "Annotation",
@@ -178109,7 +104066,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00626/full/max/0/default.jpg",
"type": "Image",
@@ -178121,9 +104077,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00626",
"type": "ImageService3",
@@ -178133,11 +104087,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00626",
"@type": "ImageService2",
@@ -178147,45 +104099,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00626/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00627/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 627"],
- "sv": [
-
- "Bild 627"
-
- ],
-
- "en": [
-
- "Image 627"
-
- ]
-
+ "en": ["Image 627"]
},
"width": 5864,
@@ -178193,199 +104126,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00627"]}
-
+ "value": { "none": ["A0067545_00627"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00627"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00627"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00627"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00627"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9869
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9869
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00627.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00627"]},
+ "label": { "en": ["ALTO XML for A0067545_00627"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00627/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00627/annotation",
"type": "Annotation",
@@ -178393,7 +104232,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00627/full/max/0/default.jpg",
"type": "Image",
@@ -178405,9 +104243,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00627",
"type": "ImageService3",
@@ -178417,11 +104253,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00627",
"@type": "ImageService2",
@@ -178431,45 +104265,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00627/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00628/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 628"],
- "sv": [
-
- "Bild 628"
-
- ],
-
- "en": [
-
- "Image 628"
-
- ]
-
+ "en": ["Image 628"]
},
"width": 5864,
@@ -178477,199 +104292,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00628"]}
-
+ "value": { "none": ["A0067545_00628"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00628"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00628"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00628"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00628"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9877
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9877
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00628.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00628"]},
+ "label": { "en": ["ALTO XML for A0067545_00628"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00628/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00628/annotation",
"type": "Annotation",
@@ -178677,7 +104398,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00628/full/max/0/default.jpg",
"type": "Image",
@@ -178689,9 +104409,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00628",
"type": "ImageService3",
@@ -178701,11 +104419,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00628",
"@type": "ImageService2",
@@ -178715,45 +104431,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00628/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00629/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 629"],
- "sv": [
-
- "Bild 629"
-
- ],
-
- "en": [
-
- "Image 629"
-
- ]
-
+ "en": ["Image 629"]
},
"width": 5896,
@@ -178761,199 +104458,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00629"]}
-
+ "value": { "none": ["A0067545_00629"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00629"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00629"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00629"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00629"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9867
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9867
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00629.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00629"]},
+ "label": { "en": ["ALTO XML for A0067545_00629"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00629/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00629/annotation",
"type": "Annotation",
@@ -178961,7 +104564,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00629/full/max/0/default.jpg",
"type": "Image",
@@ -178973,9 +104575,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00629",
"type": "ImageService3",
@@ -178985,11 +104585,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00629",
"@type": "ImageService2",
@@ -178999,45 +104597,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00629/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00630/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 630"],
- "sv": [
-
- "Bild 630"
-
- ],
-
- "en": [
-
- "Image 630"
-
- ]
-
+ "en": ["Image 630"]
},
"width": 5896,
@@ -179045,199 +104624,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00630"]}
-
+ "value": { "none": ["A0067545_00630"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00630"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00630"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00630"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00630"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9873
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9873
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00630.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00630"]},
+ "label": { "en": ["ALTO XML for A0067545_00630"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00630/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00630/annotation",
"type": "Annotation",
@@ -179245,7 +104730,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00630/full/max/0/default.jpg",
"type": "Image",
@@ -179257,9 +104741,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00630",
"type": "ImageService3",
@@ -179269,11 +104751,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00630",
"@type": "ImageService2",
@@ -179283,45 +104763,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00630/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00631/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 631"],
- "sv": [
-
- "Bild 631"
-
- ],
-
- "en": [
-
- "Image 631"
-
- ]
-
+ "en": ["Image 631"]
},
"width": 5896,
@@ -179329,199 +104790,105 @@
"height": 4968,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00631"]}
-
+ "value": { "none": ["A0067545_00631"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00631"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00631"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00631"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00631"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9885
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9885
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00631.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00631"]},
+ "label": { "en": ["ALTO XML for A0067545_00631"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00631/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00631/annotation",
"type": "Annotation",
@@ -179529,7 +104896,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00631/full/max/0/default.jpg",
"type": "Image",
@@ -179541,9 +104907,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00631",
"type": "ImageService3",
@@ -179553,11 +104917,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00631",
"@type": "ImageService2",
@@ -179567,45 +104929,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00631/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00632/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 632"],
- "sv": [
-
- "Bild 632"
-
- ],
-
- "en": [
-
- "Image 632"
-
- ]
-
+ "en": ["Image 632"]
},
"width": 5920,
@@ -179613,199 +104956,105 @@
"height": 4960,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00632"]}
-
+ "value": { "none": ["A0067545_00632"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00632"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00632"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00632"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00632"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9904
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9904
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00632.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00632"]},
+ "label": { "en": ["ALTO XML for A0067545_00632"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00632/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00632/annotation",
"type": "Annotation",
@@ -179813,7 +105062,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00632/full/max/0/default.jpg",
"type": "Image",
@@ -179825,9 +105073,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00632",
"type": "ImageService3",
@@ -179837,11 +105083,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00632",
"@type": "ImageService2",
@@ -179851,45 +105095,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00632/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00633/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 633"],
- "sv": [
-
- "Bild 633"
-
- ],
-
- "en": [
-
- "Image 633"
-
- ]
-
+ "en": ["Image 633"]
},
"width": 5864,
@@ -179897,199 +105122,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00633"]}
-
+ "value": { "none": ["A0067545_00633"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00633"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00633"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00633"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00633"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9904
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9904
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00633.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00633"]},
+ "label": { "en": ["ALTO XML for A0067545_00633"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00633/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00633/annotation",
"type": "Annotation",
@@ -180097,7 +105228,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00633/full/max/0/default.jpg",
"type": "Image",
@@ -180109,9 +105239,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00633",
"type": "ImageService3",
@@ -180121,11 +105249,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00633",
"@type": "ImageService2",
@@ -180135,45 +105261,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00633/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00634/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 634"],
- "sv": [
-
- "Bild 634"
-
- ],
-
- "en": [
-
- "Image 634"
-
- ]
-
+ "en": ["Image 634"]
},
"width": 5864,
@@ -180181,199 +105288,105 @@
"height": 5000,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00634"]}
-
+ "value": { "none": ["A0067545_00634"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00634"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00634"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00634"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00634"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9910
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9910
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00634.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00634"]},
+ "label": { "en": ["ALTO XML for A0067545_00634"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00634/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00634/annotation",
"type": "Annotation",
@@ -180381,7 +105394,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00634/full/max/0/default.jpg",
"type": "Image",
@@ -180393,9 +105405,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00634",
"type": "ImageService3",
@@ -180405,11 +105415,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00634",
"@type": "ImageService2",
@@ -180419,45 +105427,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00634/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00635/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 635"],
- "sv": [
-
- "Bild 635"
-
- ],
-
- "en": [
-
- "Image 635"
-
- ]
-
+ "en": ["Image 635"]
},
"width": 5952,
@@ -180465,199 +105454,105 @@
"height": 4768,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00635"]}
-
+ "value": { "none": ["A0067545_00635"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00635"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00635"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00635"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00635"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9914
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9914
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00635.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00635"]},
+ "label": { "en": ["ALTO XML for A0067545_00635"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00635/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00635/annotation",
"type": "Annotation",
@@ -180665,7 +105560,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00635/full/max/0/default.jpg",
"type": "Image",
@@ -180677,9 +105571,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00635",
"type": "ImageService3",
@@ -180689,11 +105581,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00635",
"@type": "ImageService2",
@@ -180703,45 +105593,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00635/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00636/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 636"],
- "sv": [
-
- "Bild 636"
-
- ],
-
- "en": [
-
- "Image 636"
-
- ]
-
+ "en": ["Image 636"]
},
"width": 5896,
@@ -180749,199 +105620,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00636"]}
-
+ "value": { "none": ["A0067545_00636"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00636"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00636"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00636"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00636"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9892
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9892
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00636.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00636"]},
+ "label": { "en": ["ALTO XML for A0067545_00636"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00636/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00636/annotation",
"type": "Annotation",
@@ -180949,7 +105726,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00636/full/max/0/default.jpg",
"type": "Image",
@@ -180961,9 +105737,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00636",
"type": "ImageService3",
@@ -180973,11 +105747,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00636",
"@type": "ImageService2",
@@ -180987,45 +105759,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00636/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00637/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 637"],
- "sv": [
-
- "Bild 637"
-
- ],
-
- "en": [
-
- "Image 637"
-
- ]
-
+ "en": ["Image 637"]
},
"width": 5896,
@@ -181033,199 +105786,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00637"]}
-
+ "value": { "none": ["A0067545_00637"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00637"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00637"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00637"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00637"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9898
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9898
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00637.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00637"]},
+ "label": { "en": ["ALTO XML for A0067545_00637"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00637/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00637/annotation",
"type": "Annotation",
@@ -181233,7 +105892,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00637/full/max/0/default.jpg",
"type": "Image",
@@ -181245,9 +105903,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00637",
"type": "ImageService3",
@@ -181257,11 +105913,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00637",
"@type": "ImageService2",
@@ -181271,45 +105925,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00637/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00638/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 638"],
- "sv": [
-
- "Bild 638"
-
- ],
-
- "en": [
-
- "Image 638"
-
- ]
-
+ "en": ["Image 638"]
},
"width": 5896,
@@ -181317,199 +105952,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00638"]}
-
+ "value": { "none": ["A0067545_00638"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00638"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00638"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00638"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00638"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9895
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9895
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00638.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00638"]},
+ "label": { "en": ["ALTO XML for A0067545_00638"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00638/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00638/annotation",
"type": "Annotation",
@@ -181517,7 +106058,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00638/full/max/0/default.jpg",
"type": "Image",
@@ -181529,9 +106069,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00638",
"type": "ImageService3",
@@ -181541,11 +106079,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00638",
"@type": "ImageService2",
@@ -181555,45 +106091,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00638/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00639/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 639"],
- "sv": [
-
- "Bild 639"
-
- ],
-
- "en": [
-
- "Image 639"
-
- ]
-
+ "en": ["Image 639"]
},
"width": 5896,
@@ -181601,199 +106118,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00639"]}
-
+ "value": { "none": ["A0067545_00639"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00639"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00639"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00639"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00639"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9920
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9920
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00639.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00639"]},
+ "label": { "en": ["ALTO XML for A0067545_00639"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00639/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00639/annotation",
"type": "Annotation",
@@ -181801,7 +106224,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00639/full/max/0/default.jpg",
"type": "Image",
@@ -181813,9 +106235,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00639",
"type": "ImageService3",
@@ -181825,11 +106245,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00639",
"@type": "ImageService2",
@@ -181839,45 +106257,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00639/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00640/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 640"],
- "sv": [
-
- "Bild 640"
-
- ],
-
- "en": [
-
- "Image 640"
-
- ]
-
+ "en": ["Image 640"]
},
"width": 6016,
@@ -181885,199 +106284,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00640"]}
-
+ "value": { "none": ["A0067545_00640"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00640"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00640"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00640"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00640"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9926
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9926
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00640.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00640"]},
+ "label": { "en": ["ALTO XML for A0067545_00640"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00640/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00640/annotation",
"type": "Annotation",
@@ -182085,7 +106390,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00640/full/max/0/default.jpg",
"type": "Image",
@@ -182097,9 +106401,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00640",
"type": "ImageService3",
@@ -182109,11 +106411,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00640",
"@type": "ImageService2",
@@ -182123,45 +106423,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00640/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00641/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 641"],
- "sv": [
-
- "Bild 641"
-
- ],
-
- "en": [
-
- "Image 641"
-
- ]
-
+ "en": ["Image 641"]
},
"width": 5984,
@@ -182169,199 +106450,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00641"]}
-
+ "value": { "none": ["A0067545_00641"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00641"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00641"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00641"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00641"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9943
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9943
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00641.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00641"]},
+ "label": { "en": ["ALTO XML for A0067545_00641"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00641/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00641/annotation",
"type": "Annotation",
@@ -182369,7 +106556,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00641/full/max/0/default.jpg",
"type": "Image",
@@ -182381,9 +106567,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00641",
"type": "ImageService3",
@@ -182393,11 +106577,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00641",
"@type": "ImageService2",
@@ -182407,45 +106589,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00641/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00642/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 642"],
- "sv": [
-
- "Bild 642"
-
- ],
-
- "en": [
-
- "Image 642"
-
- ]
-
+ "en": ["Image 642"]
},
"width": 6016,
@@ -182453,199 +106616,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00642"]}
-
+ "value": { "none": ["A0067545_00642"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00642"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00642"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00642"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00642"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9933
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9933
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00642.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00642"]},
+ "label": { "en": ["ALTO XML for A0067545_00642"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00642/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00642/annotation",
"type": "Annotation",
@@ -182653,7 +106722,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00642/full/max/0/default.jpg",
"type": "Image",
@@ -182665,9 +106733,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00642",
"type": "ImageService3",
@@ -182677,11 +106743,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00642",
"@type": "ImageService2",
@@ -182691,45 +106755,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00642/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00643/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 643"],
- "sv": [
-
- "Bild 643"
-
- ],
-
- "en": [
-
- "Image 643"
-
- ]
-
+ "en": ["Image 643"]
},
"width": 5992,
@@ -182737,199 +106782,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00643"]}
-
+ "value": { "none": ["A0067545_00643"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00643"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00643"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00643"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00643"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9944
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9944
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00643.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00643"]},
+ "label": { "en": ["ALTO XML for A0067545_00643"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00643/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00643/annotation",
"type": "Annotation",
@@ -182937,7 +106888,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00643/full/max/0/default.jpg",
"type": "Image",
@@ -182949,9 +106899,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00643",
"type": "ImageService3",
@@ -182961,11 +106909,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00643",
"@type": "ImageService2",
@@ -182975,45 +106921,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00643/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00644/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 644"],
- "sv": [
-
- "Bild 644"
-
- ],
-
- "en": [
-
- "Image 644"
-
- ]
-
+ "en": ["Image 644"]
},
"width": 5984,
@@ -183021,199 +106948,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00644"]}
-
+ "value": { "none": ["A0067545_00644"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00644"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00644"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00644"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00644"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00644.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00644"]},
+ "label": { "en": ["ALTO XML for A0067545_00644"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00644/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00644/annotation",
"type": "Annotation",
@@ -183221,7 +107054,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00644/full/max/0/default.jpg",
"type": "Image",
@@ -183233,9 +107065,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00644",
"type": "ImageService3",
@@ -183245,11 +107075,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00644",
"@type": "ImageService2",
@@ -183259,45 +107087,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00644/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00645/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 645"],
- "sv": [
-
- "Bild 645"
-
- ],
-
- "en": [
-
- "Image 645"
-
- ]
-
+ "en": ["Image 645"]
},
"width": 5928,
@@ -183305,199 +107114,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00645"]}
-
+ "value": { "none": ["A0067545_00645"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00645"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00645"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00645"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00645"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9898
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9898
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00645.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00645"]},
+ "label": { "en": ["ALTO XML for A0067545_00645"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00645/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00645/annotation",
"type": "Annotation",
@@ -183505,7 +107220,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00645/full/max/0/default.jpg",
"type": "Image",
@@ -183517,9 +107231,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00645",
"type": "ImageService3",
@@ -183529,11 +107241,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00645",
"@type": "ImageService2",
@@ -183543,45 +107253,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00645/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00646/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 646"],
- "sv": [
-
- "Bild 646"
-
- ],
-
- "en": [
-
- "Image 646"
-
- ]
-
+ "en": ["Image 646"]
},
"width": 6016,
@@ -183589,199 +107280,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00646"]}
-
+ "value": { "none": ["A0067545_00646"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00646"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00646"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00646"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00646"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9917
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9917
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00646.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00646"]},
+ "label": { "en": ["ALTO XML for A0067545_00646"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00646/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00646/annotation",
"type": "Annotation",
@@ -183789,7 +107386,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00646/full/max/0/default.jpg",
"type": "Image",
@@ -183801,9 +107397,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00646",
"type": "ImageService3",
@@ -183813,11 +107407,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00646",
"@type": "ImageService2",
@@ -183827,45 +107419,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00646/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00647/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 647"],
- "sv": [
-
- "Bild 647"
-
- ],
-
- "en": [
-
- "Image 647"
-
- ]
-
+ "en": ["Image 647"]
},
"width": 5984,
@@ -183873,199 +107446,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00647"]}
-
+ "value": { "none": ["A0067545_00647"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00647"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00647"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00647"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00647"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9854
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9854
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00647.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00647"]},
+ "label": { "en": ["ALTO XML for A0067545_00647"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00647/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00647/annotation",
"type": "Annotation",
@@ -184073,7 +107552,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00647/full/max/0/default.jpg",
"type": "Image",
@@ -184085,9 +107563,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00647",
"type": "ImageService3",
@@ -184097,11 +107573,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00647",
"@type": "ImageService2",
@@ -184111,45 +107585,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00647/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00648/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 648"],
- "sv": [
-
- "Bild 648"
-
- ],
-
- "en": [
-
- "Image 648"
-
- ]
-
+ "en": ["Image 648"]
},
"width": 5960,
@@ -184157,199 +107612,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00648"]}
-
+ "value": { "none": ["A0067545_00648"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00648"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00648"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00648"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00648"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9748
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9748
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00648.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00648"]},
+ "label": { "en": ["ALTO XML for A0067545_00648"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00648/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00648/annotation",
"type": "Annotation",
@@ -184357,7 +107718,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00648/full/max/0/default.jpg",
"type": "Image",
@@ -184369,9 +107729,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00648",
"type": "ImageService3",
@@ -184381,11 +107739,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00648",
"@type": "ImageService2",
@@ -184395,45 +107751,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00648/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00649/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 649"],
- "sv": [
-
- "Bild 649"
-
- ],
-
- "en": [
-
- "Image 649"
-
- ]
-
+ "en": ["Image 649"]
},
"width": 6176,
@@ -184441,199 +107778,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00649"]}
-
+ "value": { "none": ["A0067545_00649"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00649"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00649"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00649"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00649"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9884
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9884
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00649.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00649"]},
+ "label": { "en": ["ALTO XML for A0067545_00649"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00649/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00649/annotation",
"type": "Annotation",
@@ -184641,7 +107884,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00649/full/max/0/default.jpg",
"type": "Image",
@@ -184653,9 +107895,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00649",
"type": "ImageService3",
@@ -184665,11 +107905,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00649",
"@type": "ImageService2",
@@ -184679,45 +107917,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00649/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00650/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 650"],
- "sv": [
-
- "Bild 650"
-
- ],
-
- "en": [
-
- "Image 650"
-
- ]
-
+ "en": ["Image 650"]
},
"width": 6144,
@@ -184725,199 +107944,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00650"]}
-
+ "value": { "none": ["A0067545_00650"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00650"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00650"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00650"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00650"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9765
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9765
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00650.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00650"]},
+ "label": { "en": ["ALTO XML for A0067545_00650"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00650/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00650/annotation",
"type": "Annotation",
@@ -184925,7 +108050,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00650/full/max/0/default.jpg",
"type": "Image",
@@ -184937,9 +108061,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00650",
"type": "ImageService3",
@@ -184949,11 +108071,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00650",
"@type": "ImageService2",
@@ -184963,45 +108083,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00650/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00651/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 651"],
- "sv": [
-
- "Bild 651"
-
- ],
-
- "en": [
-
- "Image 651"
-
- ]
-
+ "en": ["Image 651"]
},
"width": 5864,
@@ -185009,199 +108110,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00651"]}
-
+ "value": { "none": ["A0067545_00651"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00651"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00651"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00651"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00651"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00651.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00651"]},
+ "label": { "en": ["ALTO XML for A0067545_00651"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00651/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00651/annotation",
"type": "Annotation",
@@ -185209,7 +108216,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00651/full/max/0/default.jpg",
"type": "Image",
@@ -185221,9 +108227,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00651",
"type": "ImageService3",
@@ -185233,11 +108237,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00651",
"@type": "ImageService2",
@@ -185247,45 +108249,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00651/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00652/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 652"],
- "sv": [
-
- "Bild 652"
-
- ],
-
- "en": [
-
- "Image 652"
-
- ]
-
+ "en": ["Image 652"]
},
"width": 5984,
@@ -185293,199 +108276,105 @@
"height": 5096,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00652"]}
-
+ "value": { "none": ["A0067545_00652"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00652"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00652"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00652"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00652"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00652.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00652"]},
+ "label": { "en": ["ALTO XML for A0067545_00652"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00652/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00652/annotation",
"type": "Annotation",
@@ -185493,7 +108382,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00652/full/max/0/default.jpg",
"type": "Image",
@@ -185505,9 +108393,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00652",
"type": "ImageService3",
@@ -185517,11 +108403,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00652",
"@type": "ImageService2",
@@ -185531,45 +108415,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00652/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00653/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 653"],
- "sv": [
-
- "Bild 653"
-
- ],
-
- "en": [
-
- "Image 653"
-
- ]
-
+ "en": ["Image 653"]
},
"width": 6016,
@@ -185577,199 +108442,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00653"]}
-
+ "value": { "none": ["A0067545_00653"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00653"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00653"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00653"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00653"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9935
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9935
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00653.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00653"]},
+ "label": { "en": ["ALTO XML for A0067545_00653"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00653/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00653/annotation",
"type": "Annotation",
@@ -185777,7 +108548,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00653/full/max/0/default.jpg",
"type": "Image",
@@ -185789,9 +108559,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00653",
"type": "ImageService3",
@@ -185801,11 +108569,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00653",
"@type": "ImageService2",
@@ -185815,45 +108581,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00653/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00654/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 654"],
- "sv": [
-
- "Bild 654"
-
- ],
-
- "en": [
-
- "Image 654"
-
- ]
-
+ "en": ["Image 654"]
},
"width": 6112,
@@ -185861,199 +108608,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00654"]}
-
+ "value": { "none": ["A0067545_00654"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00654"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00654"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00654"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00654"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9830
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9830
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00654.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00654"]},
+ "label": { "en": ["ALTO XML for A0067545_00654"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00654/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00654/annotation",
"type": "Annotation",
@@ -186061,7 +108714,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00654/full/max/0/default.jpg",
"type": "Image",
@@ -186073,9 +108725,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00654",
"type": "ImageService3",
@@ -186085,11 +108735,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00654",
"@type": "ImageService2",
@@ -186099,45 +108747,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00654/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00655/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 655"],
- "sv": [
-
- "Bild 655"
-
- ],
-
- "en": [
-
- "Image 655"
-
- ]
-
+ "en": ["Image 655"]
},
"width": 6016,
@@ -186145,199 +108774,105 @@
"height": 4968,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00655"]}
-
+ "value": { "none": ["A0067545_00655"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00655"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00655"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00655"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00655"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00655.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00655"]},
+ "label": { "en": ["ALTO XML for A0067545_00655"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00655/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00655/annotation",
"type": "Annotation",
@@ -186345,7 +108880,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00655/full/max/0/default.jpg",
"type": "Image",
@@ -186357,9 +108891,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00655",
"type": "ImageService3",
@@ -186369,11 +108901,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00655",
"@type": "ImageService2",
@@ -186383,45 +108913,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00655/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00656/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 656"],
- "sv": [
-
- "Bild 656"
-
- ],
-
- "en": [
-
- "Image 656"
-
- ]
-
+ "en": ["Image 656"]
},
"width": 5952,
@@ -186429,199 +108940,105 @@
"height": 4992,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00656"]}
-
+ "value": { "none": ["A0067545_00656"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00656"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00656"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00656"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00656"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9955
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9955
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00656.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00656"]},
+ "label": { "en": ["ALTO XML for A0067545_00656"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00656/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00656/annotation",
"type": "Annotation",
@@ -186629,7 +109046,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00656/full/max/0/default.jpg",
"type": "Image",
@@ -186641,9 +109057,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00656",
"type": "ImageService3",
@@ -186653,11 +109067,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00656",
"@type": "ImageService2",
@@ -186667,45 +109079,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00656/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00657/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 657"],
- "sv": [
-
- "Bild 657"
-
- ],
-
- "en": [
-
- "Image 657"
-
- ]
-
+ "en": ["Image 657"]
},
"width": 5984,
@@ -186713,199 +109106,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00657"]}
-
+ "value": { "none": ["A0067545_00657"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00657"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00657"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00657"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00657"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9870
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9870
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00657.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00657"]},
+ "label": { "en": ["ALTO XML for A0067545_00657"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00657/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00657/annotation",
"type": "Annotation",
@@ -186913,7 +109212,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00657/full/max/0/default.jpg",
"type": "Image",
@@ -186925,9 +109223,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00657",
"type": "ImageService3",
@@ -186937,11 +109233,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00657",
"@type": "ImageService2",
@@ -186951,45 +109245,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00657/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00658/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 658"],
- "sv": [
-
- "Bild 658"
-
- ],
-
- "en": [
-
- "Image 658"
-
- ]
-
+ "en": ["Image 658"]
},
"width": 6016,
@@ -186997,199 +109272,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00658"]}
-
+ "value": { "none": ["A0067545_00658"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00658"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00658"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00658"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00658"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9725
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9725
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00658.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00658"]},
+ "label": { "en": ["ALTO XML for A0067545_00658"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00658/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00658/annotation",
"type": "Annotation",
@@ -187197,7 +109378,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00658/full/max/0/default.jpg",
"type": "Image",
@@ -187209,9 +109389,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00658",
"type": "ImageService3",
@@ -187221,11 +109399,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00658",
"@type": "ImageService2",
@@ -187235,45 +109411,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00658/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00659/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 659"],
- "sv": [
-
- "Bild 659"
-
- ],
-
- "en": [
-
- "Image 659"
-
- ]
-
+ "en": ["Image 659"]
},
"width": 6016,
@@ -187281,199 +109438,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00659"]}
-
+ "value": { "none": ["A0067545_00659"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00659"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00659"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00659"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00659"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9919
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9919
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00659.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00659"]},
+ "label": { "en": ["ALTO XML for A0067545_00659"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00659/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00659/annotation",
"type": "Annotation",
@@ -187481,7 +109544,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00659/full/max/0/default.jpg",
"type": "Image",
@@ -187493,9 +109555,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00659",
"type": "ImageService3",
@@ -187505,11 +109565,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00659",
"@type": "ImageService2",
@@ -187519,45 +109577,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00659/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00660/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 660"],
- "sv": [
-
- "Bild 660"
-
- ],
-
- "en": [
-
- "Image 660"
-
- ]
-
+ "en": ["Image 660"]
},
"width": 5864,
@@ -187565,199 +109604,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00660"]}
-
+ "value": { "none": ["A0067545_00660"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00660"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00660"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00660"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00660"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00660.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00660"]},
+ "label": { "en": ["ALTO XML for A0067545_00660"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00660/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00660/annotation",
"type": "Annotation",
@@ -187765,7 +109710,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00660/full/max/0/default.jpg",
"type": "Image",
@@ -187777,9 +109721,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00660",
"type": "ImageService3",
@@ -187789,11 +109731,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00660",
"@type": "ImageService2",
@@ -187803,45 +109743,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00660/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00661/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 661"],
- "sv": [
-
- "Bild 661"
-
- ],
-
- "en": [
-
- "Image 661"
-
- ]
-
+ "en": ["Image 661"]
},
"width": 6016,
@@ -187849,199 +109770,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00661"]}
-
+ "value": { "none": ["A0067545_00661"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00661"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00661"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00661"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00661"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9674
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9674
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00661.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00661"]},
+ "label": { "en": ["ALTO XML for A0067545_00661"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00661/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00661/annotation",
"type": "Annotation",
@@ -188049,7 +109876,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00661/full/max/0/default.jpg",
"type": "Image",
@@ -188061,9 +109887,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00661",
"type": "ImageService3",
@@ -188073,11 +109897,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00661",
"@type": "ImageService2",
@@ -188087,45 +109909,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00661/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00662/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 662"],
- "sv": [
-
- "Bild 662"
-
- ],
-
- "en": [
-
- "Image 662"
-
- ]
-
+ "en": ["Image 662"]
},
"width": 5864,
@@ -188133,199 +109936,105 @@
"height": 4872,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00662"]}
-
+ "value": { "none": ["A0067545_00662"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00662"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00662"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00662"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00662"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9724
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9724
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00662.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00662"]},
+ "label": { "en": ["ALTO XML for A0067545_00662"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00662/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00662/annotation",
"type": "Annotation",
@@ -188333,7 +110042,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00662/full/max/0/default.jpg",
"type": "Image",
@@ -188345,9 +110053,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00662",
"type": "ImageService3",
@@ -188357,11 +110063,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00662",
"@type": "ImageService2",
@@ -188371,45 +110075,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00662/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00663/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 663"],
- "sv": [
-
- "Bild 663"
-
- ],
-
- "en": [
-
- "Image 663"
-
- ]
-
+ "en": ["Image 663"]
},
"width": 5952,
@@ -188417,199 +110102,105 @@
"height": 4896,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00663"]}
-
+ "value": { "none": ["A0067545_00663"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00663"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00663"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00663"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00663"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9837
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9837
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00663.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00663"]},
+ "label": { "en": ["ALTO XML for A0067545_00663"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00663/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00663/annotation",
"type": "Annotation",
@@ -188617,7 +110208,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00663/full/max/0/default.jpg",
"type": "Image",
@@ -188629,9 +110219,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00663",
"type": "ImageService3",
@@ -188641,11 +110229,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00663",
"@type": "ImageService2",
@@ -188655,45 +110241,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00663/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00664/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 664"],
- "sv": [
-
- "Bild 664"
-
- ],
-
- "en": [
-
- "Image 664"
-
- ]
-
+ "en": ["Image 664"]
},
"width": 5928,
@@ -188701,199 +110268,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00664"]}
-
+ "value": { "none": ["A0067545_00664"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00664"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00664"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00664"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00664"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9848
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9848
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00664.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00664"]},
+ "label": { "en": ["ALTO XML for A0067545_00664"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00664/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00664/annotation",
"type": "Annotation",
@@ -188901,7 +110374,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00664/full/max/0/default.jpg",
"type": "Image",
@@ -188913,9 +110385,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00664",
"type": "ImageService3",
@@ -188925,11 +110395,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00664",
"@type": "ImageService2",
@@ -188939,45 +110407,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00664/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00665/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 665"],
- "sv": [
-
- "Bild 665"
-
- ],
-
- "en": [
-
- "Image 665"
-
- ]
-
+ "en": ["Image 665"]
},
"width": 5864,
@@ -188985,199 +110434,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00665"]}
-
+ "value": { "none": ["A0067545_00665"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00665"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00665"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00665"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00665"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00665.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00665"]},
+ "label": { "en": ["ALTO XML for A0067545_00665"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00665/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00665/annotation",
"type": "Annotation",
@@ -189185,7 +110540,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00665/full/max/0/default.jpg",
"type": "Image",
@@ -189197,9 +110551,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00665",
"type": "ImageService3",
@@ -189209,11 +110561,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00665",
"@type": "ImageService2",
@@ -189223,45 +110573,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00665/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00666/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 666"],
- "sv": [
-
- "Bild 666"
-
- ],
-
- "en": [
-
- "Image 666"
-
- ]
-
+ "en": ["Image 666"]
},
"width": 5864,
@@ -189269,199 +110600,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00666"]}
-
+ "value": { "none": ["A0067545_00666"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00666"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00666"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00666"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00666"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9961
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9961
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00666.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00666"]},
+ "label": { "en": ["ALTO XML for A0067545_00666"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00666/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00666/annotation",
"type": "Annotation",
@@ -189469,7 +110706,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00666/full/max/0/default.jpg",
"type": "Image",
@@ -189481,9 +110717,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00666",
"type": "ImageService3",
@@ -189493,11 +110727,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00666",
"@type": "ImageService2",
@@ -189507,45 +110739,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00666/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00667/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 667"],
- "sv": [
-
- "Bild 667"
-
- ],
-
- "en": [
-
- "Image 667"
-
- ]
-
+ "en": ["Image 667"]
},
"width": 5984,
@@ -189553,199 +110766,105 @@
"height": 4936,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00667"]}
-
+ "value": { "none": ["A0067545_00667"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00667"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00667"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00667"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00667"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9791
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9791
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00667.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00667"]},
+ "label": { "en": ["ALTO XML for A0067545_00667"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00667/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00667/annotation",
"type": "Annotation",
@@ -189753,7 +110872,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00667/full/max/0/default.jpg",
"type": "Image",
@@ -189765,9 +110883,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00667",
"type": "ImageService3",
@@ -189777,11 +110893,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00667",
"@type": "ImageService2",
@@ -189791,45 +110905,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00667/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00668/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 668"],
- "sv": [
-
- "Bild 668"
-
- ],
-
- "en": [
-
- "Image 668"
-
- ]
-
+ "en": ["Image 668"]
},
"width": 6048,
@@ -189837,199 +110932,105 @@
"height": 4832,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00668"]}
-
+ "value": { "none": ["A0067545_00668"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00668"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00668"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00668"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00668"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00668.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00668"]},
+ "label": { "en": ["ALTO XML for A0067545_00668"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00668/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00668/annotation",
"type": "Annotation",
@@ -190037,7 +111038,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00668/full/max/0/default.jpg",
"type": "Image",
@@ -190049,9 +111049,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00668",
"type": "ImageService3",
@@ -190061,11 +111059,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00668",
"@type": "ImageService2",
@@ -190075,45 +111071,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00668/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00669/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 669"],
- "sv": [
-
- "Bild 669"
-
- ],
-
- "en": [
-
- "Image 669"
-
- ]
-
+ "en": ["Image 669"]
},
"width": 5984,
@@ -190121,199 +111098,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00669"]}
-
+ "value": { "none": ["A0067545_00669"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00669"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00669"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00669"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00669"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9844
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9844
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00669.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00669"]},
+ "label": { "en": ["ALTO XML for A0067545_00669"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00669/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00669/annotation",
"type": "Annotation",
@@ -190321,7 +111204,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00669/full/max/0/default.jpg",
"type": "Image",
@@ -190333,9 +111215,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00669",
"type": "ImageService3",
@@ -190345,11 +111225,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00669",
"@type": "ImageService2",
@@ -190359,45 +111237,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00669/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00670/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 670"],
- "sv": [
-
- "Bild 670"
-
- ],
-
- "en": [
-
- "Image 670"
-
- ]
-
+ "en": ["Image 670"]
},
"width": 5984,
@@ -190405,199 +111264,105 @@
"height": 5064,
"metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00670"]}
-
- },
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00670"
-
- ]
-
- }
-
+ "value": { "none": ["A0067545_00670"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "sv": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00670"
-
- ],
-
- "en": [
-
- "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00670"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00670"]
}
-
},
{
+ "label": {
+ "sv": ["Källhänvisning"],
- "label": {
-
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
- "Texten är skapad med artificiell intelligens och kan innehålla fel."
-
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00670"
],
"en": [
-
- "The text is created with artificial intelligence and may contain errors."
-
+ "Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00670"
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Konfidensvärde"
+ "en": ["Transcription method"]
+ },
+ "value": {
+ "sv": [
+ "Texten är skapad med artificiell intelligens och kan innehålla fel."
],
"en": [
-
- "Confidence value"
-
+ "The text is created with artificial intelligence and may contain errors."
]
+ }
+ },
+ {
+ "label": {
+ "sv": ["Konfidensvärde"],
+
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9917
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9917
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00670.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00670"]},
+ "label": { "en": ["ALTO XML for A0067545_00670"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00670/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00670/annotation",
"type": "Annotation",
@@ -190605,7 +111370,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00670/full/max/0/default.jpg",
"type": "Image",
@@ -190617,9 +111381,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00670",
"type": "ImageService3",
@@ -190629,11 +111391,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00670",
"@type": "ImageService2",
@@ -190643,45 +111403,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00670/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00671/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 671"],
- "sv": [
-
- "Bild 671"
-
- ],
-
- "en": [
-
- "Image 671"
-
- ]
-
+ "en": ["Image 671"]
},
"width": 5984,
@@ -190689,199 +111430,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00671"]}
-
+ "value": { "none": ["A0067545_00671"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00671"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00671"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00671"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00671"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9877
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9877
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00671.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00671"]},
+ "label": { "en": ["ALTO XML for A0067545_00671"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00671/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00671/annotation",
"type": "Annotation",
@@ -190889,7 +111536,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00671/full/max/0/default.jpg",
"type": "Image",
@@ -190901,9 +111547,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00671",
"type": "ImageService3",
@@ -190913,11 +111557,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00671",
"@type": "ImageService2",
@@ -190927,45 +111569,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00671/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00672/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 672"],
- "sv": [
-
- "Bild 672"
-
- ],
-
- "en": [
-
- "Image 672"
-
- ]
-
+ "en": ["Image 672"]
},
"width": 5984,
@@ -190973,199 +111596,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00672"]}
-
+ "value": { "none": ["A0067545_00672"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00672"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00672"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00672"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00672"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9899
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9899
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00672.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00672"]},
+ "label": { "en": ["ALTO XML for A0067545_00672"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00672/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00672/annotation",
"type": "Annotation",
@@ -191173,7 +111702,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00672/full/max/0/default.jpg",
"type": "Image",
@@ -191185,9 +111713,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00672",
"type": "ImageService3",
@@ -191197,11 +111723,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00672",
"@type": "ImageService2",
@@ -191211,45 +111735,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00672/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00673/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 673"],
- "sv": [
-
- "Bild 673"
-
- ],
-
- "en": [
-
- "Image 673"
-
- ]
-
+ "en": ["Image 673"]
},
"width": 5864,
@@ -191257,199 +111762,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00673"]}
-
+ "value": { "none": ["A0067545_00673"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00673"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00673"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00673"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00673"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9798
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9798
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00673.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00673"]},
+ "label": { "en": ["ALTO XML for A0067545_00673"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00673/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00673/annotation",
"type": "Annotation",
@@ -191457,7 +111868,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00673/full/max/0/default.jpg",
"type": "Image",
@@ -191469,9 +111879,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00673",
"type": "ImageService3",
@@ -191481,11 +111889,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00673",
"@type": "ImageService2",
@@ -191495,45 +111901,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00673/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00674/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 674"],
- "sv": [
-
- "Bild 674"
-
- ],
-
- "en": [
-
- "Image 674"
-
- ]
-
+ "en": ["Image 674"]
},
"width": 5984,
@@ -191541,199 +111928,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00674"]}
-
+ "value": { "none": ["A0067545_00674"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00674"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00674"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00674"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00674"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9878
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9878
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00674.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00674"]},
+ "label": { "en": ["ALTO XML for A0067545_00674"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00674/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00674/annotation",
"type": "Annotation",
@@ -191741,7 +112034,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00674/full/max/0/default.jpg",
"type": "Image",
@@ -191753,9 +112045,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00674",
"type": "ImageService3",
@@ -191765,11 +112055,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00674",
"@type": "ImageService2",
@@ -191779,45 +112067,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00674/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00675/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 675"],
- "sv": [
-
- "Bild 675"
-
- ],
-
- "en": [
-
- "Image 675"
-
- ]
-
+ "en": ["Image 675"]
},
"width": 5984,
@@ -191825,199 +112094,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00675"]}
-
+ "value": { "none": ["A0067545_00675"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00675"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00675"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00675"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00675"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9880
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9880
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00675.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00675"]},
+ "label": { "en": ["ALTO XML for A0067545_00675"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00675/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00675/annotation",
"type": "Annotation",
@@ -192025,7 +112200,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00675/full/max/0/default.jpg",
"type": "Image",
@@ -192037,9 +112211,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00675",
"type": "ImageService3",
@@ -192049,11 +112221,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00675",
"@type": "ImageService2",
@@ -192063,45 +112233,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00675/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00676/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 676"],
- "sv": [
-
- "Bild 676"
-
- ],
-
- "en": [
-
- "Image 676"
-
- ]
-
+ "en": ["Image 676"]
},
"width": 5864,
@@ -192109,199 +112260,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00676"]}
-
+ "value": { "none": ["A0067545_00676"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00676"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00676"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00676"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00676"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00676.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00676"]},
+ "label": { "en": ["ALTO XML for A0067545_00676"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00676/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00676/annotation",
"type": "Annotation",
@@ -192309,7 +112366,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00676/full/max/0/default.jpg",
"type": "Image",
@@ -192321,9 +112377,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00676",
"type": "ImageService3",
@@ -192333,11 +112387,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00676",
"@type": "ImageService2",
@@ -192347,45 +112399,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00676/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00677/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 677"],
- "sv": [
-
- "Bild 677"
-
- ],
-
- "en": [
-
- "Image 677"
-
- ]
-
+ "en": ["Image 677"]
},
"width": 5864,
@@ -192393,199 +112426,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00677"]}
-
+ "value": { "none": ["A0067545_00677"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00677"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00677"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00677"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00677"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00677.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00677"]},
+ "label": { "en": ["ALTO XML for A0067545_00677"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00677/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00677/annotation",
"type": "Annotation",
@@ -192593,7 +112532,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00677/full/max/0/default.jpg",
"type": "Image",
@@ -192605,9 +112543,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00677",
"type": "ImageService3",
@@ -192617,11 +112553,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00677",
"@type": "ImageService2",
@@ -192631,45 +112565,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00677/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00678/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 678"],
- "sv": [
-
- "Bild 678"
-
- ],
-
- "en": [
-
- "Image 678"
-
- ]
-
+ "en": ["Image 678"]
},
"width": 5928,
@@ -192677,199 +112592,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00678"]}
-
+ "value": { "none": ["A0067545_00678"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00678"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00678"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00678"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00678"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9946
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9946
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00678.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00678"]},
+ "label": { "en": ["ALTO XML for A0067545_00678"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00678/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00678/annotation",
"type": "Annotation",
@@ -192877,7 +112698,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00678/full/max/0/default.jpg",
"type": "Image",
@@ -192889,9 +112709,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00678",
"type": "ImageService3",
@@ -192901,11 +112719,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00678",
"@type": "ImageService2",
@@ -192915,245 +112731,132 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00678/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00679/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 679"],
- "sv": [
-
- "Bild 679"
-
- ],
-
- "en": [
-
- "Image 679"
-
- ]
-
+ "en": ["Image 679"]
},
"width": 5896,
- "height": 5064,
-
- "metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
- },
-
- "value": {"none":["A0067545_00679"]}
-
- },
-
- {
-
- "label": {
-
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
- },
-
- "value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00679"
-
- ]
-
- }
-
- },
+ "height": 5064,
+ "metadata": [
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
+ "en": ["Image ID"]
+ },
- "Källhänvisning"
+ "value": { "none": ["A0067545_00679"] }
+ },
- ],
+ {
+ "label": {
+ "sv": ["Länk"],
- "en": [
+ "en": ["Link"]
+ },
- "Source reference"
+ "value": {
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00679"]
+ }
+ },
- ]
+ {
+ "label": {
+ "sv": ["Källhänvisning"],
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00679"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00679"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9902
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9902
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00679.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00679"]},
+ "label": { "en": ["ALTO XML for A0067545_00679"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00679/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00679/annotation",
"type": "Annotation",
@@ -193161,7 +112864,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00679/full/max/0/default.jpg",
"type": "Image",
@@ -193173,9 +112875,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00679",
"type": "ImageService3",
@@ -193185,11 +112885,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00679",
"@type": "ImageService2",
@@ -193199,45 +112897,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00679/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00680/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 680"],
- "sv": [
-
- "Bild 680"
-
- ],
-
- "en": [
-
- "Image 680"
-
- ]
-
+ "en": ["Image 680"]
},
"width": 5864,
@@ -193245,199 +112924,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00680"]}
-
+ "value": { "none": ["A0067545_00680"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00680"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00680"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00680"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00680"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00680.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00680"]},
+ "label": { "en": ["ALTO XML for A0067545_00680"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00680/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00680/annotation",
"type": "Annotation",
@@ -193445,7 +113030,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00680/full/max/0/default.jpg",
"type": "Image",
@@ -193457,9 +113041,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00680",
"type": "ImageService3",
@@ -193469,11 +113051,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00680",
"@type": "ImageService2",
@@ -193483,45 +113063,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00680/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00681/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 681"],
- "sv": [
-
- "Bild 681"
-
- ],
-
- "en": [
-
- "Image 681"
-
- ]
-
+ "en": ["Image 681"]
},
"width": 5992,
@@ -193529,199 +113090,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00681"]}
-
+ "value": { "none": ["A0067545_00681"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00681"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00681"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00681"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00681"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9922
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9922
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00681.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00681"]},
+ "label": { "en": ["ALTO XML for A0067545_00681"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00681/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00681/annotation",
"type": "Annotation",
@@ -193729,7 +113196,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00681/full/max/0/default.jpg",
"type": "Image",
@@ -193741,9 +113207,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00681",
"type": "ImageService3",
@@ -193753,11 +113217,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00681",
"@type": "ImageService2",
@@ -193767,45 +113229,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00681/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00682/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 682"],
- "sv": [
-
- "Bild 682"
-
- ],
-
- "en": [
-
- "Image 682"
-
- ]
-
+ "en": ["Image 682"]
},
"width": 5864,
@@ -193813,199 +113256,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00682"]}
-
+ "value": { "none": ["A0067545_00682"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00682"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00682"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00682"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00682"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9929
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9929
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00682.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00682"]},
+ "label": { "en": ["ALTO XML for A0067545_00682"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00682/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00682/annotation",
"type": "Annotation",
@@ -194013,7 +113362,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00682/full/max/0/default.jpg",
"type": "Image",
@@ -194025,9 +113373,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00682",
"type": "ImageService3",
@@ -194037,11 +113383,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00682",
"@type": "ImageService2",
@@ -194051,45 +113395,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00682/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00683/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 683"],
- "sv": [
-
- "Bild 683"
-
- ],
-
- "en": [
-
- "Image 683"
-
- ]
-
+ "en": ["Image 683"]
},
"width": 5984,
@@ -194097,199 +113422,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00683"]}
-
+ "value": { "none": ["A0067545_00683"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00683"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00683"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00683"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00683"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9901
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9901
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00683.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00683"]},
+ "label": { "en": ["ALTO XML for A0067545_00683"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00683/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00683/annotation",
"type": "Annotation",
@@ -194297,7 +113528,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00683/full/max/0/default.jpg",
"type": "Image",
@@ -194309,9 +113539,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00683",
"type": "ImageService3",
@@ -194321,11 +113549,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00683",
"@type": "ImageService2",
@@ -194335,45 +113561,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00683/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00684/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 684"],
- "sv": [
-
- "Bild 684"
-
- ],
-
- "en": [
-
- "Image 684"
-
- ]
-
+ "en": ["Image 684"]
},
"width": 5984,
@@ -194381,199 +113588,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00684"]}
-
+ "value": { "none": ["A0067545_00684"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00684"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00684"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00684"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00684"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9873
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9873
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00684.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00684"]},
+ "label": { "en": ["ALTO XML for A0067545_00684"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00684/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00684/annotation",
"type": "Annotation",
@@ -194581,7 +113694,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00684/full/max/0/default.jpg",
"type": "Image",
@@ -194593,9 +113705,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00684",
"type": "ImageService3",
@@ -194605,11 +113715,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00684",
"@type": "ImageService2",
@@ -194619,45 +113727,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00684/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00685/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 685"],
- "sv": [
-
- "Bild 685"
-
- ],
-
- "en": [
-
- "Image 685"
-
- ]
-
+ "en": ["Image 685"]
},
"width": 5864,
@@ -194665,199 +113754,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00685"]}
-
+ "value": { "none": ["A0067545_00685"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00685"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00685"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00685"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00685"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9867
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9867
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00685.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00685"]},
+ "label": { "en": ["ALTO XML for A0067545_00685"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00685/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00685/annotation",
"type": "Annotation",
@@ -194865,7 +113860,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00685/full/max/0/default.jpg",
"type": "Image",
@@ -194877,9 +113871,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00685",
"type": "ImageService3",
@@ -194889,11 +113881,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00685",
"@type": "ImageService2",
@@ -194903,45 +113893,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00685/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00686/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 686"],
- "sv": [
-
- "Bild 686"
-
- ],
-
- "en": [
-
- "Image 686"
-
- ]
-
+ "en": ["Image 686"]
},
"width": 5928,
@@ -194949,199 +113920,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00686"]}
-
+ "value": { "none": ["A0067545_00686"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00686"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00686"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00686"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00686"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9948
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9948
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00686.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00686"]},
+ "label": { "en": ["ALTO XML for A0067545_00686"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00686/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00686/annotation",
"type": "Annotation",
@@ -195149,7 +114026,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00686/full/max/0/default.jpg",
"type": "Image",
@@ -195161,9 +114037,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00686",
"type": "ImageService3",
@@ -195173,11 +114047,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00686",
"@type": "ImageService2",
@@ -195187,45 +114059,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00686/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00687/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 687"],
- "sv": [
-
- "Bild 687"
-
- ],
-
- "en": [
-
- "Image 687"
-
- ]
-
+ "en": ["Image 687"]
},
"width": 5864,
@@ -195233,199 +114086,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00687"]}
-
+ "value": { "none": ["A0067545_00687"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00687"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00687"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00687"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00687"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9951
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9951
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00687.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00687"]},
+ "label": { "en": ["ALTO XML for A0067545_00687"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00687/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00687/annotation",
"type": "Annotation",
@@ -195433,7 +114192,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00687/full/max/0/default.jpg",
"type": "Image",
@@ -195445,9 +114203,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00687",
"type": "ImageService3",
@@ -195457,11 +114213,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00687",
"@type": "ImageService2",
@@ -195471,245 +114225,132 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00687/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00688/canvas",
"type": "Canvas",
- "label": {
-
- "sv": [
-
- "Bild 688"
-
- ],
-
- "en": [
-
- "Image 688"
-
- ]
-
- },
-
- "width": 5896,
-
- "height": 5064,
-
- "metadata": [
-
- {
-
- "label": {
-
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
+ "label": {
+ "sv": ["Bild 688"],
- },
+ "en": ["Image 688"]
+ },
- "value": {"none":["A0067545_00688"]}
+ "width": 5896,
- },
+ "height": 5064,
+ "metadata": [
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
+ "en": ["Image ID"]
+ },
- "Link"
+ "value": { "none": ["A0067545_00688"] }
+ },
- ]
+ {
+ "label": {
+ "sv": ["Länk"],
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00688"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00688"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00688"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00688"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9949
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9949
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00688.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00688"]},
+ "label": { "en": ["ALTO XML for A0067545_00688"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00688/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00688/annotation",
"type": "Annotation",
@@ -195717,7 +114358,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00688/full/max/0/default.jpg",
"type": "Image",
@@ -195729,9 +114369,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00688",
"type": "ImageService3",
@@ -195741,11 +114379,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00688",
"@type": "ImageService2",
@@ -195755,45 +114391,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00688/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00689/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 689"],
- "sv": [
-
- "Bild 689"
-
- ],
-
- "en": [
-
- "Image 689"
-
- ]
-
+ "en": ["Image 689"]
},
"width": 5792,
@@ -195801,199 +114418,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00689"]}
-
+ "value": { "none": ["A0067545_00689"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00689"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00689"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00689"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00689"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9838
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9838
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00689.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00689"]},
+ "label": { "en": ["ALTO XML for A0067545_00689"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00689/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00689/annotation",
"type": "Annotation",
@@ -196001,7 +114524,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00689/full/max/0/default.jpg",
"type": "Image",
@@ -196013,9 +114535,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00689",
"type": "ImageService3",
@@ -196025,11 +114545,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00689",
"@type": "ImageService2",
@@ -196039,45 +114557,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00689/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00690/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 690"],
- "sv": [
-
- "Bild 690"
-
- ],
-
- "en": [
-
- "Image 690"
-
- ]
-
+ "en": ["Image 690"]
},
"width": 5896,
@@ -196085,199 +114584,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00690"]}
-
+ "value": { "none": ["A0067545_00690"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00690"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00690"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00690"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00690"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9806
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9806
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00690.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00690"]},
+ "label": { "en": ["ALTO XML for A0067545_00690"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00690/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00690/annotation",
"type": "Annotation",
@@ -196285,7 +114690,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00690/full/max/0/default.jpg",
"type": "Image",
@@ -196297,9 +114701,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00690",
"type": "ImageService3",
@@ -196309,11 +114711,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00690",
"@type": "ImageService2",
@@ -196323,45 +114723,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00690/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00691/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 691"],
- "sv": [
-
- "Bild 691"
-
- ],
-
- "en": [
-
- "Image 691"
-
- ]
-
+ "en": ["Image 691"]
},
"width": 6016,
@@ -196369,199 +114750,105 @@
"height": 4968,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00691"]}
-
+ "value": { "none": ["A0067545_00691"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00691"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00691"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00691"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00691"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9706
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9706
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00691.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00691"]},
+ "label": { "en": ["ALTO XML for A0067545_00691"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00691/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00691/annotation",
"type": "Annotation",
@@ -196569,7 +114856,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00691/full/max/0/default.jpg",
"type": "Image",
@@ -196581,9 +114867,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00691",
"type": "ImageService3",
@@ -196593,11 +114877,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00691",
"@type": "ImageService2",
@@ -196607,45 +114889,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00691/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00692/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 692"],
- "sv": [
-
- "Bild 692"
-
- ],
-
- "en": [
-
- "Image 692"
-
- ]
-
+ "en": ["Image 692"]
},
"width": 5952,
@@ -196653,199 +114916,105 @@
"height": 4960,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00692"]}
-
+ "value": { "none": ["A0067545_00692"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00692"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00692"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00692"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00692"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9624
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9624
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00692.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00692"]},
+ "label": { "en": ["ALTO XML for A0067545_00692"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00692/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00692/annotation",
"type": "Annotation",
@@ -196853,7 +115022,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00692/full/max/0/default.jpg",
"type": "Image",
@@ -196865,9 +115033,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00692",
"type": "ImageService3",
@@ -196877,11 +115043,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00692",
"@type": "ImageService2",
@@ -196891,45 +115055,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00692/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00693/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 693"],
- "sv": [
-
- "Bild 693"
-
- ],
-
- "en": [
-
- "Image 693"
-
- ]
-
+ "en": ["Image 693"]
},
"width": 5928,
@@ -196937,199 +115082,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00693"]}
-
+ "value": { "none": ["A0067545_00693"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00693"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00693"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00693"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00693"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9818
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9818
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00693.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00693"]},
+ "label": { "en": ["ALTO XML for A0067545_00693"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00693/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00693/annotation",
"type": "Annotation",
@@ -197137,7 +115188,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00693/full/max/0/default.jpg",
"type": "Image",
@@ -197149,9 +115199,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00693",
"type": "ImageService3",
@@ -197161,11 +115209,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00693",
"@type": "ImageService2",
@@ -197175,45 +115221,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00693/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00694/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 694"],
- "sv": [
-
- "Bild 694"
-
- ],
-
- "en": [
-
- "Image 694"
-
- ]
-
+ "en": ["Image 694"]
},
"width": 5792,
@@ -197221,199 +115248,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00694"]}
-
+ "value": { "none": ["A0067545_00694"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00694"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00694"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00694"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00694"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9833
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9833
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00694.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00694"]},
+ "label": { "en": ["ALTO XML for A0067545_00694"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00694/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00694/annotation",
"type": "Annotation",
@@ -197421,7 +115354,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00694/full/max/0/default.jpg",
"type": "Image",
@@ -197433,9 +115365,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00694",
"type": "ImageService3",
@@ -197445,11 +115375,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00694",
"@type": "ImageService2",
@@ -197459,45 +115387,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00694/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00695/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 695"],
- "sv": [
-
- "Bild 695"
-
- ],
-
- "en": [
-
- "Image 695"
-
- ]
-
+ "en": ["Image 695"]
},
"width": 5864,
@@ -197505,199 +115414,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00695"]}
-
+ "value": { "none": ["A0067545_00695"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00695"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00695"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00695"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00695"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9940
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9940
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00695.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00695"]},
+ "label": { "en": ["ALTO XML for A0067545_00695"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00695/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00695/annotation",
"type": "Annotation",
@@ -197705,7 +115520,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00695/full/max/0/default.jpg",
"type": "Image",
@@ -197717,9 +115531,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00695",
"type": "ImageService3",
@@ -197729,11 +115541,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00695",
"@type": "ImageService2",
@@ -197743,45 +115553,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00695/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00696/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 696"],
- "sv": [
-
- "Bild 696"
-
- ],
-
- "en": [
-
- "Image 696"
-
- ]
-
+ "en": ["Image 696"]
},
"width": 5896,
@@ -197789,199 +115580,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00696"]}
-
+ "value": { "none": ["A0067545_00696"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00696"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00696"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00696"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00696"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9947
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9947
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00696.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00696"]},
+ "label": { "en": ["ALTO XML for A0067545_00696"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00696/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00696/annotation",
"type": "Annotation",
@@ -197989,7 +115686,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00696/full/max/0/default.jpg",
"type": "Image",
@@ -198001,9 +115697,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00696",
"type": "ImageService3",
@@ -198013,11 +115707,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00696",
"@type": "ImageService2",
@@ -198027,45 +115719,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00696/canvas"
-
}
-
]
-
}
-
]
-
},
{
+ "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00697/canvas",
- "id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00697/canvas",
-
- "type": "Canvas",
-
- "label": {
-
- "sv": [
-
- "Bild 697"
-
- ],
-
- "en": [
-
- "Image 697"
+ "type": "Canvas",
- ]
+ "label": {
+ "sv": ["Bild 697"],
+ "en": ["Image 697"]
},
"width": 5792,
@@ -198073,199 +115746,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00697"]}
-
+ "value": { "none": ["A0067545_00697"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00697"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00697"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00697"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00697"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9959
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9959
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00697.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00697"]},
+ "label": { "en": ["ALTO XML for A0067545_00697"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00697/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00697/annotation",
"type": "Annotation",
@@ -198273,7 +115852,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00697/full/max/0/default.jpg",
"type": "Image",
@@ -198285,9 +115863,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00697",
"type": "ImageService3",
@@ -198297,11 +115873,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00697",
"@type": "ImageService2",
@@ -198311,45 +115885,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00697/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00698/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 698"],
- "sv": [
-
- "Bild 698"
-
- ],
-
- "en": [
-
- "Image 698"
-
- ]
-
+ "en": ["Image 698"]
},
"width": 5824,
@@ -198357,199 +115912,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00698"]}
-
+ "value": { "none": ["A0067545_00698"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00698"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00698"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00698"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00698"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9957
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9957
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00698.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00698"]},
+ "label": { "en": ["ALTO XML for A0067545_00698"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00698/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00698/annotation",
"type": "Annotation",
@@ -198557,7 +116018,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00698/full/max/0/default.jpg",
"type": "Image",
@@ -198569,9 +116029,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00698",
"type": "ImageService3",
@@ -198581,11 +116039,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00698",
"@type": "ImageService2",
@@ -198595,45 +116051,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00698/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00699/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 699"],
- "sv": [
-
- "Bild 699"
-
- ],
-
- "en": [
-
- "Image 699"
-
- ]
-
+ "en": ["Image 699"]
},
"width": 5864,
@@ -198641,199 +116078,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00699"]}
-
+ "value": { "none": ["A0067545_00699"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00699"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00699"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00699"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00699"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9934
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9934
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00699.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00699"]},
+ "label": { "en": ["ALTO XML for A0067545_00699"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00699/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00699/annotation",
"type": "Annotation",
@@ -198841,7 +116184,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00699/full/max/0/default.jpg",
"type": "Image",
@@ -198853,9 +116195,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00699",
"type": "ImageService3",
@@ -198865,11 +116205,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00699",
"@type": "ImageService2",
@@ -198879,45 +116217,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00699/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00700/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 700"],
- "sv": [
-
- "Bild 700"
-
- ],
-
- "en": [
-
- "Image 700"
-
- ]
-
+ "en": ["Image 700"]
},
"width": 5928,
@@ -198925,199 +116244,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00700"]}
-
+ "value": { "none": ["A0067545_00700"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00700"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00700"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00700"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00700"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00700.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00700"]},
+ "label": { "en": ["ALTO XML for A0067545_00700"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00700/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00700/annotation",
"type": "Annotation",
@@ -199125,7 +116350,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00700/full/max/0/default.jpg",
"type": "Image",
@@ -199137,9 +116361,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00700",
"type": "ImageService3",
@@ -199149,11 +116371,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00700",
"@type": "ImageService2",
@@ -199163,45 +116383,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00700/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00701/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 701"],
- "sv": [
-
- "Bild 701"
-
- ],
-
- "en": [
-
- "Image 701"
-
- ]
-
+ "en": ["Image 701"]
},
"width": 5856,
@@ -199209,199 +116410,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00701"]}
-
+ "value": { "none": ["A0067545_00701"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00701"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00701"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00701"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00701"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9969
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9969
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00701.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00701"]},
+ "label": { "en": ["ALTO XML for A0067545_00701"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00701/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00701/annotation",
"type": "Annotation",
@@ -199409,7 +116516,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00701/full/max/0/default.jpg",
"type": "Image",
@@ -199421,9 +116527,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00701",
"type": "ImageService3",
@@ -199433,11 +116537,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00701",
"@type": "ImageService2",
@@ -199447,45 +116549,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00701/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00702/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 702"],
- "sv": [
-
- "Bild 702"
-
- ],
-
- "en": [
-
- "Image 702"
-
- ]
-
+ "en": ["Image 702"]
},
"width": 5864,
@@ -199493,199 +116576,105 @@
"height": 5064,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00702"]}
-
+ "value": { "none": ["A0067545_00702"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00702"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00702"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00702"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00702"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9976
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9976
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00702.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00702"]},
+ "label": { "en": ["ALTO XML for A0067545_00702"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00702/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00702/annotation",
"type": "Annotation",
@@ -199693,7 +116682,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00702/full/max/0/default.jpg",
"type": "Image",
@@ -199705,9 +116693,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00702",
"type": "ImageService3",
@@ -199717,11 +116703,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00702",
"@type": "ImageService2",
@@ -199731,45 +116715,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00702/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00703/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 703"],
- "sv": [
-
- "Bild 703"
-
- ],
-
- "en": [
-
- "Image 703"
-
- ]
-
+ "en": ["Image 703"]
},
"width": 5824,
@@ -199777,199 +116742,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00703"]}
-
+ "value": { "none": ["A0067545_00703"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00703"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00703"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00703"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00703"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9968
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9968
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00703.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00703"]},
+ "label": { "en": ["ALTO XML for A0067545_00703"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00703/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00703/annotation",
"type": "Annotation",
@@ -199977,7 +116848,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00703/full/max/0/default.jpg",
"type": "Image",
@@ -199989,9 +116859,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00703",
"type": "ImageService3",
@@ -200001,11 +116869,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00703",
"@type": "ImageService2",
@@ -200015,45 +116881,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00703/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00704/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 704"],
- "sv": [
-
- "Bild 704"
-
- ],
-
- "en": [
-
- "Image 704"
-
- ]
-
+ "en": ["Image 704"]
},
"width": 5856,
@@ -200061,199 +116908,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00704"]}
-
+ "value": { "none": ["A0067545_00704"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00704"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00704"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00704"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00704"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.9814
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.9814
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00704.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00704"]},
+ "label": { "en": ["ALTO XML for A0067545_00704"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00704/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00704/annotation",
"type": "Annotation",
@@ -200261,7 +117014,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00704/full/max/0/default.jpg",
"type": "Image",
@@ -200273,9 +117025,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00704",
"type": "ImageService3",
@@ -200285,11 +117035,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00704",
"@type": "ImageService2",
@@ -200299,45 +117047,26 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00704/canvas"
-
}
-
]
-
}
-
]
-
},
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00705/canvas",
"type": "Canvas",
"label": {
+ "sv": ["Bild 705"],
- "sv": [
-
- "Bild 705"
-
- ],
-
- "en": [
-
- "Image 705"
-
- ]
-
+ "en": ["Image 705"]
},
"width": 5864,
@@ -200345,199 +117074,105 @@
"height": 5032,
"metadata": [
-
{
-
"label": {
+ "sv": ["Bildid"],
- "sv": [
-
- "Bildid"
-
- ],
-
- "en": [
-
- "Image ID"
-
- ]
-
+ "en": ["Image ID"]
},
- "value": {"none":["A0067545_00705"]}
-
+ "value": { "none": ["A0067545_00705"] }
},
{
-
"label": {
+ "sv": ["Länk"],
- "sv": [
-
- "Länk"
-
- ],
-
- "en": [
-
- "Link"
-
- ]
-
+ "en": ["Link"]
},
"value": {
-
- "none": [
-
- "https://sok.riksarkivet.se/bildvisning/A0067545_00705"
-
- ]
-
+ "none": ["https://sok.riksarkivet.se/bildvisning/A0067545_00705"]
}
-
},
{
-
"label": {
+ "sv": ["Källhänvisning"],
- "sv": [
-
- "Källhänvisning"
-
- ],
-
- "en": [
-
- "Source reference"
-
- ]
-
+ "en": ["Source reference"]
},
"value": {
-
"sv": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), bildid: A0067545_00705"
-
],
"en": [
-
"Bergskollegium, Rättsprotokoll, slutserie (från o. 1811), SE/RA/420013/02/E IV/5 (1816), Image ID: A0067545_00705"
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Transkriptionsmetod"],
- "sv": [
-
- "Transkriptionsmetod"
-
- ],
-
- "en": [
-
- "Transcription method"
-
- ]
-
+ "en": ["Transcription method"]
},
"value": {
-
"sv": [
-
"Texten är skapad med artificiell intelligens och kan innehålla fel."
-
],
"en": [
-
"The text is created with artificial intelligence and may contain errors."
-
]
-
}
-
},
{
-
"label": {
+ "sv": ["Konfidensvärde"],
- "sv": [
-
- "Konfidensvärde"
-
- ],
-
- "en": [
-
- "Confidence value"
-
- ]
-
+ "en": ["Confidence value"]
},
"value": {
-
"sv": [
-
"0.0000
Konfidensvärdet (0-1) är ett tekniskt mått på hur AI-modellen bedömer sin egen texttolkning. Värdet kan inte översättas till procentuell säkerhet. Ett högt värde indikerar att AI-modellen är säkrare på sin tolkning än när värdet är lågt."
-
],
"en": [
-
"0.0000
The confidence value (0-1) is a technical measurement of how the AI model assesses its own text interpretation. The value cannot be translated to percentage certainty. A high value indicates that the AI model is more confident in its interpretation than when the value is low."
-
]
-
}
-
}
-
],
"seeAlso": [
-
{
-
"id": "https://sok.riksarkivet.se/dokument/alto/A006/A0067545/A0067545_00705.xml",
"type": "ALTO",
"profile": "http://www.loc.gov/standards/alto/ns-v4#",
- "label": {"en":["ALTO XML for A0067545_00705"]},
+ "label": { "en": ["ALTO XML for A0067545_00705"] },
"format": "application/xml+alto"
-
}
-
],
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00705/annotationpage",
"type": "AnnotationPage",
"items": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00705/annotation",
"type": "Annotation",
@@ -200545,7 +117180,6 @@
"motivation": "painting",
"body": {
-
"id": "https://lbiiif.riksarkivet.se/arkis!A0067545_00705/full/max/0/default.jpg",
"type": "Image",
@@ -200557,9 +117191,7 @@
"format": "image/jpeg",
"service": [
-
{
-
"id": "https://lbiiif.riksarkivet.se/v3/arkis!A0067545_00705",
"type": "ImageService3",
@@ -200569,11 +117201,9 @@
"width": 0,
"height": 0
-
},
{
-
"@id": "https://lbiiif.riksarkivet.se/v2/arkis!A0067545_00705",
"@type": "ImageService2",
@@ -200583,25 +117213,15 @@
"width": 0,
"height": 0
-
}
-
]
-
},
"target": "https://lbiiif.riksarkivet.se/arkis!A0067545_00705/canvas"
-
}
-
]
-
}
-
]
-
}
-
]
-
-}
\ No newline at end of file
+}
diff --git a/__tests__/fixtures/wunder-pres2.json b/__tests__/fixtures/wunder-pres2.json
index 234762c..4498dfe 100644
--- a/__tests__/fixtures/wunder-pres2.json
+++ b/__tests__/fixtures/wunder-pres2.json
@@ -34,35 +34,35 @@
}
],
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"license": "http://creativecommons.org/licenses/by-nc/4.0/",
"logo": "https://iiif.wellcomecollection.org/logos/wellcome-collection-black.png",
"related": {
@@ -125,35 +125,35 @@
"@type": "sc:Canvas",
"label": "-",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 742,
- "height": 1024,
- "sizes": [
- {
- "width": 73,
- "height": 100
- },
- {
- "width": 145,
- "height": 200
- },
- {
- "width": 290,
- "height": 400
- },
- {
- "width": 742,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2/full/73,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0001.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 742,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 73,
+ "height": 100
+ },
+ {
+ "width": 145,
+ "height": 200
+ },
+ {
+ "width": 290,
+ "height": 400
+ },
+ {
+ "width": 742,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0001.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -199,35 +199,35 @@
"@type": "sc:Canvas",
"label": "-",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0003.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0003.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -273,35 +273,35 @@
"@type": "sc:Canvas",
"label": "-",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0004.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0004.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -347,35 +347,35 @@
"@type": "sc:Canvas",
"label": "2",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0005.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0005.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -421,35 +421,35 @@
"@type": "sc:Canvas",
"label": "3",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0006.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0006.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -495,35 +495,35 @@
"@type": "sc:Canvas",
"label": "4",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2/full/73,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 752,
- "height": 1024,
- "sizes": [
- {
- "width": 73,
- "height": 100
- },
- {
- "width": 147,
- "height": 200
- },
- {
- "width": 294,
- "height": 400
- },
- {
- "width": 752,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2/full/73,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0007.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 752,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 73,
+ "height": 100
+ },
+ {
+ "width": 147,
+ "height": 200
+ },
+ {
+ "width": 294,
+ "height": 400
+ },
+ {
+ "width": 752,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0007.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -569,35 +569,35 @@
"@type": "sc:Canvas",
"label": "5",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2/full/73,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 750,
- "height": 1024,
- "sizes": [
- {
- "width": 73,
- "height": 100
- },
- {
- "width": 147,
- "height": 200
- },
- {
- "width": 293,
- "height": 400
- },
- {
- "width": 750,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2/full/73,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0008.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 750,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 73,
+ "height": 100
+ },
+ {
+ "width": 147,
+ "height": 200
+ },
+ {
+ "width": 293,
+ "height": 400
+ },
+ {
+ "width": 750,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0008.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -643,35 +643,35 @@
"@type": "sc:Canvas",
"label": "6",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0009.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0009.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -717,35 +717,35 @@
"@type": "sc:Canvas",
"label": "7",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0010.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0010.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -791,35 +791,35 @@
"@type": "sc:Canvas",
"label": "8",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0011.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0011.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -865,35 +865,35 @@
"@type": "sc:Canvas",
"label": "9",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0012.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0012.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -939,35 +939,35 @@
"@type": "sc:Canvas",
"label": "10",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0013.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0013.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1013,35 +1013,35 @@
"@type": "sc:Canvas",
"label": "11",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0014.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0014.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1087,35 +1087,35 @@
"@type": "sc:Canvas",
"label": "12",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0015.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0015.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1161,35 +1161,35 @@
"@type": "sc:Canvas",
"label": "13",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0016.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0016.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1235,35 +1235,35 @@
"@type": "sc:Canvas",
"label": "14",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0017.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0017.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1309,35 +1309,35 @@
"@type": "sc:Canvas",
"label": "15",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0018.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0018.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1383,35 +1383,35 @@
"@type": "sc:Canvas",
"label": "16",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0019.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0019.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1457,35 +1457,35 @@
"@type": "sc:Canvas",
"label": "17",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0020.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0020.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1531,35 +1531,35 @@
"@type": "sc:Canvas",
"label": "18",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0021.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0021.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1605,35 +1605,35 @@
"@type": "sc:Canvas",
"label": "19",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0022.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0022.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1679,35 +1679,35 @@
"@type": "sc:Canvas",
"label": "20",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0023.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0023.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1753,35 +1753,35 @@
"@type": "sc:Canvas",
"label": "21",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0024.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0024.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1827,35 +1827,35 @@
"@type": "sc:Canvas",
"label": "22",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0025.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0025.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1901,35 +1901,35 @@
"@type": "sc:Canvas",
"label": "23",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0026.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0026.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -1975,35 +1975,35 @@
"@type": "sc:Canvas",
"label": "24",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0027.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0027.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2049,35 +2049,35 @@
"@type": "sc:Canvas",
"label": "25",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0028.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0028.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2123,35 +2123,35 @@
"@type": "sc:Canvas",
"label": "26",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0029.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0029.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2197,35 +2197,35 @@
"@type": "sc:Canvas",
"label": "27",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0030.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0030.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2271,35 +2271,35 @@
"@type": "sc:Canvas",
"label": "28",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0031.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0031.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2345,35 +2345,35 @@
"@type": "sc:Canvas",
"label": "29",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0032.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0032.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2419,35 +2419,35 @@
"@type": "sc:Canvas",
"label": "30",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0033.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0033.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2493,35 +2493,35 @@
"@type": "sc:Canvas",
"label": "31",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0034.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0034.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2567,35 +2567,35 @@
"@type": "sc:Canvas",
"label": "-",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0035.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0035.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2641,35 +2641,35 @@
"@type": "sc:Canvas",
"label": "-",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2/full/72,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 732,
- "height": 1024,
- "sizes": [
- {
- "width": 72,
- "height": 100
- },
- {
- "width": 143,
- "height": 200
- },
- {
- "width": 286,
- "height": 400
- },
- {
- "width": 732,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2/full/72,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0036.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 732,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 72,
+ "height": 100
+ },
+ {
+ "width": 143,
+ "height": 200
+ },
+ {
+ "width": 286,
+ "height": 400
+ },
+ {
+ "width": 732,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0036.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2715,35 +2715,35 @@
"@type": "sc:Canvas",
"label": "-",
"thumbnail": {
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2/full/73,100/0/default.jpg",
- "@type": "dctypes:Image",
- "service": {
- "@context": "http://iiif.io/api/image/2/context.json",
- "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2",
- "profile": "http://iiif.io/api/image/2/level0.json",
- "protocol": "http://iiif.io/api/image",
- "width": 751,
- "height": 1024,
- "sizes": [
- {
- "width": 73,
- "height": 100
- },
- {
- "width": 147,
- "height": 200
- },
- {
- "width": 294,
- "height": 400
- },
- {
- "width": 751,
- "height": 1024
- }
- ]
- }
-},
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2/full/73,100/0/default.jpg",
+ "@type": "dctypes:Image",
+ "service": {
+ "@context": "http://iiif.io/api/image/2/context.json",
+ "@id": "https://iiif.wellcomecollection.org/thumbs/b18035723_0002.JP2",
+ "profile": "http://iiif.io/api/image/2/level0.json",
+ "protocol": "http://iiif.io/api/image",
+ "width": 751,
+ "height": 1024,
+ "sizes": [
+ {
+ "width": 73,
+ "height": 100
+ },
+ {
+ "width": 147,
+ "height": 200
+ },
+ {
+ "width": 294,
+ "height": 400
+ },
+ {
+ "width": 751,
+ "height": 1024
+ }
+ ]
+ }
+ },
"seeAlso": {
"@id": "https://api.wellcomecollection.org/text/alto/b18035723/b18035723_0002.JP2",
"profile": "http://www.loc.gov/standards/alto/v3/alto.xsd",
@@ -2824,4 +2824,4 @@
}
],
"within": "https://iiif.wellcomecollection.org/presentation/v2/collections/contributors/xtwzf3g5"
-}
\ No newline at end of file
+}
diff --git a/__tests__/helper.test.ts b/__tests__/helper.test.ts
index a79a679..344e2f7 100644
--- a/__tests__/helper.test.ts
+++ b/__tests__/helper.test.ts
@@ -1,15 +1,15 @@
-import { loadManifestJson } from '../src';
-import { ExternalResource } from '../src/ExternalResource';
-
-const blAvAuthNew = require('./fixtures/bl-av-auth.json');
-const blAvAuth = require('./fixtures/prev-auth.json');
-const utexasRightsLogoReqStatement = require('./fixtures/utexas-rights-logo-reqStatement.json');
-const searchService2 = require('./fixtures/search-service-2.json');
-const riksarkivetAltoAnnotations = require('./fixtures/riksarkivet.json');
-const cookbookAnnotationsEmbedded = require('./fixtures/cookbook-annotations-embedded.json');
-const wunder = require('./fixtures/wunder-pres2.json');
-const brideMatch = require('./fixtures/bride-match.json');
-const brideDiff = require('./fixtures/bride-diff.json');
+import { loadManifestJson } from "../src";
+import { ExternalResource } from "../src/ExternalResource";
+
+const blAvAuthNew = require("./fixtures/bl-av-auth.json");
+const blAvAuth = require("./fixtures/prev-auth.json");
+const utexasRightsLogoReqStatement = require("./fixtures/utexas-rights-logo-reqStatement.json");
+const searchService2 = require("./fixtures/search-service-2.json");
+const riksarkivetAltoAnnotations = require("./fixtures/riksarkivet.json");
+const cookbookAnnotationsEmbedded = require("./fixtures/cookbook-annotations-embedded.json");
+const wunder = require("./fixtures/wunder-pres2.json");
+const brideMatch = require("./fixtures/bride-match.json");
+const brideDiff = require("./fixtures/bride-diff.json");
function mockFetch(status: number, data?: any) {
const xhrMockObj = {
@@ -28,19 +28,19 @@ function mockFetch(status: number, data?: any) {
window.XMLHttpRequest = jest.fn().mockImplementation(xhrMockClass);
setTimeout(() => {
- if (xhrMockObj['onload']) {
+ if (xhrMockObj["onload"]) {
// @ts-ignore
- xhrMockObj['onload']();
+ xhrMockObj["onload"]();
}
}, 0);
}
-function getMetadataValue(MetadataGroups: any[], metaLabel: string){
+function getMetadataValue(MetadataGroups: any[], metaLabel: string) {
let metaValue = "";
- MetadataGroups.forEach(group => {
- group.items.forEach(item => {
+ MetadataGroups.forEach((group) => {
+ group.items.forEach((item) => {
const labelText =
- item.label?.getValue?.("en-GB") ??
+ item.label?.getValue?.("en-GB") ??
item.label?.getValue?.() ??
item.label?.toString?.();
if (labelText && labelText.trim().toLowerCase() === metaLabel) {
@@ -51,86 +51,93 @@ function getMetadataValue(MetadataGroups: any[], metaLabel: string){
}
});
});
- return (metaValue);
+ return metaValue;
}
-describe('Helper', () => {
-
- test('getMetadata records summary as description when duplicate value present in metadata for brideMatch manifest', async () => {
+describe("Helper", () => {
+ test("getMetadata records summary as description when duplicate value present in metadata for brideMatch manifest", async () => {
const helper = await loadManifestJson(brideMatch, {
- manifestUri: brideMatch.id, locale: 'cy'
+ manifestUri: brideMatch.id,
+ locale: "cy",
});
const MetadataGroups = helper.getMetadata();
let check = false;
- let summary = getMetadataValue(MetadataGroups,'summary');
- let description = getMetadataValue(MetadataGroups,'description');
- if(description != "" && summary === ""){check = true};
+ const summary = getMetadataValue(MetadataGroups, "summary");
+ const description = getMetadataValue(MetadataGroups, "description");
+ if (description != "" && summary === "") {
+ check = true;
+ }
expect(check).toBe(true);
});
- test('getMetadata records summary as summary when no duplicate value present in metadata for brideDiff manifest', async () => {
+ test("getMetadata records summary as summary when no duplicate value present in metadata for brideDiff manifest", async () => {
const helper = await loadManifestJson(brideDiff, {
- manifestUri: brideDiff.id
+ manifestUri: brideDiff.id,
});
const MetadataGroups = helper.getMetadata();
let check = false;
- let summary = getMetadataValue(MetadataGroups,'summary');
- let description = getMetadataValue(MetadataGroups,'description');
- if(description != "" && summary != ""){check = true};
+ const summary = getMetadataValue(MetadataGroups, "summary");
+ const description = getMetadataValue(MetadataGroups, "description");
+ if (description != "" && summary != "") {
+ check = true;
+ }
expect(check).toBe(true);
});
- test('getMetadata records summary as Description when locale is not En in metadata for brideDiff manifest', async () => {
+ test("getMetadata records summary as Description when locale is not En in metadata for brideDiff manifest", async () => {
const helper = await loadManifestJson(brideDiff, {
- manifestUri: brideDiff.id, locale: 'cy'
+ manifestUri: brideDiff.id,
+ locale: "cy",
});
const MetadataGroups = helper.getMetadata();
let check = false;
- let summary = getMetadataValue(MetadataGroups,'summary');
- let description = getMetadataValue(MetadataGroups,'description');
- if(description != "" && summary === ""){check = true};
+ const summary = getMetadataValue(MetadataGroups, "summary");
+ const description = getMetadataValue(MetadataGroups, "description");
+ if (description != "" && summary === "") {
+ check = true;
+ }
expect(check).toBe(true);
});
- test('hasAnnotations returns true for single seeAlso object on pres2 manifest', async () => {
+ test("hasAnnotations returns true for single seeAlso object on pres2 manifest", async () => {
const helper = await loadManifestJson(wunder, {
- manifestUri: wunder.id
+ manifestUri: wunder.id,
});
expect(helper).toBeDefined();
expect(helper.hasAnnotations()).toBe(true);
});
- test('hasAnnotations returns false when no canvas has annotations', async () => {
+ test("hasAnnotations returns false when no canvas has annotations", async () => {
const helper = await loadManifestJson(utexasRightsLogoReqStatement, {
- manifestUri: utexasRightsLogoReqStatement.id
+ manifestUri: utexasRightsLogoReqStatement.id,
});
expect(helper).toBeDefined();
expect(helper.hasAnnotations()).toBe(false);
});
- test('hasAnnotations returns true when manifest has ALTO annotations in seeAlso on any canvas', async () => {
+ test("hasAnnotations returns true when manifest has ALTO annotations in seeAlso on any canvas", async () => {
const helper = await loadManifestJson(riksarkivetAltoAnnotations, {
- manifestUri: riksarkivetAltoAnnotations.id
+ manifestUri: riksarkivetAltoAnnotations.id,
});
expect(helper).toBeDefined();
expect(helper.hasAnnotations()).toBe(true);
});
- test('hasAnnotations returns true when manifest has embedded W3C annotations on any canvas', async () => {
+ test("hasAnnotations returns true when manifest has embedded W3C annotations on any canvas", async () => {
const helper = await loadManifestJson(cookbookAnnotationsEmbedded, {
- manifestUri: cookbookAnnotationsEmbedded.id
+ manifestUri: cookbookAnnotationsEmbedded.id,
});
expect(helper).toBeDefined();
expect(helper.hasAnnotations()).toBe(true);
});
- test('Search Service 2 got from manifest', async () => {
+ test("Search Service 2 got from manifest", async () => {
const helper = await loadManifestJson(searchService2, {
- manifestUri: searchService2.id
+ manifestUri: searchService2.id,
});
expect(helper).toBeDefined();
@@ -139,15 +146,17 @@ describe('Helper', () => {
expect(searchService).toBeDefined();
if (searchService) {
- expect(searchService.id).toBe('https://bl-annosearch.onrender.com/m0001/search');
- };
- })
+ expect(searchService.id).toBe(
+ "https://bl-annosearch.onrender.com/m0001/search"
+ );
+ }
+ });
const v3metadataFixture = utexasRightsLogoReqStatement;
- test('Rights got from v3 manifest', async () => {
+ test("Rights got from v3 manifest", async () => {
const helper = await loadManifestJson(v3metadataFixture, {
- manifestUri: v3metadataFixture.id
+ manifestUri: v3metadataFixture.id,
});
expect(helper).toBeDefined();
@@ -155,12 +164,12 @@ describe('Helper', () => {
const rights = helper.getRights();
expect(rights).toBeDefined();
- expect(rights).toBe('http://rightsstatements.org/vocab/InC/1.0/');
- })
+ expect(rights).toBe("http://rightsstatements.org/vocab/InC/1.0/");
+ });
- test('Required Statement got from v3 manifest', async () => {
+ test("Required Statement got from v3 manifest", async () => {
const helper = await loadManifestJson(v3metadataFixture, {
- manifestUri: v3metadataFixture.id
+ manifestUri: v3metadataFixture.id,
});
expect(helper).toBeDefined();
@@ -170,52 +179,57 @@ describe('Helper', () => {
expect(reqStatement).toBeDefined();
if (reqStatement) {
- expect(reqStatement.value).toBe("This material is made available for education and research purposes. The Harry Ransom Center does not own the rights for this item; it cannot grant or deny permission to use this material. Copyright law protects unpublished as well as published materials. Rights holders for these materials may be listed in the WATCH file: http://norman.hrc.utexas.edu/watch/. It is your responsibility to determine the rights status and secure whatever permission may be needed for the use of this item.")
+ expect(reqStatement.value).toBe(
+ "This material is made available for education and research purposes. The Harry Ransom Center does not own the rights for this item; it cannot grant or deny permission to use this material. Copyright law protects unpublished as well as published materials. Rights holders for these materials may be listed in the WATCH file: http://norman.hrc.utexas.edu/watch/. It is your responsibility to determine the rights status and secure whatever permission may be needed for the use of this item."
+ );
}
- })
+ });
- test('Logo got from v3 manifest', async () => {
+ test("Logo got from v3 manifest", async () => {
const helper = await loadManifestJson(v3metadataFixture, {
- manifestUri: v3metadataFixture.id
+ manifestUri: v3metadataFixture.id,
});
expect(helper).toBeDefined();
const logo = helper.getLogo();
expect(logo).toBeDefined();
- expect(logo).toBe("https://norman.hrc.utexas.edu/includes/images/hrc-logo-iiif.jpg");
- })
+ expect(logo).toBe(
+ "https://norman.hrc.utexas.edu/includes/images/hrc-logo-iiif.jpg"
+ );
+ });
- test('v3 metadata group includes rights, logo, requiredStatement', async () => {
+ test("v3 metadata group includes rights, logo, requiredStatement", async () => {
const helper = await loadManifestJson(v3metadataFixture, {
- manifestUri: v3metadataFixture.id
+ manifestUri: v3metadataFixture.id,
});
expect(helper).toBeDefined();
const metadataGroups = helper.getMetadata();
- const hasRights = metadataGroups.some(metadataGroup =>
- metadataGroup.items.some(item => item.getLabel() === 'rights'))
+ const hasRights = metadataGroups.some((metadataGroup) =>
+ metadataGroup.items.some((item) => item.getLabel() === "rights")
+ );
expect(hasRights).toBe(true);
- const hasLogo = metadataGroups.some(metadataGroup =>
- metadataGroup.items.some(item => item.getLabel() === 'logo'))
+ const hasLogo = metadataGroups.some((metadataGroup) =>
+ metadataGroup.items.some((item) => item.getLabel() === "logo")
+ );
expect(hasLogo).toBe(true);
- const hasReqStatement = metadataGroups.some(metadataGroup =>
- metadataGroup.items.some(item => item.getLabel() === 'Rights Note'))
+ const hasReqStatement = metadataGroups.some((metadataGroup) =>
+ metadataGroup.items.some((item) => item.getLabel() === "Rights Note")
+ );
expect(hasReqStatement).toBe(true);
+ });
- })
-
- test('New format works using service profile', async () => {
-
+ test("New format works using service profile", async () => {
const helper = await loadManifestJson(blAvAuthNew, {
- manifestUri: blAvAuth.id
+ manifestUri: blAvAuth.id,
});
expect(helper).toBeDefined();
@@ -244,13 +258,11 @@ describe('Helper', () => {
expect(externalResource.dataUri).not.toBe(null);
expect(externalResource.isProbed).toBe(true);
expect(externalResource.isResponseHandled).toBe(false);
+ });
- })
-
- test('previous format still works using service profile', async () => {
-
+ test("previous format still works using service profile", async () => {
const helper = await loadManifestJson(blAvAuth, {
- manifestUri: blAvAuth.id
+ manifestUri: blAvAuth.id,
});
expect(helper).toBeDefined();
@@ -279,7 +291,5 @@ describe('Helper', () => {
expect(externalResource.dataUri).not.toBe(null);
expect(externalResource.isProbed).toBe(true);
expect(externalResource.isResponseHandled).toBe(false);
-
- })
-
+ });
});
diff --git a/package.json b/package.json
index 34aff05..52c2a7b 100644
--- a/package.json
+++ b/package.json
@@ -14,8 +14,8 @@
"build:var": "cross-env NODE_WEBPACK_LIBRARY_PATH=dist-var NODE_WEBPACK_LIBRARY_TARGET=var webpack",
"build": "npm run fix && npm run clean && npm run build:commonjs && npm run build:esmodule && npm run build:umd && npm run build:var && npm run build:types",
"clean": "rimraf -rf dist-umd dist-commonjs dist-esmodule dist-var types",
- "lint": "eslint --fix \"./src/**/*.{js,jsx,json,css,ts,tsx}\"",
- "prettify": "prettier --write \"./src/**/*.{js,jsx,json,css,ts,tsx}\" --ignore-path .prettierignore",
+ "lint": "eslint --fix \"./{src,__tests__}/**/*.{js,jsx,json,css,ts,tsx}\"",
+ "prettify": "prettier --write \"./{src,__tests__}/**/*.{js,jsx,json,css,ts,tsx}\" --ignore-path .prettierignore",
"fix": "npm run lint && npm run prettify",
"test": "jest",
"test:watch": "jest --watch",
From 6023dfcf96bcb0ffc7d49cc480dd9ce7d967f338 Mon Sep 17 00:00:00 2001
From: Jason Benson
Date: Wed, 3 Dec 2025 14:03:45 -0500
Subject: [PATCH 09/12] clean up
---
__tests__/fixtures/bride-diff.json | 4 +--
__tests__/fixtures/bride-match.json | 8 ++---
__tests__/helper.test.ts | 53 +++++++++++++----------------
3 files changed, 26 insertions(+), 39 deletions(-)
diff --git a/__tests__/fixtures/bride-diff.json b/__tests__/fixtures/bride-diff.json
index 443441d..6cb3428 100644
--- a/__tests__/fixtures/bride-diff.json
+++ b/__tests__/fixtures/bride-diff.json
@@ -144,9 +144,7 @@
}
],
"summary": {
- "en": [
- "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
- ]
+ "en": ["Bride of the Tomb"]
},
"requiredStatement": {
"label": {
diff --git a/__tests__/fixtures/bride-match.json b/__tests__/fixtures/bride-match.json
index 31a24e2..049de55 100644
--- a/__tests__/fixtures/bride-match.json
+++ b/__tests__/fixtures/bride-match.json
@@ -141,16 +141,12 @@
"en": ["Description"]
},
"value": {
- "en": [
- "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
- ]
+ "en": ["Bride of the Tomb"]
}
}
],
"summary": {
- "en": [
- "OC PS2394 .M642 1883 [xiv], 144, 126, [4] p. ; 18 cm. First set of unnumbered pages are a series list; second set are a publisher's catalog.
"
- ]
+ "en": ["Bride of the Tomb"]
},
"requiredStatement": {
"label": {
diff --git a/__tests__/helper.test.ts b/__tests__/helper.test.ts
index 344e2f7..389bafa 100644
--- a/__tests__/helper.test.ts
+++ b/__tests__/helper.test.ts
@@ -35,19 +35,20 @@ function mockFetch(status: number, data?: any) {
}, 0);
}
-function getMetadataValue(MetadataGroups: any[], metaLabel: string) {
- let metaValue = "";
- MetadataGroups.forEach((group) => {
+function getMetadataValue(metadataGroups: any[], metaLabel: string) {
+ const metaValue: any[] = [];
+ metadataGroups.forEach((group) => {
group.items.forEach((item) => {
const labelText =
item.label?.getValue?.("en-GB") ??
item.label?.getValue?.() ??
item.label?.toString?.();
if (labelText && labelText.trim().toLowerCase() === metaLabel) {
- metaValue =
+ metaValue.push(
item.value?.getValue?.("en-GB") ??
- item.value?.getValue?.() ??
- item.value?.toString?.();
+ item.value?.getValue?.() ??
+ item.value?.toString?.()
+ );
}
});
});
@@ -60,28 +61,22 @@ describe("Helper", () => {
manifestUri: brideMatch.id,
locale: "cy",
});
- const MetadataGroups = helper.getMetadata();
- let check = false;
- const summary = getMetadataValue(MetadataGroups, "summary");
- const description = getMetadataValue(MetadataGroups, "description");
- if (description != "" && summary === "") {
- check = true;
- }
- expect(check).toBe(true);
+ const metadataGroups = helper.getMetadata();
+ const summary = [getMetadataValue(metadataGroups, "summary")];
+ const description = [getMetadataValue(metadataGroups, "description")];
+ expect(description[0]).toEqual(["Bride of the Tomb"]);
+ expect(summary[0]).toEqual([]);
});
test("getMetadata records summary as summary when no duplicate value present in metadata for brideDiff manifest", async () => {
const helper = await loadManifestJson(brideDiff, {
manifestUri: brideDiff.id,
});
- const MetadataGroups = helper.getMetadata();
- let check = false;
- const summary = getMetadataValue(MetadataGroups, "summary");
- const description = getMetadataValue(MetadataGroups, "description");
- if (description != "" && summary != "") {
- check = true;
- }
- expect(check).toBe(true);
+ const metadataGroups = helper.getMetadata();
+ const summary = [getMetadataValue(metadataGroups, "summary")];
+ const description = [getMetadataValue(metadataGroups, "description")];
+ expect(description[0]).toEqual(["fnord"]);
+ expect(summary[0]).toEqual(["Bride of the Tomb"]);
});
test("getMetadata records summary as Description when locale is not En in metadata for brideDiff manifest", async () => {
@@ -89,14 +84,12 @@ describe("Helper", () => {
manifestUri: brideDiff.id,
locale: "cy",
});
- const MetadataGroups = helper.getMetadata();
- let check = false;
- const summary = getMetadataValue(MetadataGroups, "summary");
- const description = getMetadataValue(MetadataGroups, "description");
- if (description != "" && summary === "") {
- check = true;
- }
- expect(check).toBe(true);
+ const metadataGroups = helper.getMetadata();
+ const summary = [getMetadataValue(metadataGroups, "summary")];
+ const description = [getMetadataValue(metadataGroups, "description")];
+ console.log(description[0]);
+ expect(description[0]).toEqual(["fnord", "Bride of the Tomb"]);
+ expect(summary[0]).toEqual([]);
});
test("hasAnnotations returns true for single seeAlso object on pres2 manifest", async () => {
From c0aed75d25f40a2ea9a78f93ac250561c7009b3f Mon Sep 17 00:00:00 2001
From: Jason-Benson
Date: Thu, 4 Dec 2025 10:52:56 -0500
Subject: [PATCH 10/12] Update __tests__/helper.test.ts
Co-authored-by: Demian Katz
---
__tests__/helper.test.ts | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/__tests__/helper.test.ts b/__tests__/helper.test.ts
index 389bafa..382570c 100644
--- a/__tests__/helper.test.ts
+++ b/__tests__/helper.test.ts
@@ -85,11 +85,10 @@ describe("Helper", () => {
locale: "cy",
});
const metadataGroups = helper.getMetadata();
- const summary = [getMetadataValue(metadataGroups, "summary")];
- const description = [getMetadataValue(metadataGroups, "description")];
- console.log(description[0]);
- expect(description[0]).toEqual(["fnord", "Bride of the Tomb"]);
- expect(summary[0]).toEqual([]);
+ const summary = getMetadataValue(metadataGroups, "summary");
+ const description = getMetadataValue(metadataGroups, "description");
+ expect(description).toEqual(["fnord", "Bride of the Tomb"]);
+ expect(summary).toEqual([]);
});
test("hasAnnotations returns true for single seeAlso object on pres2 manifest", async () => {
From 32fc3ba051e85dfe8293dadafdb6e8d0e1999b46 Mon Sep 17 00:00:00 2001
From: Jason-Benson
Date: Thu, 4 Dec 2025 12:23:35 -0500
Subject: [PATCH 11/12] Update __tests__/helper.test.ts
Co-authored-by: Demian Katz
---
__tests__/helper.test.ts | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/__tests__/helper.test.ts b/__tests__/helper.test.ts
index 382570c..27f73d0 100644
--- a/__tests__/helper.test.ts
+++ b/__tests__/helper.test.ts
@@ -73,10 +73,10 @@ describe("Helper", () => {
manifestUri: brideDiff.id,
});
const metadataGroups = helper.getMetadata();
- const summary = [getMetadataValue(metadataGroups, "summary")];
- const description = [getMetadataValue(metadataGroups, "description")];
- expect(description[0]).toEqual(["fnord"]);
- expect(summary[0]).toEqual(["Bride of the Tomb"]);
+ const summary = getMetadataValue(metadataGroups, "summary");
+ const description = getMetadataValue(metadataGroups, "description");
+ expect(description).toEqual(["fnord"]);
+ expect(summary).toEqual(["Bride of the Tomb"]);
});
test("getMetadata records summary as Description when locale is not En in metadata for brideDiff manifest", async () => {
From da802672b56fb7aa92a2e4713efcef796104009c Mon Sep 17 00:00:00 2001
From: Jason-Benson
Date: Thu, 4 Dec 2025 12:23:59 -0500
Subject: [PATCH 12/12] Update __tests__/helper.test.ts
Co-authored-by: Demian Katz
---
__tests__/helper.test.ts | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/__tests__/helper.test.ts b/__tests__/helper.test.ts
index 27f73d0..dfc4de1 100644
--- a/__tests__/helper.test.ts
+++ b/__tests__/helper.test.ts
@@ -62,10 +62,10 @@ describe("Helper", () => {
locale: "cy",
});
const metadataGroups = helper.getMetadata();
- const summary = [getMetadataValue(metadataGroups, "summary")];
- const description = [getMetadataValue(metadataGroups, "description")];
- expect(description[0]).toEqual(["Bride of the Tomb"]);
- expect(summary[0]).toEqual([]);
+ const summary = getMetadataValue(metadataGroups, "summary");
+ const description = getMetadataValue(metadataGroups, "description");
+ expect(description).toEqual(["Bride of the Tomb"]);
+ expect(summary).toEqual([]);
});
test("getMetadata records summary as summary when no duplicate value present in metadata for brideDiff manifest", async () => {