@twin.org/standards-ld-contexts 0.0.2-next.6 → 0.0.2-next.8

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.
@@ -2370,6 +2370,458 @@ var gaiaXDevelopment = {
2370
2370
  }
2371
2371
  };
2372
2372
 
2373
+ var idsContractNegotiation = {
2374
+ "@context": {
2375
+ "@version": 1.1,
2376
+ "@protected": true,
2377
+ xsd: "http://www.w3.org/2001/XMLSchema#",
2378
+ dct: "http://purl.org/dc/terms/",
2379
+ dcat: "http://www.w3.org/ns/dcat#",
2380
+ odrl: "http://www.w3.org/ns/odrl/2/",
2381
+ dspace: "https://w3id.org/dspace/2025/1/",
2382
+ DatasetRequestMessage: {
2383
+ "@id": "dspace:DatasetRequestMessage",
2384
+ "@context": {
2385
+ "@version": 1.1,
2386
+ "@protected": true,
2387
+ dataset: "dspace:dataset"
2388
+ }
2389
+ },
2390
+ CatalogRequestMessage: {
2391
+ "@id": "dspace:CatalogRequestMessage",
2392
+ "@context": {
2393
+ "@version": 1.1,
2394
+ "@protected": true,
2395
+ filter: {
2396
+ "@id": "dspace:filter",
2397
+ "@container": "@set"
2398
+ }
2399
+ }
2400
+ },
2401
+ CatalogError: {
2402
+ "@id": "dspace:CatalogError",
2403
+ "@context": {
2404
+ "@version": 1.1,
2405
+ "@protected": true,
2406
+ code: "dspace:code",
2407
+ reason: {
2408
+ "@id": "dspace:reason",
2409
+ "@container": "@set"
2410
+ }
2411
+ }
2412
+ },
2413
+ ContractRequestMessage: {
2414
+ "@id": "dspace:ContractRequestMessage",
2415
+ "@context": {
2416
+ "@version": 1.1,
2417
+ "@protected": true,
2418
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2419
+ "@propagate": true,
2420
+ callbackAddress: "dspace:callbackAddress",
2421
+ providerPid: {
2422
+ "@type": "@id",
2423
+ "@id": "dspace:providerPid"
2424
+ },
2425
+ consumerPid: {
2426
+ "@type": "@id",
2427
+ "@id": "dspace:consumerPid"
2428
+ },
2429
+ offer: {
2430
+ "@type": "@id",
2431
+ "@id": "dspace:offer"
2432
+ }
2433
+ }
2434
+ },
2435
+ ContractOfferMessage: {
2436
+ "@id": "dspace:ContractOfferMessage",
2437
+ "@context": {
2438
+ "@version": 1.1,
2439
+ "@protected": true,
2440
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2441
+ "@propagate": true,
2442
+ callbackAddress: "dspace:callbackAddress",
2443
+ providerPid: {
2444
+ "@type": "@id",
2445
+ "@id": "dspace:providerPid"
2446
+ },
2447
+ consumerPid: {
2448
+ "@type": "@id",
2449
+ "@id": "dspace:consumerPid"
2450
+ },
2451
+ offer: {
2452
+ "@type": "@id",
2453
+ "@id": "dspace:offer"
2454
+ }
2455
+ }
2456
+ },
2457
+ ContractAgreementMessage: {
2458
+ "@id": "dspace:ContractAgreementMessage",
2459
+ "@context": {
2460
+ "@version": 1.1,
2461
+ "@protected": true,
2462
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2463
+ "@propagate": true,
2464
+ providerPid: {
2465
+ "@type": "@id",
2466
+ "@id": "dspace:providerPid"
2467
+ },
2468
+ consumerPid: {
2469
+ "@type": "@id",
2470
+ "@id": "dspace:consumerPid"
2471
+ },
2472
+ agreement: {
2473
+ "@id": "dspace:agreement",
2474
+ "@type": "@id"
2475
+ },
2476
+ timestamp: "dspace:timestamp"
2477
+ }
2478
+ },
2479
+ ContractAgreementVerificationMessage: {
2480
+ "@id": "dspace:ContractAgreementVerificationMessage",
2481
+ "@context": {
2482
+ "@version": 1.1,
2483
+ "@protected": true,
2484
+ providerPid: {
2485
+ "@type": "@id",
2486
+ "@id": "dspace:providerPid"
2487
+ },
2488
+ consumerPid: {
2489
+ "@type": "@id",
2490
+ "@id": "dspace:consumerPid"
2491
+ }
2492
+ }
2493
+ },
2494
+ ContractNegotiationEventMessage: {
2495
+ "@id": "dspace:ContractNegotiationEventMessage",
2496
+ "@context": {
2497
+ "@version": 1.1,
2498
+ "@protected": true,
2499
+ providerPid: {
2500
+ "@type": "@id",
2501
+ "@id": "dspace:providerPid"
2502
+ },
2503
+ consumerPid: {
2504
+ "@type": "@id",
2505
+ "@id": "dspace:consumerPid"
2506
+ },
2507
+ eventType: {
2508
+ "@type": "@vocab",
2509
+ "@id": "dspace:eventType"
2510
+ }
2511
+ }
2512
+ },
2513
+ ContractNegotiationTerminationMessage: {
2514
+ "@id": "dspace:ContractNegotiationTerminationMessage",
2515
+ "@context": {
2516
+ "@version": 1.1,
2517
+ "@protected": true,
2518
+ code: "dspace:code",
2519
+ reason: {
2520
+ "@id": "dspace:reason",
2521
+ "@container": "@set"
2522
+ },
2523
+ providerPid: {
2524
+ "@type": "@id",
2525
+ "@id": "dspace:providerPid"
2526
+ },
2527
+ consumerPid: {
2528
+ "@type": "@id",
2529
+ "@id": "dspace:consumerPid"
2530
+ }
2531
+ }
2532
+ },
2533
+ ContractNegotiation: {
2534
+ "@id": "dspace:ContractNegotiation",
2535
+ "@context": {
2536
+ "@version": 1.1,
2537
+ "@protected": true,
2538
+ providerPid: {
2539
+ "@type": "@id",
2540
+ "@id": "dspace:providerPid"
2541
+ },
2542
+ consumerPid: {
2543
+ "@type": "@id",
2544
+ "@id": "dspace:consumerPid"
2545
+ },
2546
+ state: {
2547
+ "@type": "@vocab",
2548
+ "@id": "dspace:state"
2549
+ }
2550
+ }
2551
+ },
2552
+ ContractNegotiationError: {
2553
+ "@id": "dspace:ContractNegotiationError",
2554
+ "@context": {
2555
+ "@version": 1.1,
2556
+ "@protected": true,
2557
+ providerPid: {
2558
+ "@type": "@id",
2559
+ "@id": "dspace:providerPid"
2560
+ },
2561
+ consumerPid: {
2562
+ "@type": "@id",
2563
+ "@id": "dspace:consumerPid"
2564
+ },
2565
+ code: "dspace:code",
2566
+ reason: {
2567
+ "@id": "dspace:reason",
2568
+ "@container": "@set"
2569
+ }
2570
+ }
2571
+ },
2572
+ TransferRequestMessage: {
2573
+ "@id": "dspace:TransferRequestMessage",
2574
+ "@context": {
2575
+ "@version": 1.1,
2576
+ "@protected": true,
2577
+ callbackAddress: "dspace:callbackAddress",
2578
+ dataAddress: "dspace:dataAddress",
2579
+ consumerPid: {
2580
+ "@type": "@id",
2581
+ "@id": "dspace:consumerPid"
2582
+ },
2583
+ format: {
2584
+ "@type": "@vocab",
2585
+ "@id": "dct:format"
2586
+ },
2587
+ agreementId: {
2588
+ "@type": "@id",
2589
+ "@id": "dspace:agreementId"
2590
+ }
2591
+ }
2592
+ },
2593
+ TransferStartMessage: {
2594
+ "@id": "dspace:TransferStartMessage",
2595
+ "@context": {
2596
+ "@version": 1.1,
2597
+ "@protected": true,
2598
+ providerPid: {
2599
+ "@type": "@id",
2600
+ "@id": "dspace:providerPid"
2601
+ },
2602
+ consumerPid: {
2603
+ "@type": "@id",
2604
+ "@id": "dspace:consumerPid"
2605
+ },
2606
+ dataAddress: "dspace:dataAddress"
2607
+ }
2608
+ },
2609
+ TransferCompletionMessage: {
2610
+ "@id": "dspace:TransferCompletionMessage",
2611
+ "@context": {
2612
+ "@version": 1.1,
2613
+ "@protected": true,
2614
+ providerPid: {
2615
+ "@type": "@id",
2616
+ "@id": "dspace:providerPid"
2617
+ },
2618
+ consumerPid: {
2619
+ "@type": "@id",
2620
+ "@id": "dspace:consumerPid"
2621
+ }
2622
+ }
2623
+ },
2624
+ TransferTerminationMessage: {
2625
+ "@id": "dspace:TransferTerminationMessage",
2626
+ "@context": {
2627
+ "@version": 1.1,
2628
+ "@protected": true,
2629
+ code: "dspace:code",
2630
+ reason: {
2631
+ "@id": "dspace:reason",
2632
+ "@container": "@set"
2633
+ },
2634
+ providerPid: {
2635
+ "@type": "@id",
2636
+ "@id": "dspace:providerPid"
2637
+ },
2638
+ consumerPid: {
2639
+ "@type": "@id",
2640
+ "@id": "dspace:consumerPid"
2641
+ }
2642
+ }
2643
+ },
2644
+ TransferSuspensionMessage: {
2645
+ "@id": "dspace:TransferSuspensionMessage",
2646
+ "@context": {
2647
+ "@version": 1.1,
2648
+ "@protected": true,
2649
+ code: "dspace:code",
2650
+ reason: {
2651
+ "@id": "dspace:reason",
2652
+ "@container": "@set"
2653
+ },
2654
+ providerPid: {
2655
+ "@type": "@id",
2656
+ "@id": "dspace:providerPid"
2657
+ },
2658
+ consumerPid: {
2659
+ "@type": "@id",
2660
+ "@id": "dspace:consumerPid"
2661
+ }
2662
+ }
2663
+ },
2664
+ TransferError: {
2665
+ "@id": "dspace:TransferError",
2666
+ "@context": {
2667
+ "@version": 1.1,
2668
+ "@protected": true,
2669
+ code: "dspace:code",
2670
+ consumerPid: "dspace:consumerPid",
2671
+ providerPid: "dspace:providerPid",
2672
+ reason: {
2673
+ "@id": "dspace:reason",
2674
+ "@container": "@set"
2675
+ }
2676
+ }
2677
+ },
2678
+ DataAddress: {
2679
+ "@id": "dspace:DataAddress",
2680
+ "@context": {
2681
+ "@version": 1.1,
2682
+ "@protected": true,
2683
+ endpointType: {
2684
+ "@type": "@vocab",
2685
+ "@id": "dspace:endpointType"
2686
+ },
2687
+ endpointProperties: {
2688
+ "@id": "dspace:endpointProperties",
2689
+ "@container": "@set"
2690
+ },
2691
+ endpoint: "dspace:endpoint"
2692
+ }
2693
+ },
2694
+ EndpointProperty: {
2695
+ "@id": "dspace:EndpointProperty",
2696
+ "@context": {
2697
+ "@version": 1.1,
2698
+ "@protected": true,
2699
+ name: "dspace:name",
2700
+ value: "dspace:value"
2701
+ }
2702
+ },
2703
+ TransferProcess: {
2704
+ "@id": "dspace:TransferProcess",
2705
+ "@context": {
2706
+ "@version": 1.1,
2707
+ "@protected": true,
2708
+ providerPid: {
2709
+ "@type": "@id",
2710
+ "@id": "dspace:providerPid"
2711
+ },
2712
+ consumerPid: {
2713
+ "@type": "@id",
2714
+ "@id": "dspace:consumerPid"
2715
+ },
2716
+ state: {
2717
+ "@type": "@vocab",
2718
+ "@id": "dspace:state"
2719
+ }
2720
+ }
2721
+ },
2722
+ VersionsError: {
2723
+ "@id": "dspace:VersionsError",
2724
+ "@context": {
2725
+ "@version": 1.1,
2726
+ "@protected": true,
2727
+ code: "dspace:code",
2728
+ reason: {
2729
+ "@id": "dspace:reason",
2730
+ "@container": "@set"
2731
+ }
2732
+ }
2733
+ },
2734
+ Catalog: {
2735
+ "@id": "dcat:Catalog",
2736
+ "@context": {
2737
+ "@version": 1.1,
2738
+ "@protected": true,
2739
+ service: {
2740
+ "@id": "dcat:service",
2741
+ "@container": "@set"
2742
+ },
2743
+ participantId: {
2744
+ "@type": "@id",
2745
+ "@id": "dspace:participantId"
2746
+ },
2747
+ catalog: {
2748
+ "@id": "dcat:catalog",
2749
+ "@container": "@set"
2750
+ },
2751
+ dataset: {
2752
+ "@id": "dcat:dataset",
2753
+ "@container": "@set"
2754
+ },
2755
+ distribution: {
2756
+ "@id": "dcat:distribution",
2757
+ "@container": "@set"
2758
+ }
2759
+ }
2760
+ },
2761
+ Dataset: {
2762
+ "@id": "dcat:Dataset",
2763
+ "@context": {
2764
+ "@version": 1.1,
2765
+ "@protected": true,
2766
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2767
+ "@propagate": true,
2768
+ distribution: {
2769
+ "@id": "dcat:distribution",
2770
+ "@container": "@set"
2771
+ },
2772
+ hasPolicy: {
2773
+ "@id": "odrl:hasPolicy",
2774
+ "@container": "@set"
2775
+ }
2776
+ }
2777
+ },
2778
+ DataService: {
2779
+ "@id": "dcat:DataService",
2780
+ "@context": {
2781
+ "@version": 1.1,
2782
+ "@protected": true,
2783
+ endpointDescription: "dcat:endpointDescription",
2784
+ endpointURL: "dcat:endpointURL"
2785
+ }
2786
+ },
2787
+ Distribution: {
2788
+ "@id": "dcat:Distribution",
2789
+ "@context": {
2790
+ "@version": 1.1,
2791
+ "@protected": true,
2792
+ format: {
2793
+ "@type": "@vocab",
2794
+ "@id": "dct:format"
2795
+ },
2796
+ accessService: {
2797
+ "@id": "dcat:accessService"
2798
+ }
2799
+ }
2800
+ },
2801
+ CatalogService: {
2802
+ "@id": "dspace:CatalogService",
2803
+ "@context": {
2804
+ id: "@id",
2805
+ type: "@type",
2806
+ serviceEndpoint: {
2807
+ "@id": "https://www.w3.org/ns/did#serviceEndpoint",
2808
+ "@type": "@id"
2809
+ }
2810
+ }
2811
+ },
2812
+ ACCEPTED: "dspace:ACCEPTED",
2813
+ FINALIZED: "dspace:FINALIZED",
2814
+ REQUESTED: "dspace:REQUESTED",
2815
+ STARTED: "dspace:STARTED",
2816
+ COMPLETED: "dspace:COMPLETED",
2817
+ SUSPENDED: "dspace:SUSPENDED",
2818
+ TERMINATED: "dspace:TERMINATED",
2819
+ OFFERED: "dspace:OFFERED",
2820
+ AGREED: "dspace:AGREED",
2821
+ VERIFIED: "dspace:VERIFIED"
2822
+ }
2823
+ };
2824
+
2373
2825
  var schemaOrg = {
2374
2826
  "@context": {
2375
2827
  type: "@type",
@@ -217265,6 +217717,9 @@ const LD_CONTEXTS = {
217265
217717
  "http://purl.org/dc/dcmitype/": dcmitype,
217266
217718
  "https://schema.twindev.org/dublin-core/terms.jsonld": dcTerms,
217267
217719
  "https://schema.twindev.org/dublin-core/dcmitype.jsonld": dcmitype,
217720
+ // IDS Contract Negotiation
217721
+ "https://w3id.org/dspace/2024/1/context.json": idsContractNegotiation,
217722
+ "https://w3id.org/dspace/2025/1/context.jsonld": idsContractNegotiation,
217268
217723
  // Federated Catalogue
217269
217724
  "https://schema.twindev.org/federated-catalogue/types.jsonld": federatedCatalogueTerms
217270
217725
  };
@@ -2368,6 +2368,458 @@ var gaiaXDevelopment = {
2368
2368
  }
2369
2369
  };
2370
2370
 
2371
+ var idsContractNegotiation = {
2372
+ "@context": {
2373
+ "@version": 1.1,
2374
+ "@protected": true,
2375
+ xsd: "http://www.w3.org/2001/XMLSchema#",
2376
+ dct: "http://purl.org/dc/terms/",
2377
+ dcat: "http://www.w3.org/ns/dcat#",
2378
+ odrl: "http://www.w3.org/ns/odrl/2/",
2379
+ dspace: "https://w3id.org/dspace/2025/1/",
2380
+ DatasetRequestMessage: {
2381
+ "@id": "dspace:DatasetRequestMessage",
2382
+ "@context": {
2383
+ "@version": 1.1,
2384
+ "@protected": true,
2385
+ dataset: "dspace:dataset"
2386
+ }
2387
+ },
2388
+ CatalogRequestMessage: {
2389
+ "@id": "dspace:CatalogRequestMessage",
2390
+ "@context": {
2391
+ "@version": 1.1,
2392
+ "@protected": true,
2393
+ filter: {
2394
+ "@id": "dspace:filter",
2395
+ "@container": "@set"
2396
+ }
2397
+ }
2398
+ },
2399
+ CatalogError: {
2400
+ "@id": "dspace:CatalogError",
2401
+ "@context": {
2402
+ "@version": 1.1,
2403
+ "@protected": true,
2404
+ code: "dspace:code",
2405
+ reason: {
2406
+ "@id": "dspace:reason",
2407
+ "@container": "@set"
2408
+ }
2409
+ }
2410
+ },
2411
+ ContractRequestMessage: {
2412
+ "@id": "dspace:ContractRequestMessage",
2413
+ "@context": {
2414
+ "@version": 1.1,
2415
+ "@protected": true,
2416
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2417
+ "@propagate": true,
2418
+ callbackAddress: "dspace:callbackAddress",
2419
+ providerPid: {
2420
+ "@type": "@id",
2421
+ "@id": "dspace:providerPid"
2422
+ },
2423
+ consumerPid: {
2424
+ "@type": "@id",
2425
+ "@id": "dspace:consumerPid"
2426
+ },
2427
+ offer: {
2428
+ "@type": "@id",
2429
+ "@id": "dspace:offer"
2430
+ }
2431
+ }
2432
+ },
2433
+ ContractOfferMessage: {
2434
+ "@id": "dspace:ContractOfferMessage",
2435
+ "@context": {
2436
+ "@version": 1.1,
2437
+ "@protected": true,
2438
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2439
+ "@propagate": true,
2440
+ callbackAddress: "dspace:callbackAddress",
2441
+ providerPid: {
2442
+ "@type": "@id",
2443
+ "@id": "dspace:providerPid"
2444
+ },
2445
+ consumerPid: {
2446
+ "@type": "@id",
2447
+ "@id": "dspace:consumerPid"
2448
+ },
2449
+ offer: {
2450
+ "@type": "@id",
2451
+ "@id": "dspace:offer"
2452
+ }
2453
+ }
2454
+ },
2455
+ ContractAgreementMessage: {
2456
+ "@id": "dspace:ContractAgreementMessage",
2457
+ "@context": {
2458
+ "@version": 1.1,
2459
+ "@protected": true,
2460
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2461
+ "@propagate": true,
2462
+ providerPid: {
2463
+ "@type": "@id",
2464
+ "@id": "dspace:providerPid"
2465
+ },
2466
+ consumerPid: {
2467
+ "@type": "@id",
2468
+ "@id": "dspace:consumerPid"
2469
+ },
2470
+ agreement: {
2471
+ "@id": "dspace:agreement",
2472
+ "@type": "@id"
2473
+ },
2474
+ timestamp: "dspace:timestamp"
2475
+ }
2476
+ },
2477
+ ContractAgreementVerificationMessage: {
2478
+ "@id": "dspace:ContractAgreementVerificationMessage",
2479
+ "@context": {
2480
+ "@version": 1.1,
2481
+ "@protected": true,
2482
+ providerPid: {
2483
+ "@type": "@id",
2484
+ "@id": "dspace:providerPid"
2485
+ },
2486
+ consumerPid: {
2487
+ "@type": "@id",
2488
+ "@id": "dspace:consumerPid"
2489
+ }
2490
+ }
2491
+ },
2492
+ ContractNegotiationEventMessage: {
2493
+ "@id": "dspace:ContractNegotiationEventMessage",
2494
+ "@context": {
2495
+ "@version": 1.1,
2496
+ "@protected": true,
2497
+ providerPid: {
2498
+ "@type": "@id",
2499
+ "@id": "dspace:providerPid"
2500
+ },
2501
+ consumerPid: {
2502
+ "@type": "@id",
2503
+ "@id": "dspace:consumerPid"
2504
+ },
2505
+ eventType: {
2506
+ "@type": "@vocab",
2507
+ "@id": "dspace:eventType"
2508
+ }
2509
+ }
2510
+ },
2511
+ ContractNegotiationTerminationMessage: {
2512
+ "@id": "dspace:ContractNegotiationTerminationMessage",
2513
+ "@context": {
2514
+ "@version": 1.1,
2515
+ "@protected": true,
2516
+ code: "dspace:code",
2517
+ reason: {
2518
+ "@id": "dspace:reason",
2519
+ "@container": "@set"
2520
+ },
2521
+ providerPid: {
2522
+ "@type": "@id",
2523
+ "@id": "dspace:providerPid"
2524
+ },
2525
+ consumerPid: {
2526
+ "@type": "@id",
2527
+ "@id": "dspace:consumerPid"
2528
+ }
2529
+ }
2530
+ },
2531
+ ContractNegotiation: {
2532
+ "@id": "dspace:ContractNegotiation",
2533
+ "@context": {
2534
+ "@version": 1.1,
2535
+ "@protected": true,
2536
+ providerPid: {
2537
+ "@type": "@id",
2538
+ "@id": "dspace:providerPid"
2539
+ },
2540
+ consumerPid: {
2541
+ "@type": "@id",
2542
+ "@id": "dspace:consumerPid"
2543
+ },
2544
+ state: {
2545
+ "@type": "@vocab",
2546
+ "@id": "dspace:state"
2547
+ }
2548
+ }
2549
+ },
2550
+ ContractNegotiationError: {
2551
+ "@id": "dspace:ContractNegotiationError",
2552
+ "@context": {
2553
+ "@version": 1.1,
2554
+ "@protected": true,
2555
+ providerPid: {
2556
+ "@type": "@id",
2557
+ "@id": "dspace:providerPid"
2558
+ },
2559
+ consumerPid: {
2560
+ "@type": "@id",
2561
+ "@id": "dspace:consumerPid"
2562
+ },
2563
+ code: "dspace:code",
2564
+ reason: {
2565
+ "@id": "dspace:reason",
2566
+ "@container": "@set"
2567
+ }
2568
+ }
2569
+ },
2570
+ TransferRequestMessage: {
2571
+ "@id": "dspace:TransferRequestMessage",
2572
+ "@context": {
2573
+ "@version": 1.1,
2574
+ "@protected": true,
2575
+ callbackAddress: "dspace:callbackAddress",
2576
+ dataAddress: "dspace:dataAddress",
2577
+ consumerPid: {
2578
+ "@type": "@id",
2579
+ "@id": "dspace:consumerPid"
2580
+ },
2581
+ format: {
2582
+ "@type": "@vocab",
2583
+ "@id": "dct:format"
2584
+ },
2585
+ agreementId: {
2586
+ "@type": "@id",
2587
+ "@id": "dspace:agreementId"
2588
+ }
2589
+ }
2590
+ },
2591
+ TransferStartMessage: {
2592
+ "@id": "dspace:TransferStartMessage",
2593
+ "@context": {
2594
+ "@version": 1.1,
2595
+ "@protected": true,
2596
+ providerPid: {
2597
+ "@type": "@id",
2598
+ "@id": "dspace:providerPid"
2599
+ },
2600
+ consumerPid: {
2601
+ "@type": "@id",
2602
+ "@id": "dspace:consumerPid"
2603
+ },
2604
+ dataAddress: "dspace:dataAddress"
2605
+ }
2606
+ },
2607
+ TransferCompletionMessage: {
2608
+ "@id": "dspace:TransferCompletionMessage",
2609
+ "@context": {
2610
+ "@version": 1.1,
2611
+ "@protected": true,
2612
+ providerPid: {
2613
+ "@type": "@id",
2614
+ "@id": "dspace:providerPid"
2615
+ },
2616
+ consumerPid: {
2617
+ "@type": "@id",
2618
+ "@id": "dspace:consumerPid"
2619
+ }
2620
+ }
2621
+ },
2622
+ TransferTerminationMessage: {
2623
+ "@id": "dspace:TransferTerminationMessage",
2624
+ "@context": {
2625
+ "@version": 1.1,
2626
+ "@protected": true,
2627
+ code: "dspace:code",
2628
+ reason: {
2629
+ "@id": "dspace:reason",
2630
+ "@container": "@set"
2631
+ },
2632
+ providerPid: {
2633
+ "@type": "@id",
2634
+ "@id": "dspace:providerPid"
2635
+ },
2636
+ consumerPid: {
2637
+ "@type": "@id",
2638
+ "@id": "dspace:consumerPid"
2639
+ }
2640
+ }
2641
+ },
2642
+ TransferSuspensionMessage: {
2643
+ "@id": "dspace:TransferSuspensionMessage",
2644
+ "@context": {
2645
+ "@version": 1.1,
2646
+ "@protected": true,
2647
+ code: "dspace:code",
2648
+ reason: {
2649
+ "@id": "dspace:reason",
2650
+ "@container": "@set"
2651
+ },
2652
+ providerPid: {
2653
+ "@type": "@id",
2654
+ "@id": "dspace:providerPid"
2655
+ },
2656
+ consumerPid: {
2657
+ "@type": "@id",
2658
+ "@id": "dspace:consumerPid"
2659
+ }
2660
+ }
2661
+ },
2662
+ TransferError: {
2663
+ "@id": "dspace:TransferError",
2664
+ "@context": {
2665
+ "@version": 1.1,
2666
+ "@protected": true,
2667
+ code: "dspace:code",
2668
+ consumerPid: "dspace:consumerPid",
2669
+ providerPid: "dspace:providerPid",
2670
+ reason: {
2671
+ "@id": "dspace:reason",
2672
+ "@container": "@set"
2673
+ }
2674
+ }
2675
+ },
2676
+ DataAddress: {
2677
+ "@id": "dspace:DataAddress",
2678
+ "@context": {
2679
+ "@version": 1.1,
2680
+ "@protected": true,
2681
+ endpointType: {
2682
+ "@type": "@vocab",
2683
+ "@id": "dspace:endpointType"
2684
+ },
2685
+ endpointProperties: {
2686
+ "@id": "dspace:endpointProperties",
2687
+ "@container": "@set"
2688
+ },
2689
+ endpoint: "dspace:endpoint"
2690
+ }
2691
+ },
2692
+ EndpointProperty: {
2693
+ "@id": "dspace:EndpointProperty",
2694
+ "@context": {
2695
+ "@version": 1.1,
2696
+ "@protected": true,
2697
+ name: "dspace:name",
2698
+ value: "dspace:value"
2699
+ }
2700
+ },
2701
+ TransferProcess: {
2702
+ "@id": "dspace:TransferProcess",
2703
+ "@context": {
2704
+ "@version": 1.1,
2705
+ "@protected": true,
2706
+ providerPid: {
2707
+ "@type": "@id",
2708
+ "@id": "dspace:providerPid"
2709
+ },
2710
+ consumerPid: {
2711
+ "@type": "@id",
2712
+ "@id": "dspace:consumerPid"
2713
+ },
2714
+ state: {
2715
+ "@type": "@vocab",
2716
+ "@id": "dspace:state"
2717
+ }
2718
+ }
2719
+ },
2720
+ VersionsError: {
2721
+ "@id": "dspace:VersionsError",
2722
+ "@context": {
2723
+ "@version": 1.1,
2724
+ "@protected": true,
2725
+ code: "dspace:code",
2726
+ reason: {
2727
+ "@id": "dspace:reason",
2728
+ "@container": "@set"
2729
+ }
2730
+ }
2731
+ },
2732
+ Catalog: {
2733
+ "@id": "dcat:Catalog",
2734
+ "@context": {
2735
+ "@version": 1.1,
2736
+ "@protected": true,
2737
+ service: {
2738
+ "@id": "dcat:service",
2739
+ "@container": "@set"
2740
+ },
2741
+ participantId: {
2742
+ "@type": "@id",
2743
+ "@id": "dspace:participantId"
2744
+ },
2745
+ catalog: {
2746
+ "@id": "dcat:catalog",
2747
+ "@container": "@set"
2748
+ },
2749
+ dataset: {
2750
+ "@id": "dcat:dataset",
2751
+ "@container": "@set"
2752
+ },
2753
+ distribution: {
2754
+ "@id": "dcat:distribution",
2755
+ "@container": "@set"
2756
+ }
2757
+ }
2758
+ },
2759
+ Dataset: {
2760
+ "@id": "dcat:Dataset",
2761
+ "@context": {
2762
+ "@version": 1.1,
2763
+ "@protected": true,
2764
+ "@import": "https://w3id.org/dspace/2025/1/odrl-profile.jsonld",
2765
+ "@propagate": true,
2766
+ distribution: {
2767
+ "@id": "dcat:distribution",
2768
+ "@container": "@set"
2769
+ },
2770
+ hasPolicy: {
2771
+ "@id": "odrl:hasPolicy",
2772
+ "@container": "@set"
2773
+ }
2774
+ }
2775
+ },
2776
+ DataService: {
2777
+ "@id": "dcat:DataService",
2778
+ "@context": {
2779
+ "@version": 1.1,
2780
+ "@protected": true,
2781
+ endpointDescription: "dcat:endpointDescription",
2782
+ endpointURL: "dcat:endpointURL"
2783
+ }
2784
+ },
2785
+ Distribution: {
2786
+ "@id": "dcat:Distribution",
2787
+ "@context": {
2788
+ "@version": 1.1,
2789
+ "@protected": true,
2790
+ format: {
2791
+ "@type": "@vocab",
2792
+ "@id": "dct:format"
2793
+ },
2794
+ accessService: {
2795
+ "@id": "dcat:accessService"
2796
+ }
2797
+ }
2798
+ },
2799
+ CatalogService: {
2800
+ "@id": "dspace:CatalogService",
2801
+ "@context": {
2802
+ id: "@id",
2803
+ type: "@type",
2804
+ serviceEndpoint: {
2805
+ "@id": "https://www.w3.org/ns/did#serviceEndpoint",
2806
+ "@type": "@id"
2807
+ }
2808
+ }
2809
+ },
2810
+ ACCEPTED: "dspace:ACCEPTED",
2811
+ FINALIZED: "dspace:FINALIZED",
2812
+ REQUESTED: "dspace:REQUESTED",
2813
+ STARTED: "dspace:STARTED",
2814
+ COMPLETED: "dspace:COMPLETED",
2815
+ SUSPENDED: "dspace:SUSPENDED",
2816
+ TERMINATED: "dspace:TERMINATED",
2817
+ OFFERED: "dspace:OFFERED",
2818
+ AGREED: "dspace:AGREED",
2819
+ VERIFIED: "dspace:VERIFIED"
2820
+ }
2821
+ };
2822
+
2371
2823
  var schemaOrg = {
2372
2824
  "@context": {
2373
2825
  type: "@type",
@@ -217263,6 +217715,9 @@ const LD_CONTEXTS = {
217263
217715
  "http://purl.org/dc/dcmitype/": dcmitype,
217264
217716
  "https://schema.twindev.org/dublin-core/terms.jsonld": dcTerms,
217265
217717
  "https://schema.twindev.org/dublin-core/dcmitype.jsonld": dcmitype,
217718
+ // IDS Contract Negotiation
217719
+ "https://w3id.org/dspace/2024/1/context.json": idsContractNegotiation,
217720
+ "https://w3id.org/dspace/2025/1/context.jsonld": idsContractNegotiation,
217266
217721
  // Federated Catalogue
217267
217722
  "https://schema.twindev.org/federated-catalogue/types.jsonld": federatedCatalogueTerms
217268
217723
  };
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @twin.org/standards-ld-contexts - Changelog
2
2
 
3
+ ## [0.0.2-next.8](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.7...standards-ld-contexts-v0.0.2-next.8) (2025-09-15)
4
+
5
+
6
+ ### Miscellaneous Chores
7
+
8
+ * **standards-ld-contexts:** Synchronize repo versions
9
+
10
+ ## [0.0.2-next.7](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.6...standards-ld-contexts-v0.0.2-next.7) (2025-09-15)
11
+
12
+
13
+ ### Features
14
+
15
+ * add ids contract negotiation types ([6225dde](https://github.com/twinfoundation/standards/commit/6225ddec9e845e3782e2944f30c771911855f165))
16
+
3
17
  ## [0.0.2-next.6](https://github.com/twinfoundation/standards/compare/standards-ld-contexts-v0.0.2-next.5...standards-ld-contexts-v0.0.2-next.6) (2025-09-12)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/standards-ld-contexts",
3
- "version": "0.0.2-next.6",
3
+ "version": "0.0.2-next.8",
4
4
  "description": "Local copies of standard LD contexts which can be used for offline development",
5
5
  "repository": {
6
6
  "type": "git",