@twin.org/standards-schema-org 0.0.3-next.15 → 0.0.3-next.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,9 +6,13 @@
|
|
|
6
6
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
7
7
|
export const SchemaOrgContexts = {
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* The canonical RDF namespace URI.
|
|
10
10
|
*/
|
|
11
|
-
Namespace: "https://schema.org",
|
|
11
|
+
Namespace: "https://schema.org/",
|
|
12
|
+
/**
|
|
13
|
+
* The value to use in @context.
|
|
14
|
+
*/
|
|
15
|
+
Context: "https://schema.org",
|
|
12
16
|
/**
|
|
13
17
|
* The JSON-LD Context URL.
|
|
14
18
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemaOrgContexts.js","sourceRoot":"","sources":["../../../src/models/schemaOrgContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAChC;;OAEG;IACH,SAAS,EAAE,oBAAoB;
|
|
1
|
+
{"version":3,"file":"schemaOrgContexts.js","sourceRoot":"","sources":["../../../src/models/schemaOrgContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,iBAAiB,GAAG;IAChC;;OAEG;IACH,SAAS,EAAE,qBAAqB;IAEhC;;OAEG;IACH,OAAO,EAAE,oBAAoB;IAE7B;;OAEG;IACH,aAAa,EAAE,4CAA4C;CAClD,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The contexts of schema.org data.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const SchemaOrgContexts = {\n\t/**\n\t * The canonical RDF namespace URI.\n\t */\n\tNamespace: \"https://schema.org/\",\n\n\t/**\n\t * The value to use in @context.\n\t */\n\tContext: \"https://schema.org\",\n\n\t/**\n\t * The JSON-LD Context URL.\n\t */\n\tJsonLdContext: \"https://schema.org/docs/jsonldcontext.json\"\n} as const;\n\n/**\n * The contexts of schema.org data.\n */\nexport type SchemaOrgContexts = (typeof SchemaOrgContexts)[keyof typeof SchemaOrgContexts];\n"]}
|
|
@@ -3,9 +3,13 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const SchemaOrgContexts: {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* The canonical RDF namespace URI.
|
|
7
7
|
*/
|
|
8
|
-
readonly Namespace: "https://schema.org";
|
|
8
|
+
readonly Namespace: "https://schema.org/";
|
|
9
|
+
/**
|
|
10
|
+
* The value to use in @context.
|
|
11
|
+
*/
|
|
12
|
+
readonly Context: "https://schema.org";
|
|
9
13
|
/**
|
|
10
14
|
* The JSON-LD Context URL.
|
|
11
15
|
*/
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @twin.org/standards-schema-org - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.16](https://github.com/twinfoundation/standards/compare/standards-schema-org-v0.0.3-next.15...standards-schema-org-v0.0.3-next.16) (2026-01-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* modifying the schema of the namespace and adding the context ([#112](https://github.com/twinfoundation/standards/issues/112)) ([3fc06fc](https://github.com/twinfoundation/standards/commit/3fc06fcc4e76450499679b8bc12c361526c06146))
|
|
9
|
+
|
|
3
10
|
## [0.0.3-next.15](https://github.com/twinfoundation/standards/compare/standards-schema-org-v0.0.3-next.14...standards-schema-org-v0.0.3-next.15) (2026-01-16)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -8,9 +8,15 @@ The contexts of schema.org data.
|
|
|
8
8
|
|
|
9
9
|
### Namespace
|
|
10
10
|
|
|
11
|
-
> `readonly` **Namespace**: `"https://schema.org"` = `"https://schema.org"`
|
|
11
|
+
> `readonly` **Namespace**: `"https://schema.org/"` = `"https://schema.org/"`
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
The canonical RDF namespace URI.
|
|
14
|
+
|
|
15
|
+
### Context
|
|
16
|
+
|
|
17
|
+
> `readonly` **Context**: `"https://schema.org"` = `"https://schema.org"`
|
|
18
|
+
|
|
19
|
+
The value to use in @context.
|
|
14
20
|
|
|
15
21
|
### JsonLdContext
|
|
16
22
|
|