@twin.org/standards-ld-contexts 0.0.1 → 0.0.2-next.1
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 +690 -308
- package/dist/esm/index.mjs +690 -308
- package/docs/changelog.md +17 -0
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -2370,308 +2370,6 @@ var gaiaXDevelopment = {
|
|
|
2370
2370
|
}
|
|
2371
2371
|
};
|
|
2372
2372
|
|
|
2373
|
-
var odrl = {
|
|
2374
|
-
"@context": {
|
|
2375
|
-
odrl: "http://www.w3.org/ns/odrl/2/",
|
|
2376
|
-
rdf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
2377
|
-
rdfs: "http://www.w3.org/2000/01/rdf-schema#",
|
|
2378
|
-
owl: "http://www.w3.org/2002/07/owl#",
|
|
2379
|
-
skos: "http://www.w3.org/2004/02/skos/core#",
|
|
2380
|
-
dct: "http://purl.org/dc/terms/",
|
|
2381
|
-
xsd: "http://www.w3.org/2001/XMLSchema#",
|
|
2382
|
-
vcard: "http://www.w3.org/2006/vcard/ns#",
|
|
2383
|
-
foaf: "http://xmlns.com/foaf/0.1/",
|
|
2384
|
-
schema: "http://schema.org/",
|
|
2385
|
-
cc: "http://creativecommons.org/ns#",
|
|
2386
|
-
uid: "@id",
|
|
2387
|
-
type: "@type",
|
|
2388
|
-
Policy: "odrl:Policy",
|
|
2389
|
-
Rule: "odrl:Rule",
|
|
2390
|
-
profile: {
|
|
2391
|
-
"@type": "@id",
|
|
2392
|
-
"@id": "odrl:profile"
|
|
2393
|
-
},
|
|
2394
|
-
inheritFrom: {
|
|
2395
|
-
"@type": "@id",
|
|
2396
|
-
"@id": "odrl:inheritFrom"
|
|
2397
|
-
},
|
|
2398
|
-
ConflictTerm: "odrl:ConflictTerm",
|
|
2399
|
-
conflict: {
|
|
2400
|
-
"@type": "@vocab",
|
|
2401
|
-
"@id": "odrl:conflict"
|
|
2402
|
-
},
|
|
2403
|
-
perm: "odrl:perm",
|
|
2404
|
-
prohibit: "odrl:prohibit",
|
|
2405
|
-
invalid: "odrl:invalid",
|
|
2406
|
-
Agreement: "odrl:Agreement",
|
|
2407
|
-
Assertion: "odrl:Assertion",
|
|
2408
|
-
Offer: "odrl:Offer",
|
|
2409
|
-
Privacy: "odrl:Privacy",
|
|
2410
|
-
Request: "odrl:Request",
|
|
2411
|
-
"Set": "odrl:Set",
|
|
2412
|
-
Ticket: "odrl:Ticket",
|
|
2413
|
-
Asset: "odrl:Asset",
|
|
2414
|
-
AssetCollection: "odrl:AssetCollection",
|
|
2415
|
-
relation: {
|
|
2416
|
-
"@type": "@id",
|
|
2417
|
-
"@id": "odrl:relation"
|
|
2418
|
-
},
|
|
2419
|
-
hasPolicy: {
|
|
2420
|
-
"@type": "@id",
|
|
2421
|
-
"@id": "odrl:hasPolicy"
|
|
2422
|
-
},
|
|
2423
|
-
target: {
|
|
2424
|
-
"@type": "@id",
|
|
2425
|
-
"@id": "odrl:target"
|
|
2426
|
-
},
|
|
2427
|
-
output: {
|
|
2428
|
-
"@type": "@id",
|
|
2429
|
-
"@id": "odrl:output"
|
|
2430
|
-
},
|
|
2431
|
-
partOf: {
|
|
2432
|
-
"@type": "@id",
|
|
2433
|
-
"@id": "odrl:partOf"
|
|
2434
|
-
},
|
|
2435
|
-
source: {
|
|
2436
|
-
"@type": "@id",
|
|
2437
|
-
"@id": "odrl:source"
|
|
2438
|
-
},
|
|
2439
|
-
Party: "odrl:Party",
|
|
2440
|
-
PartyCollection: "odrl:PartyCollection",
|
|
2441
|
-
"function": {
|
|
2442
|
-
"@type": "@vocab",
|
|
2443
|
-
"@id": "odrl:function"
|
|
2444
|
-
},
|
|
2445
|
-
PartyScope: "odrl:PartyScope",
|
|
2446
|
-
assignee: {
|
|
2447
|
-
"@type": "@id",
|
|
2448
|
-
"@id": "odrl:assignee"
|
|
2449
|
-
},
|
|
2450
|
-
assigner: {
|
|
2451
|
-
"@type": "@id",
|
|
2452
|
-
"@id": "odrl:assigner"
|
|
2453
|
-
},
|
|
2454
|
-
assigneeOf: {
|
|
2455
|
-
"@type": "@id",
|
|
2456
|
-
"@id": "odrl:assigneeOf"
|
|
2457
|
-
},
|
|
2458
|
-
assignerOf: {
|
|
2459
|
-
"@type": "@id",
|
|
2460
|
-
"@id": "odrl:assignerOf"
|
|
2461
|
-
},
|
|
2462
|
-
attributedParty: {
|
|
2463
|
-
"@type": "@id",
|
|
2464
|
-
"@id": "odrl:attributedParty"
|
|
2465
|
-
},
|
|
2466
|
-
attributingParty: {
|
|
2467
|
-
"@type": "@id",
|
|
2468
|
-
"@id": "odrl:attributingParty"
|
|
2469
|
-
},
|
|
2470
|
-
compensatedParty: {
|
|
2471
|
-
"@type": "@id",
|
|
2472
|
-
"@id": "odrl:compensatedParty"
|
|
2473
|
-
},
|
|
2474
|
-
compensatingParty: {
|
|
2475
|
-
"@type": "@id",
|
|
2476
|
-
"@id": "odrl:compensatingParty"
|
|
2477
|
-
},
|
|
2478
|
-
consentingParty: {
|
|
2479
|
-
"@type": "@id",
|
|
2480
|
-
"@id": "odrl:consentingParty"
|
|
2481
|
-
},
|
|
2482
|
-
consentedParty: {
|
|
2483
|
-
"@type": "@id",
|
|
2484
|
-
"@id": "odrl:consentedParty"
|
|
2485
|
-
},
|
|
2486
|
-
informedParty: {
|
|
2487
|
-
"@type": "@id",
|
|
2488
|
-
"@id": "odrl:informedParty"
|
|
2489
|
-
},
|
|
2490
|
-
informingParty: {
|
|
2491
|
-
"@type": "@id",
|
|
2492
|
-
"@id": "odrl:informingParty"
|
|
2493
|
-
},
|
|
2494
|
-
trackingParty: {
|
|
2495
|
-
"@type": "@id",
|
|
2496
|
-
"@id": "odrl:trackingParty"
|
|
2497
|
-
},
|
|
2498
|
-
trackedParty: {
|
|
2499
|
-
"@type": "@id",
|
|
2500
|
-
"@id": "odrl:trackedParty"
|
|
2501
|
-
},
|
|
2502
|
-
contractingParty: {
|
|
2503
|
-
"@type": "@id",
|
|
2504
|
-
"@id": "odrl:contractingParty"
|
|
2505
|
-
},
|
|
2506
|
-
contractedParty: {
|
|
2507
|
-
"@type": "@id",
|
|
2508
|
-
"@id": "odrl:contractedParty"
|
|
2509
|
-
},
|
|
2510
|
-
Action: "odrl:Action",
|
|
2511
|
-
action: {
|
|
2512
|
-
"@type": "@vocab",
|
|
2513
|
-
"@id": "odrl:action"
|
|
2514
|
-
},
|
|
2515
|
-
includedIn: {
|
|
2516
|
-
"@type": "@id",
|
|
2517
|
-
"@id": "odrl:includedIn"
|
|
2518
|
-
},
|
|
2519
|
-
implies: {
|
|
2520
|
-
"@type": "@id",
|
|
2521
|
-
"@id": "odrl:implies"
|
|
2522
|
-
},
|
|
2523
|
-
Permission: "odrl:Permission",
|
|
2524
|
-
permission: {
|
|
2525
|
-
"@type": "@id",
|
|
2526
|
-
"@id": "odrl:permission"
|
|
2527
|
-
},
|
|
2528
|
-
Prohibition: "odrl:Prohibition",
|
|
2529
|
-
prohibition: {
|
|
2530
|
-
"@type": "@id",
|
|
2531
|
-
"@id": "odrl:prohibition"
|
|
2532
|
-
},
|
|
2533
|
-
obligation: {
|
|
2534
|
-
"@type": "@id",
|
|
2535
|
-
"@id": "odrl:obligation"
|
|
2536
|
-
},
|
|
2537
|
-
use: "odrl:use",
|
|
2538
|
-
grantUse: "odrl:grantUse",
|
|
2539
|
-
aggregate: "odrl:aggregate",
|
|
2540
|
-
annotate: "odrl:annotate",
|
|
2541
|
-
anonymize: "odrl:anonymize",
|
|
2542
|
-
archive: "odrl:archive",
|
|
2543
|
-
concurrentUse: "odrl:concurrentUse",
|
|
2544
|
-
derive: "odrl:derive",
|
|
2545
|
-
digitize: "odrl:digitize",
|
|
2546
|
-
display: "odrl:display",
|
|
2547
|
-
distribute: "odrl:distribute",
|
|
2548
|
-
execute: "odrl:execute",
|
|
2549
|
-
extract: "odrl:extract",
|
|
2550
|
-
give: "odrl:give",
|
|
2551
|
-
index: "odrl:index",
|
|
2552
|
-
install: "odrl:install",
|
|
2553
|
-
modify: "odrl:modify",
|
|
2554
|
-
move: "odrl:move",
|
|
2555
|
-
play: "odrl:play",
|
|
2556
|
-
present: "odrl:present",
|
|
2557
|
-
print: "odrl:print",
|
|
2558
|
-
read: "odrl:read",
|
|
2559
|
-
reproduce: "odrl:reproduce",
|
|
2560
|
-
sell: "odrl:sell",
|
|
2561
|
-
stream: "odrl:stream",
|
|
2562
|
-
textToSpeech: "odrl:textToSpeech",
|
|
2563
|
-
transfer: "odrl:transfer",
|
|
2564
|
-
transform: "odrl:transform",
|
|
2565
|
-
translate: "odrl:translate",
|
|
2566
|
-
Duty: "odrl:Duty",
|
|
2567
|
-
duty: {
|
|
2568
|
-
"@type": "@id",
|
|
2569
|
-
"@id": "odrl:duty"
|
|
2570
|
-
},
|
|
2571
|
-
consequence: {
|
|
2572
|
-
"@type": "@id",
|
|
2573
|
-
"@id": "odrl:consequence"
|
|
2574
|
-
},
|
|
2575
|
-
remedy: {
|
|
2576
|
-
"@type": "@id",
|
|
2577
|
-
"@id": "odrl:remedy"
|
|
2578
|
-
},
|
|
2579
|
-
acceptTracking: "odrl:acceptTracking",
|
|
2580
|
-
attribute: "odrl:attribute",
|
|
2581
|
-
compensate: "odrl:compensate",
|
|
2582
|
-
"delete": "odrl:delete",
|
|
2583
|
-
ensureExclusivity: "odrl:ensureExclusivity",
|
|
2584
|
-
include: "odrl:include",
|
|
2585
|
-
inform: "odrl:inform",
|
|
2586
|
-
nextPolicy: "odrl:nextPolicy",
|
|
2587
|
-
obtainConsent: "odrl:obtainConsent",
|
|
2588
|
-
reviewPolicy: "odrl:reviewPolicy",
|
|
2589
|
-
uninstall: "odrl:uninstall",
|
|
2590
|
-
watermark: "odrl:watermark",
|
|
2591
|
-
Constraint: "odrl:Constraint",
|
|
2592
|
-
LogicalConstraint: "odrl:LogicalConstraint",
|
|
2593
|
-
constraint: {
|
|
2594
|
-
"@type": "@id",
|
|
2595
|
-
"@id": "odrl:constraint"
|
|
2596
|
-
},
|
|
2597
|
-
refinement: {
|
|
2598
|
-
"@type": "@id",
|
|
2599
|
-
"@id": "odrl:refinement"
|
|
2600
|
-
},
|
|
2601
|
-
Operator: "odrl:Operator",
|
|
2602
|
-
operator: {
|
|
2603
|
-
"@type": "@vocab",
|
|
2604
|
-
"@id": "odrl:operator"
|
|
2605
|
-
},
|
|
2606
|
-
RightOperand: "odrl:RightOperand",
|
|
2607
|
-
rightOperand: "odrl:rightOperand",
|
|
2608
|
-
rightOperandReference: {
|
|
2609
|
-
"@type": "xsd:anyURI",
|
|
2610
|
-
"@id": "odrl:rightOperandReference"
|
|
2611
|
-
},
|
|
2612
|
-
LeftOperand: "odrl:LeftOperand",
|
|
2613
|
-
leftOperand: {
|
|
2614
|
-
"@type": "@vocab",
|
|
2615
|
-
"@id": "odrl:leftOperand"
|
|
2616
|
-
},
|
|
2617
|
-
unit: "odrl:unit",
|
|
2618
|
-
dataType: {
|
|
2619
|
-
"@type": "xsd:anyType",
|
|
2620
|
-
"@id": "odrl:datatype"
|
|
2621
|
-
},
|
|
2622
|
-
status: "odrl:status",
|
|
2623
|
-
absolutePosition: "odrl:absolutePosition",
|
|
2624
|
-
absoluteSpatialPosition: "odrl:absoluteSpatialPosition",
|
|
2625
|
-
absoluteTemporalPosition: "odrl:absoluteTemporalPosition",
|
|
2626
|
-
absoluteSize: "odrl:absoluteSize",
|
|
2627
|
-
count: "odrl:count",
|
|
2628
|
-
dateTime: "odrl:dateTime",
|
|
2629
|
-
delayPeriod: "odrl:delayPeriod",
|
|
2630
|
-
deliveryChannel: "odrl:deliveryChannel",
|
|
2631
|
-
elapsedTime: "odrl:elapsedTime",
|
|
2632
|
-
event: "odrl:event",
|
|
2633
|
-
fileFormat: "odrl:fileFormat",
|
|
2634
|
-
industry: "odrl:industry:",
|
|
2635
|
-
language: "odrl:language",
|
|
2636
|
-
media: "odrl:media",
|
|
2637
|
-
meteredTime: "odrl:meteredTime",
|
|
2638
|
-
payAmount: "odrl:payAmount",
|
|
2639
|
-
percentage: "odrl:percentage",
|
|
2640
|
-
product: "odrl:product",
|
|
2641
|
-
purpose: "odrl:purpose",
|
|
2642
|
-
recipient: "odrl:recipient",
|
|
2643
|
-
relativePosition: "odrl:relativePosition",
|
|
2644
|
-
relativeSpatialPosition: "odrl:relativeSpatialPosition",
|
|
2645
|
-
relativeTemporalPosition: "odrl:relativeTemporalPosition",
|
|
2646
|
-
relativeSize: "odrl:relativeSize",
|
|
2647
|
-
resolution: "odrl:resolution",
|
|
2648
|
-
spatial: "odrl:spatial",
|
|
2649
|
-
spatialCoordinates: "odrl:spatialCoordinates",
|
|
2650
|
-
systemDevice: "odrl:systemDevice",
|
|
2651
|
-
timeInterval: "odrl:timeInterval",
|
|
2652
|
-
unitOfCount: "odrl:unitOfCount",
|
|
2653
|
-
version: "odrl:version",
|
|
2654
|
-
virtualLocation: "odrl:virtualLocation",
|
|
2655
|
-
eq: "odrl:eq",
|
|
2656
|
-
gt: "odrl:gt",
|
|
2657
|
-
gteq: "odrl:gteq",
|
|
2658
|
-
lt: "odrl:lt",
|
|
2659
|
-
lteq: "odrl:lteq",
|
|
2660
|
-
neq: "odrl:neg",
|
|
2661
|
-
isA: "odrl:isA",
|
|
2662
|
-
hasPart: "odrl:hasPart",
|
|
2663
|
-
isPartOf: "odrl:isPartOf",
|
|
2664
|
-
isAllOf: "odrl:isAllOf",
|
|
2665
|
-
isAnyOf: "odrl:isAnyOf",
|
|
2666
|
-
isNoneOf: "odrl:isNoneOf",
|
|
2667
|
-
or: "odrl:or",
|
|
2668
|
-
xone: "odrl:xone",
|
|
2669
|
-
and: "odrl:and",
|
|
2670
|
-
andSequence: "odrl:andSequence",
|
|
2671
|
-
policyUsage: "odrl:policyUsage"
|
|
2672
|
-
}
|
|
2673
|
-
};
|
|
2674
|
-
|
|
2675
2373
|
var schemaOrg = {
|
|
2676
2374
|
"@context": {
|
|
2677
2375
|
type: "@type",
|
|
@@ -216477,7 +216175,689 @@ var unCefact = {
|
|
|
216477
216175
|
]
|
|
216478
216176
|
};
|
|
216479
216177
|
|
|
216480
|
-
var
|
|
216178
|
+
var w3cActivityStreams = {
|
|
216179
|
+
"@context": {
|
|
216180
|
+
"@vocab": "_:",
|
|
216181
|
+
xsd: "http://www.w3.org/2001/XMLSchema#",
|
|
216182
|
+
as: "https://www.w3.org/ns/activitystreams#",
|
|
216183
|
+
ldp: "http://www.w3.org/ns/ldp#",
|
|
216184
|
+
vcard: "http://www.w3.org/2006/vcard/ns#",
|
|
216185
|
+
id: "@id",
|
|
216186
|
+
type: "@type",
|
|
216187
|
+
Accept: "as:Accept",
|
|
216188
|
+
Activity: "as:Activity",
|
|
216189
|
+
IntransitiveActivity: "as:IntransitiveActivity",
|
|
216190
|
+
Add: "as:Add",
|
|
216191
|
+
Announce: "as:Announce",
|
|
216192
|
+
Application: "as:Application",
|
|
216193
|
+
Arrive: "as:Arrive",
|
|
216194
|
+
Article: "as:Article",
|
|
216195
|
+
Audio: "as:Audio",
|
|
216196
|
+
Block: "as:Block",
|
|
216197
|
+
Collection: "as:Collection",
|
|
216198
|
+
CollectionPage: "as:CollectionPage",
|
|
216199
|
+
Relationship: "as:Relationship",
|
|
216200
|
+
Create: "as:Create",
|
|
216201
|
+
Delete: "as:Delete",
|
|
216202
|
+
Dislike: "as:Dislike",
|
|
216203
|
+
Document: "as:Document",
|
|
216204
|
+
Event: "as:Event",
|
|
216205
|
+
Follow: "as:Follow",
|
|
216206
|
+
Flag: "as:Flag",
|
|
216207
|
+
Group: "as:Group",
|
|
216208
|
+
Ignore: "as:Ignore",
|
|
216209
|
+
Image: "as:Image",
|
|
216210
|
+
Invite: "as:Invite",
|
|
216211
|
+
Join: "as:Join",
|
|
216212
|
+
Leave: "as:Leave",
|
|
216213
|
+
Like: "as:Like",
|
|
216214
|
+
Link: "as:Link",
|
|
216215
|
+
Mention: "as:Mention",
|
|
216216
|
+
Note: "as:Note",
|
|
216217
|
+
"Object": "as:Object",
|
|
216218
|
+
Offer: "as:Offer",
|
|
216219
|
+
OrderedCollection: "as:OrderedCollection",
|
|
216220
|
+
OrderedCollectionPage: "as:OrderedCollectionPage",
|
|
216221
|
+
Organization: "as:Organization",
|
|
216222
|
+
Page: "as:Page",
|
|
216223
|
+
Person: "as:Person",
|
|
216224
|
+
Place: "as:Place",
|
|
216225
|
+
Profile: "as:Profile",
|
|
216226
|
+
Question: "as:Question",
|
|
216227
|
+
Reject: "as:Reject",
|
|
216228
|
+
Remove: "as:Remove",
|
|
216229
|
+
Service: "as:Service",
|
|
216230
|
+
TentativeAccept: "as:TentativeAccept",
|
|
216231
|
+
TentativeReject: "as:TentativeReject",
|
|
216232
|
+
Tombstone: "as:Tombstone",
|
|
216233
|
+
Undo: "as:Undo",
|
|
216234
|
+
Update: "as:Update",
|
|
216235
|
+
Video: "as:Video",
|
|
216236
|
+
View: "as:View",
|
|
216237
|
+
Listen: "as:Listen",
|
|
216238
|
+
Read: "as:Read",
|
|
216239
|
+
Move: "as:Move",
|
|
216240
|
+
Travel: "as:Travel",
|
|
216241
|
+
IsFollowing: "as:IsFollowing",
|
|
216242
|
+
IsFollowedBy: "as:IsFollowedBy",
|
|
216243
|
+
IsContact: "as:IsContact",
|
|
216244
|
+
IsMember: "as:IsMember",
|
|
216245
|
+
subject: {
|
|
216246
|
+
"@id": "as:subject",
|
|
216247
|
+
"@type": "@id"
|
|
216248
|
+
},
|
|
216249
|
+
relationship: {
|
|
216250
|
+
"@id": "as:relationship",
|
|
216251
|
+
"@type": "@id"
|
|
216252
|
+
},
|
|
216253
|
+
actor: {
|
|
216254
|
+
"@id": "as:actor",
|
|
216255
|
+
"@type": "@id"
|
|
216256
|
+
},
|
|
216257
|
+
attributedTo: {
|
|
216258
|
+
"@id": "as:attributedTo",
|
|
216259
|
+
"@type": "@id"
|
|
216260
|
+
},
|
|
216261
|
+
attachment: {
|
|
216262
|
+
"@id": "as:attachment",
|
|
216263
|
+
"@type": "@id"
|
|
216264
|
+
},
|
|
216265
|
+
bcc: {
|
|
216266
|
+
"@id": "as:bcc",
|
|
216267
|
+
"@type": "@id"
|
|
216268
|
+
},
|
|
216269
|
+
bto: {
|
|
216270
|
+
"@id": "as:bto",
|
|
216271
|
+
"@type": "@id"
|
|
216272
|
+
},
|
|
216273
|
+
cc: {
|
|
216274
|
+
"@id": "as:cc",
|
|
216275
|
+
"@type": "@id"
|
|
216276
|
+
},
|
|
216277
|
+
context: {
|
|
216278
|
+
"@id": "as:context",
|
|
216279
|
+
"@type": "@id"
|
|
216280
|
+
},
|
|
216281
|
+
current: {
|
|
216282
|
+
"@id": "as:current",
|
|
216283
|
+
"@type": "@id"
|
|
216284
|
+
},
|
|
216285
|
+
first: {
|
|
216286
|
+
"@id": "as:first",
|
|
216287
|
+
"@type": "@id"
|
|
216288
|
+
},
|
|
216289
|
+
generator: {
|
|
216290
|
+
"@id": "as:generator",
|
|
216291
|
+
"@type": "@id"
|
|
216292
|
+
},
|
|
216293
|
+
icon: {
|
|
216294
|
+
"@id": "as:icon",
|
|
216295
|
+
"@type": "@id"
|
|
216296
|
+
},
|
|
216297
|
+
image: {
|
|
216298
|
+
"@id": "as:image",
|
|
216299
|
+
"@type": "@id"
|
|
216300
|
+
},
|
|
216301
|
+
inReplyTo: {
|
|
216302
|
+
"@id": "as:inReplyTo",
|
|
216303
|
+
"@type": "@id"
|
|
216304
|
+
},
|
|
216305
|
+
items: {
|
|
216306
|
+
"@id": "as:items",
|
|
216307
|
+
"@type": "@id"
|
|
216308
|
+
},
|
|
216309
|
+
instrument: {
|
|
216310
|
+
"@id": "as:instrument",
|
|
216311
|
+
"@type": "@id"
|
|
216312
|
+
},
|
|
216313
|
+
orderedItems: {
|
|
216314
|
+
"@id": "as:items",
|
|
216315
|
+
"@type": "@id",
|
|
216316
|
+
"@container": "@list"
|
|
216317
|
+
},
|
|
216318
|
+
last: {
|
|
216319
|
+
"@id": "as:last",
|
|
216320
|
+
"@type": "@id"
|
|
216321
|
+
},
|
|
216322
|
+
location: {
|
|
216323
|
+
"@id": "as:location",
|
|
216324
|
+
"@type": "@id"
|
|
216325
|
+
},
|
|
216326
|
+
next: {
|
|
216327
|
+
"@id": "as:next",
|
|
216328
|
+
"@type": "@id"
|
|
216329
|
+
},
|
|
216330
|
+
object: {
|
|
216331
|
+
"@id": "as:object",
|
|
216332
|
+
"@type": "@id"
|
|
216333
|
+
},
|
|
216334
|
+
oneOf: {
|
|
216335
|
+
"@id": "as:oneOf",
|
|
216336
|
+
"@type": "@id"
|
|
216337
|
+
},
|
|
216338
|
+
anyOf: {
|
|
216339
|
+
"@id": "as:anyOf",
|
|
216340
|
+
"@type": "@id"
|
|
216341
|
+
},
|
|
216342
|
+
closed: {
|
|
216343
|
+
"@id": "as:closed",
|
|
216344
|
+
"@type": "xsd:dateTime"
|
|
216345
|
+
},
|
|
216346
|
+
origin: {
|
|
216347
|
+
"@id": "as:origin",
|
|
216348
|
+
"@type": "@id"
|
|
216349
|
+
},
|
|
216350
|
+
accuracy: {
|
|
216351
|
+
"@id": "as:accuracy",
|
|
216352
|
+
"@type": "xsd:float"
|
|
216353
|
+
},
|
|
216354
|
+
prev: {
|
|
216355
|
+
"@id": "as:prev",
|
|
216356
|
+
"@type": "@id"
|
|
216357
|
+
},
|
|
216358
|
+
preview: {
|
|
216359
|
+
"@id": "as:preview",
|
|
216360
|
+
"@type": "@id"
|
|
216361
|
+
},
|
|
216362
|
+
replies: {
|
|
216363
|
+
"@id": "as:replies",
|
|
216364
|
+
"@type": "@id"
|
|
216365
|
+
},
|
|
216366
|
+
result: {
|
|
216367
|
+
"@id": "as:result",
|
|
216368
|
+
"@type": "@id"
|
|
216369
|
+
},
|
|
216370
|
+
audience: {
|
|
216371
|
+
"@id": "as:audience",
|
|
216372
|
+
"@type": "@id"
|
|
216373
|
+
},
|
|
216374
|
+
partOf: {
|
|
216375
|
+
"@id": "as:partOf",
|
|
216376
|
+
"@type": "@id"
|
|
216377
|
+
},
|
|
216378
|
+
tag: {
|
|
216379
|
+
"@id": "as:tag",
|
|
216380
|
+
"@type": "@id"
|
|
216381
|
+
},
|
|
216382
|
+
target: {
|
|
216383
|
+
"@id": "as:target",
|
|
216384
|
+
"@type": "@id"
|
|
216385
|
+
},
|
|
216386
|
+
to: {
|
|
216387
|
+
"@id": "as:to",
|
|
216388
|
+
"@type": "@id"
|
|
216389
|
+
},
|
|
216390
|
+
url: {
|
|
216391
|
+
"@id": "as:url",
|
|
216392
|
+
"@type": "@id"
|
|
216393
|
+
},
|
|
216394
|
+
altitude: {
|
|
216395
|
+
"@id": "as:altitude",
|
|
216396
|
+
"@type": "xsd:float"
|
|
216397
|
+
},
|
|
216398
|
+
content: "as:content",
|
|
216399
|
+
contentMap: {
|
|
216400
|
+
"@id": "as:content",
|
|
216401
|
+
"@container": "@language"
|
|
216402
|
+
},
|
|
216403
|
+
name: "as:name",
|
|
216404
|
+
nameMap: {
|
|
216405
|
+
"@id": "as:name",
|
|
216406
|
+
"@container": "@language"
|
|
216407
|
+
},
|
|
216408
|
+
duration: {
|
|
216409
|
+
"@id": "as:duration",
|
|
216410
|
+
"@type": "xsd:duration"
|
|
216411
|
+
},
|
|
216412
|
+
endTime: {
|
|
216413
|
+
"@id": "as:endTime",
|
|
216414
|
+
"@type": "xsd:dateTime"
|
|
216415
|
+
},
|
|
216416
|
+
height: {
|
|
216417
|
+
"@id": "as:height",
|
|
216418
|
+
"@type": "xsd:nonNegativeInteger"
|
|
216419
|
+
},
|
|
216420
|
+
href: {
|
|
216421
|
+
"@id": "as:href",
|
|
216422
|
+
"@type": "@id"
|
|
216423
|
+
},
|
|
216424
|
+
hreflang: "as:hreflang",
|
|
216425
|
+
latitude: {
|
|
216426
|
+
"@id": "as:latitude",
|
|
216427
|
+
"@type": "xsd:float"
|
|
216428
|
+
},
|
|
216429
|
+
longitude: {
|
|
216430
|
+
"@id": "as:longitude",
|
|
216431
|
+
"@type": "xsd:float"
|
|
216432
|
+
},
|
|
216433
|
+
mediaType: "as:mediaType",
|
|
216434
|
+
published: {
|
|
216435
|
+
"@id": "as:published",
|
|
216436
|
+
"@type": "xsd:dateTime"
|
|
216437
|
+
},
|
|
216438
|
+
radius: {
|
|
216439
|
+
"@id": "as:radius",
|
|
216440
|
+
"@type": "xsd:float"
|
|
216441
|
+
},
|
|
216442
|
+
rel: "as:rel",
|
|
216443
|
+
startIndex: {
|
|
216444
|
+
"@id": "as:startIndex",
|
|
216445
|
+
"@type": "xsd:nonNegativeInteger"
|
|
216446
|
+
},
|
|
216447
|
+
startTime: {
|
|
216448
|
+
"@id": "as:startTime",
|
|
216449
|
+
"@type": "xsd:dateTime"
|
|
216450
|
+
},
|
|
216451
|
+
summary: "as:summary",
|
|
216452
|
+
summaryMap: {
|
|
216453
|
+
"@id": "as:summary",
|
|
216454
|
+
"@container": "@language"
|
|
216455
|
+
},
|
|
216456
|
+
totalItems: {
|
|
216457
|
+
"@id": "as:totalItems",
|
|
216458
|
+
"@type": "xsd:nonNegativeInteger"
|
|
216459
|
+
},
|
|
216460
|
+
units: "as:units",
|
|
216461
|
+
updated: {
|
|
216462
|
+
"@id": "as:updated",
|
|
216463
|
+
"@type": "xsd:dateTime"
|
|
216464
|
+
},
|
|
216465
|
+
width: {
|
|
216466
|
+
"@id": "as:width",
|
|
216467
|
+
"@type": "xsd:nonNegativeInteger"
|
|
216468
|
+
},
|
|
216469
|
+
describes: {
|
|
216470
|
+
"@id": "as:describes",
|
|
216471
|
+
"@type": "@id"
|
|
216472
|
+
},
|
|
216473
|
+
formerType: {
|
|
216474
|
+
"@id": "as:formerType",
|
|
216475
|
+
"@type": "@id"
|
|
216476
|
+
},
|
|
216477
|
+
deleted: {
|
|
216478
|
+
"@id": "as:deleted",
|
|
216479
|
+
"@type": "xsd:dateTime"
|
|
216480
|
+
},
|
|
216481
|
+
inbox: {
|
|
216482
|
+
"@id": "ldp:inbox",
|
|
216483
|
+
"@type": "@id"
|
|
216484
|
+
},
|
|
216485
|
+
outbox: {
|
|
216486
|
+
"@id": "as:outbox",
|
|
216487
|
+
"@type": "@id"
|
|
216488
|
+
},
|
|
216489
|
+
following: {
|
|
216490
|
+
"@id": "as:following",
|
|
216491
|
+
"@type": "@id"
|
|
216492
|
+
},
|
|
216493
|
+
followers: {
|
|
216494
|
+
"@id": "as:followers",
|
|
216495
|
+
"@type": "@id"
|
|
216496
|
+
},
|
|
216497
|
+
streams: {
|
|
216498
|
+
"@id": "as:streams",
|
|
216499
|
+
"@type": "@id"
|
|
216500
|
+
},
|
|
216501
|
+
preferredUsername: "as:preferredUsername",
|
|
216502
|
+
endpoints: {
|
|
216503
|
+
"@id": "as:endpoints",
|
|
216504
|
+
"@type": "@id"
|
|
216505
|
+
},
|
|
216506
|
+
uploadMedia: {
|
|
216507
|
+
"@id": "as:uploadMedia",
|
|
216508
|
+
"@type": "@id"
|
|
216509
|
+
},
|
|
216510
|
+
proxyUrl: {
|
|
216511
|
+
"@id": "as:proxyUrl",
|
|
216512
|
+
"@type": "@id"
|
|
216513
|
+
},
|
|
216514
|
+
liked: {
|
|
216515
|
+
"@id": "as:liked",
|
|
216516
|
+
"@type": "@id"
|
|
216517
|
+
},
|
|
216518
|
+
oauthAuthorizationEndpoint: {
|
|
216519
|
+
"@id": "as:oauthAuthorizationEndpoint",
|
|
216520
|
+
"@type": "@id"
|
|
216521
|
+
},
|
|
216522
|
+
oauthTokenEndpoint: {
|
|
216523
|
+
"@id": "as:oauthTokenEndpoint",
|
|
216524
|
+
"@type": "@id"
|
|
216525
|
+
},
|
|
216526
|
+
provideClientKey: {
|
|
216527
|
+
"@id": "as:provideClientKey",
|
|
216528
|
+
"@type": "@id"
|
|
216529
|
+
},
|
|
216530
|
+
signClientKey: {
|
|
216531
|
+
"@id": "as:signClientKey",
|
|
216532
|
+
"@type": "@id"
|
|
216533
|
+
},
|
|
216534
|
+
sharedInbox: {
|
|
216535
|
+
"@id": "as:sharedInbox",
|
|
216536
|
+
"@type": "@id"
|
|
216537
|
+
},
|
|
216538
|
+
Public: {
|
|
216539
|
+
"@id": "as:Public",
|
|
216540
|
+
"@type": "@id"
|
|
216541
|
+
},
|
|
216542
|
+
source: "as:source",
|
|
216543
|
+
likes: {
|
|
216544
|
+
"@id": "as:likes",
|
|
216545
|
+
"@type": "@id"
|
|
216546
|
+
},
|
|
216547
|
+
shares: {
|
|
216548
|
+
"@id": "as:shares",
|
|
216549
|
+
"@type": "@id"
|
|
216550
|
+
},
|
|
216551
|
+
alsoKnownAs: {
|
|
216552
|
+
"@id": "as:alsoKnownAs",
|
|
216553
|
+
"@type": "@id"
|
|
216554
|
+
}
|
|
216555
|
+
}
|
|
216556
|
+
};
|
|
216557
|
+
|
|
216558
|
+
var w3cOdrl = {
|
|
216559
|
+
"@context": {
|
|
216560
|
+
odrl: "http://www.w3.org/ns/odrl/2/",
|
|
216561
|
+
rdf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
216562
|
+
rdfs: "http://www.w3.org/2000/01/rdf-schema#",
|
|
216563
|
+
owl: "http://www.w3.org/2002/07/owl#",
|
|
216564
|
+
skos: "http://www.w3.org/2004/02/skos/core#",
|
|
216565
|
+
dct: "http://purl.org/dc/terms/",
|
|
216566
|
+
xsd: "http://www.w3.org/2001/XMLSchema#",
|
|
216567
|
+
vcard: "http://www.w3.org/2006/vcard/ns#",
|
|
216568
|
+
foaf: "http://xmlns.com/foaf/0.1/",
|
|
216569
|
+
schema: "http://schema.org/",
|
|
216570
|
+
cc: "http://creativecommons.org/ns#",
|
|
216571
|
+
uid: "@id",
|
|
216572
|
+
type: "@type",
|
|
216573
|
+
Policy: "odrl:Policy",
|
|
216574
|
+
Rule: "odrl:Rule",
|
|
216575
|
+
profile: {
|
|
216576
|
+
"@type": "@id",
|
|
216577
|
+
"@id": "odrl:profile"
|
|
216578
|
+
},
|
|
216579
|
+
inheritFrom: {
|
|
216580
|
+
"@type": "@id",
|
|
216581
|
+
"@id": "odrl:inheritFrom"
|
|
216582
|
+
},
|
|
216583
|
+
ConflictTerm: "odrl:ConflictTerm",
|
|
216584
|
+
conflict: {
|
|
216585
|
+
"@type": "@vocab",
|
|
216586
|
+
"@id": "odrl:conflict"
|
|
216587
|
+
},
|
|
216588
|
+
perm: "odrl:perm",
|
|
216589
|
+
prohibit: "odrl:prohibit",
|
|
216590
|
+
invalid: "odrl:invalid",
|
|
216591
|
+
Agreement: "odrl:Agreement",
|
|
216592
|
+
Assertion: "odrl:Assertion",
|
|
216593
|
+
Offer: "odrl:Offer",
|
|
216594
|
+
Privacy: "odrl:Privacy",
|
|
216595
|
+
Request: "odrl:Request",
|
|
216596
|
+
"Set": "odrl:Set",
|
|
216597
|
+
Ticket: "odrl:Ticket",
|
|
216598
|
+
Asset: "odrl:Asset",
|
|
216599
|
+
AssetCollection: "odrl:AssetCollection",
|
|
216600
|
+
relation: {
|
|
216601
|
+
"@type": "@id",
|
|
216602
|
+
"@id": "odrl:relation"
|
|
216603
|
+
},
|
|
216604
|
+
hasPolicy: {
|
|
216605
|
+
"@type": "@id",
|
|
216606
|
+
"@id": "odrl:hasPolicy"
|
|
216607
|
+
},
|
|
216608
|
+
target: {
|
|
216609
|
+
"@type": "@id",
|
|
216610
|
+
"@id": "odrl:target"
|
|
216611
|
+
},
|
|
216612
|
+
output: {
|
|
216613
|
+
"@type": "@id",
|
|
216614
|
+
"@id": "odrl:output"
|
|
216615
|
+
},
|
|
216616
|
+
partOf: {
|
|
216617
|
+
"@type": "@id",
|
|
216618
|
+
"@id": "odrl:partOf"
|
|
216619
|
+
},
|
|
216620
|
+
source: {
|
|
216621
|
+
"@type": "@id",
|
|
216622
|
+
"@id": "odrl:source"
|
|
216623
|
+
},
|
|
216624
|
+
Party: "odrl:Party",
|
|
216625
|
+
PartyCollection: "odrl:PartyCollection",
|
|
216626
|
+
"function": {
|
|
216627
|
+
"@type": "@vocab",
|
|
216628
|
+
"@id": "odrl:function"
|
|
216629
|
+
},
|
|
216630
|
+
PartyScope: "odrl:PartyScope",
|
|
216631
|
+
assignee: {
|
|
216632
|
+
"@type": "@id",
|
|
216633
|
+
"@id": "odrl:assignee"
|
|
216634
|
+
},
|
|
216635
|
+
assigner: {
|
|
216636
|
+
"@type": "@id",
|
|
216637
|
+
"@id": "odrl:assigner"
|
|
216638
|
+
},
|
|
216639
|
+
assigneeOf: {
|
|
216640
|
+
"@type": "@id",
|
|
216641
|
+
"@id": "odrl:assigneeOf"
|
|
216642
|
+
},
|
|
216643
|
+
assignerOf: {
|
|
216644
|
+
"@type": "@id",
|
|
216645
|
+
"@id": "odrl:assignerOf"
|
|
216646
|
+
},
|
|
216647
|
+
attributedParty: {
|
|
216648
|
+
"@type": "@id",
|
|
216649
|
+
"@id": "odrl:attributedParty"
|
|
216650
|
+
},
|
|
216651
|
+
attributingParty: {
|
|
216652
|
+
"@type": "@id",
|
|
216653
|
+
"@id": "odrl:attributingParty"
|
|
216654
|
+
},
|
|
216655
|
+
compensatedParty: {
|
|
216656
|
+
"@type": "@id",
|
|
216657
|
+
"@id": "odrl:compensatedParty"
|
|
216658
|
+
},
|
|
216659
|
+
compensatingParty: {
|
|
216660
|
+
"@type": "@id",
|
|
216661
|
+
"@id": "odrl:compensatingParty"
|
|
216662
|
+
},
|
|
216663
|
+
consentingParty: {
|
|
216664
|
+
"@type": "@id",
|
|
216665
|
+
"@id": "odrl:consentingParty"
|
|
216666
|
+
},
|
|
216667
|
+
consentedParty: {
|
|
216668
|
+
"@type": "@id",
|
|
216669
|
+
"@id": "odrl:consentedParty"
|
|
216670
|
+
},
|
|
216671
|
+
informedParty: {
|
|
216672
|
+
"@type": "@id",
|
|
216673
|
+
"@id": "odrl:informedParty"
|
|
216674
|
+
},
|
|
216675
|
+
informingParty: {
|
|
216676
|
+
"@type": "@id",
|
|
216677
|
+
"@id": "odrl:informingParty"
|
|
216678
|
+
},
|
|
216679
|
+
trackingParty: {
|
|
216680
|
+
"@type": "@id",
|
|
216681
|
+
"@id": "odrl:trackingParty"
|
|
216682
|
+
},
|
|
216683
|
+
trackedParty: {
|
|
216684
|
+
"@type": "@id",
|
|
216685
|
+
"@id": "odrl:trackedParty"
|
|
216686
|
+
},
|
|
216687
|
+
contractingParty: {
|
|
216688
|
+
"@type": "@id",
|
|
216689
|
+
"@id": "odrl:contractingParty"
|
|
216690
|
+
},
|
|
216691
|
+
contractedParty: {
|
|
216692
|
+
"@type": "@id",
|
|
216693
|
+
"@id": "odrl:contractedParty"
|
|
216694
|
+
},
|
|
216695
|
+
Action: "odrl:Action",
|
|
216696
|
+
action: {
|
|
216697
|
+
"@type": "@vocab",
|
|
216698
|
+
"@id": "odrl:action"
|
|
216699
|
+
},
|
|
216700
|
+
includedIn: {
|
|
216701
|
+
"@type": "@id",
|
|
216702
|
+
"@id": "odrl:includedIn"
|
|
216703
|
+
},
|
|
216704
|
+
implies: {
|
|
216705
|
+
"@type": "@id",
|
|
216706
|
+
"@id": "odrl:implies"
|
|
216707
|
+
},
|
|
216708
|
+
Permission: "odrl:Permission",
|
|
216709
|
+
permission: {
|
|
216710
|
+
"@type": "@id",
|
|
216711
|
+
"@id": "odrl:permission"
|
|
216712
|
+
},
|
|
216713
|
+
Prohibition: "odrl:Prohibition",
|
|
216714
|
+
prohibition: {
|
|
216715
|
+
"@type": "@id",
|
|
216716
|
+
"@id": "odrl:prohibition"
|
|
216717
|
+
},
|
|
216718
|
+
obligation: {
|
|
216719
|
+
"@type": "@id",
|
|
216720
|
+
"@id": "odrl:obligation"
|
|
216721
|
+
},
|
|
216722
|
+
use: "odrl:use",
|
|
216723
|
+
grantUse: "odrl:grantUse",
|
|
216724
|
+
aggregate: "odrl:aggregate",
|
|
216725
|
+
annotate: "odrl:annotate",
|
|
216726
|
+
anonymize: "odrl:anonymize",
|
|
216727
|
+
archive: "odrl:archive",
|
|
216728
|
+
concurrentUse: "odrl:concurrentUse",
|
|
216729
|
+
derive: "odrl:derive",
|
|
216730
|
+
digitize: "odrl:digitize",
|
|
216731
|
+
display: "odrl:display",
|
|
216732
|
+
distribute: "odrl:distribute",
|
|
216733
|
+
execute: "odrl:execute",
|
|
216734
|
+
extract: "odrl:extract",
|
|
216735
|
+
give: "odrl:give",
|
|
216736
|
+
index: "odrl:index",
|
|
216737
|
+
install: "odrl:install",
|
|
216738
|
+
modify: "odrl:modify",
|
|
216739
|
+
move: "odrl:move",
|
|
216740
|
+
play: "odrl:play",
|
|
216741
|
+
present: "odrl:present",
|
|
216742
|
+
print: "odrl:print",
|
|
216743
|
+
read: "odrl:read",
|
|
216744
|
+
reproduce: "odrl:reproduce",
|
|
216745
|
+
sell: "odrl:sell",
|
|
216746
|
+
stream: "odrl:stream",
|
|
216747
|
+
textToSpeech: "odrl:textToSpeech",
|
|
216748
|
+
transfer: "odrl:transfer",
|
|
216749
|
+
transform: "odrl:transform",
|
|
216750
|
+
translate: "odrl:translate",
|
|
216751
|
+
Duty: "odrl:Duty",
|
|
216752
|
+
duty: {
|
|
216753
|
+
"@type": "@id",
|
|
216754
|
+
"@id": "odrl:duty"
|
|
216755
|
+
},
|
|
216756
|
+
consequence: {
|
|
216757
|
+
"@type": "@id",
|
|
216758
|
+
"@id": "odrl:consequence"
|
|
216759
|
+
},
|
|
216760
|
+
remedy: {
|
|
216761
|
+
"@type": "@id",
|
|
216762
|
+
"@id": "odrl:remedy"
|
|
216763
|
+
},
|
|
216764
|
+
acceptTracking: "odrl:acceptTracking",
|
|
216765
|
+
attribute: "odrl:attribute",
|
|
216766
|
+
compensate: "odrl:compensate",
|
|
216767
|
+
"delete": "odrl:delete",
|
|
216768
|
+
ensureExclusivity: "odrl:ensureExclusivity",
|
|
216769
|
+
include: "odrl:include",
|
|
216770
|
+
inform: "odrl:inform",
|
|
216771
|
+
nextPolicy: "odrl:nextPolicy",
|
|
216772
|
+
obtainConsent: "odrl:obtainConsent",
|
|
216773
|
+
reviewPolicy: "odrl:reviewPolicy",
|
|
216774
|
+
uninstall: "odrl:uninstall",
|
|
216775
|
+
watermark: "odrl:watermark",
|
|
216776
|
+
Constraint: "odrl:Constraint",
|
|
216777
|
+
LogicalConstraint: "odrl:LogicalConstraint",
|
|
216778
|
+
constraint: {
|
|
216779
|
+
"@type": "@id",
|
|
216780
|
+
"@id": "odrl:constraint"
|
|
216781
|
+
},
|
|
216782
|
+
refinement: {
|
|
216783
|
+
"@type": "@id",
|
|
216784
|
+
"@id": "odrl:refinement"
|
|
216785
|
+
},
|
|
216786
|
+
Operator: "odrl:Operator",
|
|
216787
|
+
operator: {
|
|
216788
|
+
"@type": "@vocab",
|
|
216789
|
+
"@id": "odrl:operator"
|
|
216790
|
+
},
|
|
216791
|
+
RightOperand: "odrl:RightOperand",
|
|
216792
|
+
rightOperand: "odrl:rightOperand",
|
|
216793
|
+
rightOperandReference: {
|
|
216794
|
+
"@type": "xsd:anyURI",
|
|
216795
|
+
"@id": "odrl:rightOperandReference"
|
|
216796
|
+
},
|
|
216797
|
+
LeftOperand: "odrl:LeftOperand",
|
|
216798
|
+
leftOperand: {
|
|
216799
|
+
"@type": "@vocab",
|
|
216800
|
+
"@id": "odrl:leftOperand"
|
|
216801
|
+
},
|
|
216802
|
+
unit: "odrl:unit",
|
|
216803
|
+
dataType: {
|
|
216804
|
+
"@type": "xsd:anyType",
|
|
216805
|
+
"@id": "odrl:datatype"
|
|
216806
|
+
},
|
|
216807
|
+
status: "odrl:status",
|
|
216808
|
+
absolutePosition: "odrl:absolutePosition",
|
|
216809
|
+
absoluteSpatialPosition: "odrl:absoluteSpatialPosition",
|
|
216810
|
+
absoluteTemporalPosition: "odrl:absoluteTemporalPosition",
|
|
216811
|
+
absoluteSize: "odrl:absoluteSize",
|
|
216812
|
+
count: "odrl:count",
|
|
216813
|
+
dateTime: "odrl:dateTime",
|
|
216814
|
+
delayPeriod: "odrl:delayPeriod",
|
|
216815
|
+
deliveryChannel: "odrl:deliveryChannel",
|
|
216816
|
+
elapsedTime: "odrl:elapsedTime",
|
|
216817
|
+
event: "odrl:event",
|
|
216818
|
+
fileFormat: "odrl:fileFormat",
|
|
216819
|
+
industry: "odrl:industry:",
|
|
216820
|
+
language: "odrl:language",
|
|
216821
|
+
media: "odrl:media",
|
|
216822
|
+
meteredTime: "odrl:meteredTime",
|
|
216823
|
+
payAmount: "odrl:payAmount",
|
|
216824
|
+
percentage: "odrl:percentage",
|
|
216825
|
+
product: "odrl:product",
|
|
216826
|
+
purpose: "odrl:purpose",
|
|
216827
|
+
recipient: "odrl:recipient",
|
|
216828
|
+
relativePosition: "odrl:relativePosition",
|
|
216829
|
+
relativeSpatialPosition: "odrl:relativeSpatialPosition",
|
|
216830
|
+
relativeTemporalPosition: "odrl:relativeTemporalPosition",
|
|
216831
|
+
relativeSize: "odrl:relativeSize",
|
|
216832
|
+
resolution: "odrl:resolution",
|
|
216833
|
+
spatial: "odrl:spatial",
|
|
216834
|
+
spatialCoordinates: "odrl:spatialCoordinates",
|
|
216835
|
+
systemDevice: "odrl:systemDevice",
|
|
216836
|
+
timeInterval: "odrl:timeInterval",
|
|
216837
|
+
unitOfCount: "odrl:unitOfCount",
|
|
216838
|
+
version: "odrl:version",
|
|
216839
|
+
virtualLocation: "odrl:virtualLocation",
|
|
216840
|
+
eq: "odrl:eq",
|
|
216841
|
+
gt: "odrl:gt",
|
|
216842
|
+
gteq: "odrl:gteq",
|
|
216843
|
+
lt: "odrl:lt",
|
|
216844
|
+
lteq: "odrl:lteq",
|
|
216845
|
+
neq: "odrl:neg",
|
|
216846
|
+
isA: "odrl:isA",
|
|
216847
|
+
hasPart: "odrl:hasPart",
|
|
216848
|
+
isPartOf: "odrl:isPartOf",
|
|
216849
|
+
isAllOf: "odrl:isAllOf",
|
|
216850
|
+
isAnyOf: "odrl:isAnyOf",
|
|
216851
|
+
isNoneOf: "odrl:isNoneOf",
|
|
216852
|
+
or: "odrl:or",
|
|
216853
|
+
xone: "odrl:xone",
|
|
216854
|
+
and: "odrl:and",
|
|
216855
|
+
andSequence: "odrl:andSequence",
|
|
216856
|
+
policyUsage: "odrl:policyUsage"
|
|
216857
|
+
}
|
|
216858
|
+
};
|
|
216859
|
+
|
|
216860
|
+
var w3cVc = {
|
|
216481
216861
|
"@context": {
|
|
216482
216862
|
"@protected": true,
|
|
216483
216863
|
id: "@id",
|
|
@@ -216779,7 +217159,7 @@ var vc = {
|
|
|
216779
217159
|
}
|
|
216780
217160
|
};
|
|
216781
217161
|
|
|
216782
|
-
var
|
|
217162
|
+
var w3IdJws = {
|
|
216783
217163
|
"@context": {
|
|
216784
217164
|
privateKeyJwk: {
|
|
216785
217165
|
"@id": "https://w3id.org/security#privateKeyJwk",
|
|
@@ -216871,11 +217251,13 @@ const LD_CONTEXTS = {
|
|
|
216871
217251
|
// Gaia-X
|
|
216872
217252
|
"https://w3id.org/gaia-x/development": gaiaXDevelopment,
|
|
216873
217253
|
"https://w3id.org/gaia-x/development#": gaiaXDevelopment,
|
|
216874
|
-
// ODRL
|
|
216875
|
-
"http://www.w3.org/ns/odrl.jsonld":
|
|
217254
|
+
// W3C ODRL
|
|
217255
|
+
"http://www.w3.org/ns/odrl.jsonld": w3cOdrl,
|
|
217256
|
+
// W3C Activity Streams
|
|
217257
|
+
"https://www.w3.org/ns/activitystreams#": w3cActivityStreams,
|
|
216876
217258
|
// W3C Credentials
|
|
216877
|
-
"https://www.w3.org/ns/credentials/v2":
|
|
216878
|
-
"https://w3id.org/security/suites/jws-2020/v1":
|
|
217259
|
+
"https://www.w3.org/ns/credentials/v2": w3cVc,
|
|
217260
|
+
"https://w3id.org/security/suites/jws-2020/v1": w3IdJws,
|
|
216879
217261
|
// UN/CEFACT
|
|
216880
217262
|
"https://vocabulary.uncefact.org": unCefact,
|
|
216881
217263
|
// Dublin Core
|