@twin.org/standards-schema-org 0.0.3-next.16 → 0.0.3-next.18
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.
|
@@ -11,6 +11,8 @@ export const SchemaOrgContexts = {
|
|
|
11
11
|
Namespace: "https://schema.org/",
|
|
12
12
|
/**
|
|
13
13
|
* The value to use in @context.
|
|
14
|
+
* Note: Context differs from Namespace (no trailing slash) as per schema.org specification.
|
|
15
|
+
* The schema.org JSON-LD context URL format does not include a trailing slash.
|
|
14
16
|
*/
|
|
15
17
|
Context: "https://schema.org",
|
|
16
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,qBAAqB;IAEhC
|
|
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;;;;OAIG;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 * Note: Context differs from Namespace (no trailing slash) as per schema.org specification.\n\t * The schema.org JSON-LD context URL format does not include a trailing slash.\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"]}
|
|
@@ -8,6 +8,8 @@ export declare const SchemaOrgContexts: {
|
|
|
8
8
|
readonly Namespace: "https://schema.org/";
|
|
9
9
|
/**
|
|
10
10
|
* The value to use in @context.
|
|
11
|
+
* Note: Context differs from Namespace (no trailing slash) as per schema.org specification.
|
|
12
|
+
* The schema.org JSON-LD context URL format does not include a trailing slash.
|
|
11
13
|
*/
|
|
12
14
|
readonly Context: "https://schema.org";
|
|
13
15
|
/**
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/standards-schema-org - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.18](https://github.com/twinfoundation/standards/compare/standards-schema-org-v0.0.3-next.17...standards-schema-org-v0.0.3-next.18) (2026-01-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-schema-org:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.17](https://github.com/twinfoundation/standards/compare/standards-schema-org-v0.0.3-next.16...standards-schema-org-v0.0.3-next.17) (2026-01-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
16
|
+
|
|
3
17
|
## [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
18
|
|
|
5
19
|
|
|
@@ -17,6 +17,8 @@ The canonical RDF namespace URI.
|
|
|
17
17
|
> `readonly` **Context**: `"https://schema.org"` = `"https://schema.org"`
|
|
18
18
|
|
|
19
19
|
The value to use in @context.
|
|
20
|
+
Note: Context differs from Namespace (no trailing slash) as per schema.org specification.
|
|
21
|
+
The schema.org JSON-LD context URL format does not include a trailing slash.
|
|
20
22
|
|
|
21
23
|
### JsonLdContext
|
|
22
24
|
|