@twin.org/data-json-ld 0.0.1-next.34 → 0.0.1-next.35
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.
- package/dist/cjs/index.cjs +110 -33
- package/dist/esm/index.mjs +110 -33
- package/docs/changelog.md +14 -0
- package/package.json +2 -2
package/dist/cjs/index.cjs
CHANGED
|
@@ -640,13 +640,23 @@ var properties$5 = {
|
|
|
640
640
|
]
|
|
641
641
|
},
|
|
642
642
|
"@index": {
|
|
643
|
-
|
|
643
|
+
type: "string"
|
|
644
644
|
},
|
|
645
645
|
"@id": {
|
|
646
|
-
|
|
646
|
+
anyOf: [
|
|
647
|
+
{
|
|
648
|
+
type: "string"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
type: "array",
|
|
652
|
+
items: {
|
|
653
|
+
type: "string"
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
]
|
|
647
657
|
},
|
|
648
658
|
"@context": {
|
|
649
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
659
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
650
660
|
}
|
|
651
661
|
};
|
|
652
662
|
var required$3 = [
|
|
@@ -1044,10 +1054,20 @@ var JsonLdLanguageMapSchema = {
|
|
|
1044
1054
|
var type$4 = "object";
|
|
1045
1055
|
var properties$3 = {
|
|
1046
1056
|
"@list": {
|
|
1047
|
-
|
|
1057
|
+
anyOf: [
|
|
1058
|
+
{
|
|
1059
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
type: "array",
|
|
1063
|
+
items: {
|
|
1064
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
]
|
|
1048
1068
|
},
|
|
1049
1069
|
"@index": {
|
|
1050
|
-
|
|
1070
|
+
type: "string"
|
|
1051
1071
|
}
|
|
1052
1072
|
};
|
|
1053
1073
|
var required$1 = [
|
|
@@ -1117,13 +1137,23 @@ var additionalProperties$3 = {
|
|
|
1117
1137
|
};
|
|
1118
1138
|
var properties$2 = {
|
|
1119
1139
|
"@context": {
|
|
1120
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1140
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1121
1141
|
},
|
|
1122
1142
|
"@id": {
|
|
1123
|
-
|
|
1143
|
+
anyOf: [
|
|
1144
|
+
{
|
|
1145
|
+
type: "string"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
type: "array",
|
|
1149
|
+
items: {
|
|
1150
|
+
type: "string"
|
|
1151
|
+
}
|
|
1152
|
+
}
|
|
1153
|
+
]
|
|
1124
1154
|
},
|
|
1125
1155
|
"@included": {
|
|
1126
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1156
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1127
1157
|
},
|
|
1128
1158
|
"@graph": {
|
|
1129
1159
|
anyOf: [
|
|
@@ -1154,12 +1184,12 @@ var properties$2 = {
|
|
|
1154
1184
|
"@type": {
|
|
1155
1185
|
anyOf: [
|
|
1156
1186
|
{
|
|
1157
|
-
|
|
1187
|
+
type: "string"
|
|
1158
1188
|
},
|
|
1159
1189
|
{
|
|
1160
1190
|
type: "array",
|
|
1161
1191
|
items: {
|
|
1162
|
-
|
|
1192
|
+
type: "string"
|
|
1163
1193
|
}
|
|
1164
1194
|
}
|
|
1165
1195
|
]
|
|
@@ -1167,11 +1197,11 @@ var properties$2 = {
|
|
|
1167
1197
|
"@reverse": {
|
|
1168
1198
|
type: "object",
|
|
1169
1199
|
additionalProperties: {
|
|
1170
|
-
|
|
1200
|
+
type: "string"
|
|
1171
1201
|
}
|
|
1172
1202
|
},
|
|
1173
1203
|
"@index": {
|
|
1174
|
-
|
|
1204
|
+
type: "string"
|
|
1175
1205
|
}
|
|
1176
1206
|
};
|
|
1177
1207
|
var description$5 = "A node object represents zero or more properties of a node in the graph serialized by the JSON-LD document.";
|
|
@@ -1220,13 +1250,23 @@ var JsonLdNodePrimitiveSchema = {
|
|
|
1220
1250
|
var type$2 = "object";
|
|
1221
1251
|
var properties$1 = {
|
|
1222
1252
|
"@context": {
|
|
1223
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1253
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1224
1254
|
},
|
|
1225
1255
|
"@id": {
|
|
1226
|
-
|
|
1256
|
+
anyOf: [
|
|
1257
|
+
{
|
|
1258
|
+
type: "string"
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
type: "array",
|
|
1262
|
+
items: {
|
|
1263
|
+
type: "string"
|
|
1264
|
+
}
|
|
1265
|
+
}
|
|
1266
|
+
]
|
|
1227
1267
|
},
|
|
1228
1268
|
"@included": {
|
|
1229
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1269
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1230
1270
|
},
|
|
1231
1271
|
"@graph": {
|
|
1232
1272
|
anyOf: [
|
|
@@ -1257,12 +1297,12 @@ var properties$1 = {
|
|
|
1257
1297
|
"@type": {
|
|
1258
1298
|
anyOf: [
|
|
1259
1299
|
{
|
|
1260
|
-
|
|
1300
|
+
type: "string"
|
|
1261
1301
|
},
|
|
1262
1302
|
{
|
|
1263
1303
|
type: "array",
|
|
1264
1304
|
items: {
|
|
1265
|
-
|
|
1305
|
+
type: "string"
|
|
1266
1306
|
}
|
|
1267
1307
|
}
|
|
1268
1308
|
]
|
|
@@ -1270,11 +1310,11 @@ var properties$1 = {
|
|
|
1270
1310
|
"@reverse": {
|
|
1271
1311
|
type: "object",
|
|
1272
1312
|
additionalProperties: {
|
|
1273
|
-
|
|
1313
|
+
type: "string"
|
|
1274
1314
|
}
|
|
1275
1315
|
},
|
|
1276
1316
|
"@index": {
|
|
1277
|
-
|
|
1317
|
+
type: "string"
|
|
1278
1318
|
}
|
|
1279
1319
|
};
|
|
1280
1320
|
var additionalProperties$2 = false;
|
|
@@ -1289,10 +1329,20 @@ var JsonLdObjectSchema = {
|
|
|
1289
1329
|
var type$1 = "object";
|
|
1290
1330
|
var properties = {
|
|
1291
1331
|
"@set": {
|
|
1292
|
-
|
|
1332
|
+
anyOf: [
|
|
1333
|
+
{
|
|
1334
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
type: "array",
|
|
1338
|
+
items: {
|
|
1339
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
]
|
|
1293
1343
|
},
|
|
1294
1344
|
"@index": {
|
|
1295
|
-
|
|
1345
|
+
type: "string"
|
|
1296
1346
|
}
|
|
1297
1347
|
};
|
|
1298
1348
|
var required = [
|
|
@@ -1332,19 +1382,32 @@ var anyOf = [
|
|
|
1332
1382
|
additionalProperties: false,
|
|
1333
1383
|
properties: {
|
|
1334
1384
|
"@value": {
|
|
1335
|
-
|
|
1385
|
+
type: [
|
|
1386
|
+
"null",
|
|
1387
|
+
"boolean",
|
|
1388
|
+
"number",
|
|
1389
|
+
"string"
|
|
1390
|
+
]
|
|
1336
1391
|
},
|
|
1337
1392
|
"@language": {
|
|
1338
|
-
|
|
1393
|
+
type: "string"
|
|
1339
1394
|
},
|
|
1340
1395
|
"@direction": {
|
|
1341
|
-
|
|
1396
|
+
type: [
|
|
1397
|
+
"string",
|
|
1398
|
+
"null"
|
|
1399
|
+
],
|
|
1400
|
+
"enum": [
|
|
1401
|
+
"ltr",
|
|
1402
|
+
"rtl",
|
|
1403
|
+
null
|
|
1404
|
+
]
|
|
1342
1405
|
},
|
|
1343
1406
|
"@index": {
|
|
1344
|
-
|
|
1407
|
+
type: "string"
|
|
1345
1408
|
},
|
|
1346
1409
|
"@context": {
|
|
1347
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1410
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1348
1411
|
}
|
|
1349
1412
|
},
|
|
1350
1413
|
required: [
|
|
@@ -1356,16 +1419,21 @@ var anyOf = [
|
|
|
1356
1419
|
additionalProperties: false,
|
|
1357
1420
|
properties: {
|
|
1358
1421
|
"@value": {
|
|
1359
|
-
|
|
1422
|
+
type: [
|
|
1423
|
+
"null",
|
|
1424
|
+
"boolean",
|
|
1425
|
+
"number",
|
|
1426
|
+
"string"
|
|
1427
|
+
]
|
|
1360
1428
|
},
|
|
1361
1429
|
"@type": {
|
|
1362
|
-
|
|
1430
|
+
type: "string"
|
|
1363
1431
|
},
|
|
1364
1432
|
"@index": {
|
|
1365
|
-
|
|
1433
|
+
type: "string"
|
|
1366
1434
|
},
|
|
1367
1435
|
"@context": {
|
|
1368
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1436
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1369
1437
|
}
|
|
1370
1438
|
},
|
|
1371
1439
|
required: [
|
|
@@ -1380,7 +1448,16 @@ var anyOf = [
|
|
|
1380
1448
|
"@value": {
|
|
1381
1449
|
anyOf: [
|
|
1382
1450
|
{
|
|
1383
|
-
|
|
1451
|
+
type: "null"
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
type: "boolean"
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
type: "number"
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
type: "string"
|
|
1384
1461
|
},
|
|
1385
1462
|
{
|
|
1386
1463
|
$ref: "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
@@ -1395,10 +1472,10 @@ var anyOf = [
|
|
|
1395
1472
|
"const": "@json"
|
|
1396
1473
|
},
|
|
1397
1474
|
"@index": {
|
|
1398
|
-
|
|
1475
|
+
type: "string"
|
|
1399
1476
|
},
|
|
1400
1477
|
"@context": {
|
|
1401
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1478
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1402
1479
|
}
|
|
1403
1480
|
},
|
|
1404
1481
|
required: [
|
package/dist/esm/index.mjs
CHANGED
|
@@ -638,13 +638,23 @@ var properties$5 = {
|
|
|
638
638
|
]
|
|
639
639
|
},
|
|
640
640
|
"@index": {
|
|
641
|
-
|
|
641
|
+
type: "string"
|
|
642
642
|
},
|
|
643
643
|
"@id": {
|
|
644
|
-
|
|
644
|
+
anyOf: [
|
|
645
|
+
{
|
|
646
|
+
type: "string"
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
type: "array",
|
|
650
|
+
items: {
|
|
651
|
+
type: "string"
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
]
|
|
645
655
|
},
|
|
646
656
|
"@context": {
|
|
647
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
657
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
648
658
|
}
|
|
649
659
|
};
|
|
650
660
|
var required$3 = [
|
|
@@ -1042,10 +1052,20 @@ var JsonLdLanguageMapSchema = {
|
|
|
1042
1052
|
var type$4 = "object";
|
|
1043
1053
|
var properties$3 = {
|
|
1044
1054
|
"@list": {
|
|
1045
|
-
|
|
1055
|
+
anyOf: [
|
|
1056
|
+
{
|
|
1057
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1058
|
+
},
|
|
1059
|
+
{
|
|
1060
|
+
type: "array",
|
|
1061
|
+
items: {
|
|
1062
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1063
|
+
}
|
|
1064
|
+
}
|
|
1065
|
+
]
|
|
1046
1066
|
},
|
|
1047
1067
|
"@index": {
|
|
1048
|
-
|
|
1068
|
+
type: "string"
|
|
1049
1069
|
}
|
|
1050
1070
|
};
|
|
1051
1071
|
var required$1 = [
|
|
@@ -1115,13 +1135,23 @@ var additionalProperties$3 = {
|
|
|
1115
1135
|
};
|
|
1116
1136
|
var properties$2 = {
|
|
1117
1137
|
"@context": {
|
|
1118
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1138
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1119
1139
|
},
|
|
1120
1140
|
"@id": {
|
|
1121
|
-
|
|
1141
|
+
anyOf: [
|
|
1142
|
+
{
|
|
1143
|
+
type: "string"
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
type: "array",
|
|
1147
|
+
items: {
|
|
1148
|
+
type: "string"
|
|
1149
|
+
}
|
|
1150
|
+
}
|
|
1151
|
+
]
|
|
1122
1152
|
},
|
|
1123
1153
|
"@included": {
|
|
1124
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1154
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1125
1155
|
},
|
|
1126
1156
|
"@graph": {
|
|
1127
1157
|
anyOf: [
|
|
@@ -1152,12 +1182,12 @@ var properties$2 = {
|
|
|
1152
1182
|
"@type": {
|
|
1153
1183
|
anyOf: [
|
|
1154
1184
|
{
|
|
1155
|
-
|
|
1185
|
+
type: "string"
|
|
1156
1186
|
},
|
|
1157
1187
|
{
|
|
1158
1188
|
type: "array",
|
|
1159
1189
|
items: {
|
|
1160
|
-
|
|
1190
|
+
type: "string"
|
|
1161
1191
|
}
|
|
1162
1192
|
}
|
|
1163
1193
|
]
|
|
@@ -1165,11 +1195,11 @@ var properties$2 = {
|
|
|
1165
1195
|
"@reverse": {
|
|
1166
1196
|
type: "object",
|
|
1167
1197
|
additionalProperties: {
|
|
1168
|
-
|
|
1198
|
+
type: "string"
|
|
1169
1199
|
}
|
|
1170
1200
|
},
|
|
1171
1201
|
"@index": {
|
|
1172
|
-
|
|
1202
|
+
type: "string"
|
|
1173
1203
|
}
|
|
1174
1204
|
};
|
|
1175
1205
|
var description$5 = "A node object represents zero or more properties of a node in the graph serialized by the JSON-LD document.";
|
|
@@ -1218,13 +1248,23 @@ var JsonLdNodePrimitiveSchema = {
|
|
|
1218
1248
|
var type$2 = "object";
|
|
1219
1249
|
var properties$1 = {
|
|
1220
1250
|
"@context": {
|
|
1221
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1251
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1222
1252
|
},
|
|
1223
1253
|
"@id": {
|
|
1224
|
-
|
|
1254
|
+
anyOf: [
|
|
1255
|
+
{
|
|
1256
|
+
type: "string"
|
|
1257
|
+
},
|
|
1258
|
+
{
|
|
1259
|
+
type: "array",
|
|
1260
|
+
items: {
|
|
1261
|
+
type: "string"
|
|
1262
|
+
}
|
|
1263
|
+
}
|
|
1264
|
+
]
|
|
1225
1265
|
},
|
|
1226
1266
|
"@included": {
|
|
1227
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1267
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdIncludedBlock"
|
|
1228
1268
|
},
|
|
1229
1269
|
"@graph": {
|
|
1230
1270
|
anyOf: [
|
|
@@ -1255,12 +1295,12 @@ var properties$1 = {
|
|
|
1255
1295
|
"@type": {
|
|
1256
1296
|
anyOf: [
|
|
1257
1297
|
{
|
|
1258
|
-
|
|
1298
|
+
type: "string"
|
|
1259
1299
|
},
|
|
1260
1300
|
{
|
|
1261
1301
|
type: "array",
|
|
1262
1302
|
items: {
|
|
1263
|
-
|
|
1303
|
+
type: "string"
|
|
1264
1304
|
}
|
|
1265
1305
|
}
|
|
1266
1306
|
]
|
|
@@ -1268,11 +1308,11 @@ var properties$1 = {
|
|
|
1268
1308
|
"@reverse": {
|
|
1269
1309
|
type: "object",
|
|
1270
1310
|
additionalProperties: {
|
|
1271
|
-
|
|
1311
|
+
type: "string"
|
|
1272
1312
|
}
|
|
1273
1313
|
},
|
|
1274
1314
|
"@index": {
|
|
1275
|
-
|
|
1315
|
+
type: "string"
|
|
1276
1316
|
}
|
|
1277
1317
|
};
|
|
1278
1318
|
var additionalProperties$2 = false;
|
|
@@ -1287,10 +1327,20 @@ var JsonLdObjectSchema = {
|
|
|
1287
1327
|
var type$1 = "object";
|
|
1288
1328
|
var properties = {
|
|
1289
1329
|
"@set": {
|
|
1290
|
-
|
|
1330
|
+
anyOf: [
|
|
1331
|
+
{
|
|
1332
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
type: "array",
|
|
1336
|
+
items: {
|
|
1337
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdListOrSetItem"
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
]
|
|
1291
1341
|
},
|
|
1292
1342
|
"@index": {
|
|
1293
|
-
|
|
1343
|
+
type: "string"
|
|
1294
1344
|
}
|
|
1295
1345
|
};
|
|
1296
1346
|
var required = [
|
|
@@ -1330,19 +1380,32 @@ var anyOf = [
|
|
|
1330
1380
|
additionalProperties: false,
|
|
1331
1381
|
properties: {
|
|
1332
1382
|
"@value": {
|
|
1333
|
-
|
|
1383
|
+
type: [
|
|
1384
|
+
"null",
|
|
1385
|
+
"boolean",
|
|
1386
|
+
"number",
|
|
1387
|
+
"string"
|
|
1388
|
+
]
|
|
1334
1389
|
},
|
|
1335
1390
|
"@language": {
|
|
1336
|
-
|
|
1391
|
+
type: "string"
|
|
1337
1392
|
},
|
|
1338
1393
|
"@direction": {
|
|
1339
|
-
|
|
1394
|
+
type: [
|
|
1395
|
+
"string",
|
|
1396
|
+
"null"
|
|
1397
|
+
],
|
|
1398
|
+
"enum": [
|
|
1399
|
+
"ltr",
|
|
1400
|
+
"rtl",
|
|
1401
|
+
null
|
|
1402
|
+
]
|
|
1340
1403
|
},
|
|
1341
1404
|
"@index": {
|
|
1342
|
-
|
|
1405
|
+
type: "string"
|
|
1343
1406
|
},
|
|
1344
1407
|
"@context": {
|
|
1345
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1408
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1346
1409
|
}
|
|
1347
1410
|
},
|
|
1348
1411
|
required: [
|
|
@@ -1354,16 +1417,21 @@ var anyOf = [
|
|
|
1354
1417
|
additionalProperties: false,
|
|
1355
1418
|
properties: {
|
|
1356
1419
|
"@value": {
|
|
1357
|
-
|
|
1420
|
+
type: [
|
|
1421
|
+
"null",
|
|
1422
|
+
"boolean",
|
|
1423
|
+
"number",
|
|
1424
|
+
"string"
|
|
1425
|
+
]
|
|
1358
1426
|
},
|
|
1359
1427
|
"@type": {
|
|
1360
|
-
|
|
1428
|
+
type: "string"
|
|
1361
1429
|
},
|
|
1362
1430
|
"@index": {
|
|
1363
|
-
|
|
1431
|
+
type: "string"
|
|
1364
1432
|
},
|
|
1365
1433
|
"@context": {
|
|
1366
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1434
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1367
1435
|
}
|
|
1368
1436
|
},
|
|
1369
1437
|
required: [
|
|
@@ -1378,7 +1446,16 @@ var anyOf = [
|
|
|
1378
1446
|
"@value": {
|
|
1379
1447
|
anyOf: [
|
|
1380
1448
|
{
|
|
1381
|
-
|
|
1449
|
+
type: "null"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
type: "boolean"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
type: "number"
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
type: "string"
|
|
1382
1459
|
},
|
|
1383
1460
|
{
|
|
1384
1461
|
$ref: "https://schema.twindev.org/json-ld/JsonLdJsonObject"
|
|
@@ -1393,10 +1470,10 @@ var anyOf = [
|
|
|
1393
1470
|
"const": "@json"
|
|
1394
1471
|
},
|
|
1395
1472
|
"@index": {
|
|
1396
|
-
|
|
1473
|
+
type: "string"
|
|
1397
1474
|
},
|
|
1398
1475
|
"@context": {
|
|
1399
|
-
$ref: "https://schema.twindev.org/json-ld/
|
|
1476
|
+
$ref: "https://schema.twindev.org/json-ld/JsonLdContextDefinitionRoot"
|
|
1400
1477
|
}
|
|
1401
1478
|
},
|
|
1402
1479
|
required: [
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @twin.org/data-json-ld - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.1-next.35](https://github.com/twinfoundation/data/compare/data-json-ld-v0.0.1-next.34...data-json-ld-v0.0.1-next.35) (2025-06-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update ts-to-schema ([8c3cd91](https://github.com/twinfoundation/data/commit/8c3cd9131113f2d609f6e709562402e5c7766c1a))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @twin.org/data-core bumped from 0.0.1-next.34 to 0.0.1-next.35
|
|
16
|
+
|
|
3
17
|
## [0.0.1-next.34](https://github.com/twinfoundation/data/compare/data-json-ld-v0.0.1-next.33...data-json-ld-v0.0.1-next.34) (2025-06-02)
|
|
4
18
|
|
|
5
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/data-json-ld",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.35",
|
|
4
4
|
"description": "Models which define the structure of JSON LD",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
|
-
"@twin.org/data-core": "0.0.1-next.
|
|
18
|
+
"@twin.org/data-core": "0.0.1-next.35",
|
|
19
19
|
"@twin.org/entity": "next",
|
|
20
20
|
"@twin.org/nameof": "next",
|
|
21
21
|
"@twin.org/web": "next",
|