-
Notifications
You must be signed in to change notification settings - Fork 952
Expand file tree
/
Copy pathreleases.html
More file actions
executable file
·3773 lines (3207 loc) · 284 KB
/
Copy pathreleases.html
File metadata and controls
executable file
·3773 lines (3207 loc) · 284 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Release listing - schema.org</title>
<!-- #### Static Doc Insert Head goes here -->
<style type="text/css">
table.grid {
display: block;
overflow-x: auto;
font-size: .9rem;
border-width: 1px;
border-color: #666666;
border-c
32F9
ollapse: collapse;
table-layout: fixed;
width: 100%;
}
table.grid th {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #f0f0f0;
}
table.grid td {
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #ffffff;
vertical-align: top;
}
table {
h2, h3, p {
margin: 0;
}
h2 {
font-size: 1.2rem;
}
h3 {
font-size: 1rem;
}
}
td.release {
width: 20%;
font-size: 12px;
font-weight: bold;
}
ul {
flex-wrap: wrap;
}
.scroll-div{
max-width:100%;
min-width:300px;
overflow-x: scroll;
height: auto;
border: 0;
}
</style>
</head>
<body>
<!-- #### Static Doc Insert PageHead goes here -->
<div id="mainContent">
<h1>Releases</h1>
<p>This page lists schema.org releases, most recent first. New developments are <a href="https://github.com/schemaorg/schemaorg">discussed on Github</a>; editorial works-in-progress
are publicly staged on the <a href="https://staging.schema.org/">staging.schema.org</a> drafting site for review and collaboration. See <a href="howwework.html">how we work</a> for more background.</p>
<p>
A summary view of the current published release is available from: <a href="https://schema.org/version/latest">https://schema.org/version/latest</a>
</p>
<div class="scroll-div">
<span id="v.next"></span>
<table class="grid">
<tr>
<th style="width: 20%;">Release</th>
<th>Overview</th>
<th>Description</th>
</tr>
<!-- note: please keep this file well-formed, i.e. close li tags etc. -->
<tr>
<td class="release">30.0<br/>2026-03-19</td>
<td>
<span id="v30.0"></span>
<p>
Version 30.0 - Add equivalence annotations, Add EU DPP (Digital Product Passport) examples, Misc. schema, doc, and infra updates</p>
</td>
<td>
<ul>
<li id="g4776">
<a href="https://github.com/schemaorg/schemaorg/pull/4689">PR #4689</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4639">PR #4639</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4620">PR #4620</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4642">PR #4642</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4648">PR #4648</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4622">PR #4622</a>
: Add GS1, Dublin Core, and Open Graph equivalence annotations and exports.
</li>
<li id="g4662">
<a href="https://github.com/schemaorg/schemaorg/pull/4662">PR #4662</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4663">PR #4663</a>
: Add EU Digital Product Passport examples, aligned with UN/CEFACT codes.
</li>
<li id="g4700">
<a href="https://github.com/schemaorg/schemaorg/pull/4700">PR #4700</a>: Add a new <a href="/Credential">Credential</a> class for use on <a href="/hasCredential">hasCredential</a> to allow the specification of credentials beyond just educational credentials.
</li>
<li id="g4589">
<a href="https://github.com/schemaorg/schemaorg/pull/4589">PR #4589</a>: Add new <a href="/Error">Error</a> class with new property <a href="/errorCode">errorCode</a>.
</li>
<li id="g4777">
<a href="https://github.com/schemaorg/schemaorg/pull/4777">PR #4777</a>: Change <a href="/Quantity">Quantity</a> to inherit from <a href="/DataType">DataType</a> instead of <a href="/Intangible">Intangible</a> .
</li>
<li id="g4619">
<a href="https://github.com/schemaorg/schemaorg/pull/4619">PR #4619</a>: Allow <a href="/CompoundPriceSpecification">CompoundPriceSpecification</a> to have the more generic <a href="/PriceSpecification">PriceSpecification</a> as child instead of <a href="/UnitPriceSpecification">UnitPriceSpecification</a> .
</li>
<li id="g4669">
<a href="https://github.com/schemaorg/schemaorg/pull/4669">PR #4669</a>: Add existing property <a href="/floorLevel">floorLevel</a> for use on <a href="/LocalBusiness">LocalBusiness</a> and <a href="/Residence">Residence</a>.
</li>
<li id="g4675">
<a href="https://github.com/schemaorg/schemaorg/pull/4675">PR #4675</a>: Add new property <a href="/jobDuration">jobDuration</a> for use on <a href="/LocalBusiness">JobPosting</a>.
</li>
<li id="g4679">
<a href="https://github.com/schemaorg/schemaorg/pull/4679">PR #4679</a>: Extend the range of <a href="/previousStartDate">previousStartDate</a> to include <a href="/DateTime">DateTime</a>.
</li>
<li id="g4667">
<a href="https://github.com/schemaorg/schemaorg/pull/4667">PR #4667</a>: Extend the range of <a href="/suitableForDiet">suitableForDiet</a> to include <a href="/Diet">Diet</a>.
</li>
<li id="g4654">
<a href="https://github.com/schemaorg/schemaorg/pull/4654">PR #4654</a>: Add Italian and German non profit enumeration values types by subclassing from the <a href="/NonprofitType">NonprofitType</a> enumeration.
</li>
<li id="g4776">
<a href="https://github.com/schemaorg/schemaorg/pull/4776">PR #4776</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4767">PR #4767</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4688">PR #4688</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4656">PR #4656</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4646">PR #4646</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4640">PR #4640</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4631">PR #4631</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4629">PR #4629</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4628">PR #4628</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4627">PR #4627</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4698">PR #4698</a>
: Build infra, integration test, and general site documentation and UI improvements.
</li>
<li id="g4691">
<a href="https://github.com/schemaorg/schemaorg/pull/4691">PR #4691</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4686">PR #4686</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4684">PR #4684</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4678">PR #4678</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4671">PR #4671</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4668">PR #4668</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4644">PR #4644</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4441">PR #4441</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4775">PR #4775</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4645">PR #4645</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4617">PR #4617</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4624">PR #4624</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4623">PR #4623</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4649">PR #4649</a>
: Misc bug fixes and clarifications related to schema, documentation, and examples.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">29.4<br/>2025-12-08</td>
<td>
<span id="v29.4"></span>
<p>
Version 29.4 - Many schema and infra updates</p>
</td>
<td>
<ul>
<li id="g4495">
<a href="https://github.com/schemaorg/schemaorg/issues/4495">Issue #4495</a>: Add new type <a href="/ConferenceEvent">ConferenceEvent</a> as a subtype of <a href="/Event">Event</a>. Add new properties <a href="/hasParticipationOffer">hasParticipationOffer</a> and <a href="/hasSponsorshipOffer">hasSponsorshipOffer</a> with values of type <a href="/Offer">Offer</a> to <a href="/ConferenceEvent">ConferenceEvent</a>.
</li>
<li id="g4505">
<a href="https://github.com/schemaorg/schemaorg/issues/4505">Issue #4505</a>: Add cross-schema examples with vocabulary from <a href="https://www.gs1.org/gs1-web-vocabulary ">GS1 web vocabulary</a>and <a href="https://vocabulary.uncefact.org/">UN/CEFACT</a>.
</li>
<li id="g4533">
<a href="https://github.com/schemaorg/schemaorg/issues/4533">Issue #4533</a>: Allow values of type <a href="/StructuredValue">StructuredValue</a> for property <a href="/reviewAspect">reviewAspect</a>.
</li>
<li id="g4532">
<a href="https://github.com/schemaorg/schemaorg/issues/4532">Issue #4532</a>: Add <a href="/category">category</a> to <a href="/Guide">Guide</a>.
</li>
<li id="g4468">
<a href="https://github.com/schemaorg/schemaorg/issues/4468">Issue #4468</a>: Add new type <a href="/PerformingArtsEvent">PerformingArtsEvent</a> as a subtype of <a href="/Event">Event</a>.
</li>
<li id="g4513">
<a href="https://github.com/schemaorg/schemaorg/issues/4513">Issue #4513</a>: Add new <a href="/displayLocation">displayLocation</a> property with values of range <a href="/Place">Place</a>. Add <a href="/displayLocation">displayLocation</a> to <a href="/CreativeWork">CreativeWork</a> and <a href="/Product">Product</a>.
</li>
<li id="g4567">
<a href="https://github.com/schemaorg/schemaorg/issues/4567">Issue #4567</a>: Allow values of type <a href="/AdministrativeArea">AdministrativeArea</a> for property <a href="/addressRegion">addressRegion</a>.
</li>
<li id="g4571">
<a href="https://github.com/schemaorg/schemaorg/pull/4571">PR #4571</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4580">PR #4580</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4571">PR #4608</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4608">PR #4613</a>:
: Add OWL equivalences for UN/CEFACT, OWL, OMG, and GS1 ontologies.
</li>
<li id="g4576">
<a href="https://github.com/schemaorg/schemaorg/pull/4576">PR #4576</a>: Make <a href="/OrderItem">OrderItem</a> a subtype of <a href="/StructuredValue">StructuredValue</a> instead of <a href="/Intangible">Intangible</a> to align with <a href="/TypeAndQuantityNode">TypeAndQuantityNode</a>.
</li>
<li id="g4540">
<a href="https://github.com/schemaorg/schemaorg/issues/4540">Issue #4540</a>: Add new property <a href="/lifeEvent">lifeEvent</a> with values of type <a href="Event">Event</a> to <a href="/Person">Person</a>.
</li>
<li id="g4582">
<a href="https://github.com/schemaorg/schemaorg/pull/4582">PR #4582</a>: Add <a href="/Place">Place</a> a supertype for <a href="/DefinedRegion">DefinedRegion</a>.
</li>
<li id="g4527">
<a href="https://github.com/schemaorg/schemaorg/issues/4527">Issue #4527</a>: Add new type <a href="/InstantaneousEvent">InstantaneousEvent</a> as subtype of type <a href="/StructuredValue">StructuredValue</a> to represent events without a duration. Add new properties <a href="/source">source</a> with values of type <a href="/Thing">Thing</a> , <a href="/timestamp">timestamp</a> with values of type <a href="/DateTime">DateTime</a>, and <a href="/data">data</a> with values of type <a href="/Thing">Thing</a> to <a href="/InstantaneousEvent">InstantaneousEvent</a>.
</li>
<li id="g4507">
<a href="https://github.com/schemaorg/schemaorg/issues/4507">Issue #4507</a>: Add new basic authentication concepts <a href="/AuthenticateAction">AuthenticateAction</a>, <a href="/LoginAction">LoginAction</a>, and <a href="/ResetPasswordAction">ResetPasswordAction</a> as subtypes of <a href="/ControlAction">ControlAction</a>.
</li>
<li id="g3697">
<a href="https://github.com/schemaorg/schemaorg/issues/3697">Issue #3697</a>: Add new type <a href="/SequentialArt">SequentialArt</a> as a subtype of <a href="/VisualArtwork">VisualArtwork</a> and <a href="/Book">Book</a>, replacing <a href="/GraphicNovel">GraphicNovel</a> which is now marked as deprecated.
</li>
<li id="g4470">
<a href="https://github.com/schemaorg/schemaorg/issues/4470">Issue #4470</a>: Add new type <a href="/OnlineMarketplace">OnlineMarketplace</a> as subtype of type <a href="/OnlineStore">OnlineStore</a>. Add new property <a href="/hasStore">hasStore</a> (with inverse property <a href="/isStoreOn">isStoreOn</a>) with values of type <a href="/OnlineStore">OnlineStore</a> to <a href="/OnlineMarketplace">OnlineMarketplace</a>.
</li>
<li id="g3691">
<a href="https://github.com/schemaorg/schemaorg/pull/3691">PR #3691</a>: Add missing values to enumeration <a href="/IPTCDigitalSourceEnumeration">IPTCDigitalSourceEnumeration</a>.
</li>
<li id="g4592">
<a href="https://github.com/schemaorg/schemaorg/pull/4592">PR #4592</a>: Allow values of type <a href="/DefinedTerm">DefinedTerm</a> for property <a href="/genre">genre</a>.
</li>
<li id="g4575">
<a href="https://github.com/schemaorg/schemaorg/issues/4575">Issue #4575</a>: Add new types <a href="/OperatingSystem">OperatingSystem</a> and <a href="/RuntimePlatform">RuntimePlatform</a> as subtypes of <a href="/SoftwareApplication">SoftwareApplication</a>. Allow values of type <a href="/OperatingSystem">OperatingSystem</a> for properties <a href="/operatingSystem">operatingSystem</a> and <a href="/softwareRequirements">softwareRequirements</a>. Allow values of type <a href="/RuntimePlatform">RuntimePlatform</a> for properties <a href="/runtimePlatform">runtimePlatform</a> and <a href="/softwareRequirements">softwareRequirements</a>. Add property <a href="/runtimePlatform">runtimePlatform</a> to <a href="/SoftwareApplication">SoftwareApplication</a>.
</li>
<li id="g4603">
<a href="https://github.com/schemaorg/schemaorg/issues/4603">Issue #4603</a>: Generalize property <a href="/owns">owns</a> by allowing values of type <a href="/Thing">Thing</a> instead of only <a href="/OwnershipInfo">OwnershipInfo</a> and <a href="/Product">Product</a>. Add inverse property <a href="/owner">owner</a> for <a href="/owns">owns</a>.
</li>
<li id="g4541">
<a href="https://github.com/schemaorg/schemaorg/issue/4541">Issue #4541</a>: Allow values of type <a href="/Date">Date</a> for property <a href="/observationDate">observationDate</a>.
</li>
<li id="g4588">
<a href="https://github.com/schemaorg/schemaorg/issue/4588">Issue #4588</a>: Add property <a href="/about">about</a> to <a href="/DefinedTerm">DefinedTerm</a> and <a href="/DefinedTermSet">DefinedTermSet</a>.
</li>
<li id="g4498">
<a href="https://github.com/schemaorg/schemaorg/pull/4498">PR #4498</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4524">PR #4524</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4504">PR #4504</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4537">PR #4537</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4538">PR #4538</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4534">PR #4534</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4537">PR #4542</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4539">PR #4539</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4551">PR #4551</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4561">PR #4561</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4565">PR #4565</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4544">PR #4544</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4594">PR #4594</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4292">PR #4292</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3683">PR #3683</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3684">PR #3684</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3685">PR #3685</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3675">PR #3675</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3631">PR #3631</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4600">PR #4600</a>,<
D8C7
/div>
<a href="https://github.com/schemaorg/schemaorg/pull/4601">PR #4601</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4600">PR #4596</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4610">PR #4610</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4614">PR #4614</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4614">PR #4609</a>
: Many build infra and integration test improvements.
</li>
<li id="g4552">
<a href="https://github.com/schemaorg/schemaorg/pull/4492">PR #4492</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4552">PR #4552</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4553">PR #4553</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4553">PR #4559</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4553">PR #4562</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4427">PR #4427</a>
: Documentation and example updates.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">29.3<br/>2025-09-04</td>
<td>
<span id="v29.3"></span>
<p>
Version 29.3 - Expanded vocabulary for recipe ingredient lists and marketplaces. Some other small updates</p>
</td>
<td>
<ul>
<li id="g4454">
<a href="https://github.com/schemaorg/schemaorg/issues/4454">Issue #4454</a>: Expand range of <a href="/recipeIngredient">recipeIngredient</a>.
</li>
<li id="g4470">
<a href="https://github.com/schemaorg/schemaorg/issues/4470">Issue #4470</a>: Add <a href="/OnlineMarketplace">OnlineMarketplace</a> as a subtype of <a href="/OnlineStore">OnlineStore</a>. Add <a href="/hasStore">hasStore</a> property for use on <a href="/OnlineMarketplace">OnlineMarketplace</a>. Add inverse property <a href="/isStoreOn">isStoreOn</a> for use on <a href="/OnlineStore">OnlineStore</a>.
</li>
<li id="g4480">
<a href="https://github.com/schemaorg/schemaorg/pull/4480">PR #4480</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4473">PR #4473</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4455">PR #4455</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4449">PR #4449</a>: Small bug fixes.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">29.2<br/>2025-05-13</td>
<td>
<span id="v29.2"></span>
<p>
Version 29.2 - Patch release to fix bug introduced in 29.0. Added a few new properties. Some documentation updates.</p>
</td>
<td>
<ul>
<li id="g4438">
<a href="https://github.com/schemaorg/schemaorg/issues/4438">Issue #4438</a>: Fix additional bug introduced in 29.0 (<a href="/duration">duration</a> mistakenly marked as 'Pending') .
</li>
<li id="g4366">
<a href="https://github.com/schemaorg/schemaorg/issues/4366">Issue #4366</a>: Add new properties <a href="/companyRegistration">companyRegistration</a>, <a href="/legalAddress">legalAddress</a>, and <a href="/legalRepresentative">legalRepresentative</a> for use on <a href="/Organization">Organization</a> to represent legal information.
</li>
<li id="g4371">
<a href="https://github.com/schemaorg/schemaorg/pull/4371">PR #4371</a>: Updated description for <a href="/gender">gender</a> .
</li>
<li id="g2935">
<a href="https://github.com/schemaorg/schemaorg/pull/2935">PR #2935</a>: Add new <a href="/pronouns">pronouns</a> property for use on <a href="/Person">Person</a> .
</li>
<li id="g4440">
<a href="https://github.com/schemaorg/schemaorg/pull/4394">PR #4394</a>: README.md updates.
</li>
</ul>
</td>
</tr>
<td class="release">29.1<br/>2025-04-25</td>
<td>
<span id="v29.1"></span>
<p>
Version 29.1 - Patch release to fix issues in 29.0. Added a few new properties and classes. Some README updates.</p>
</td>
<td>
<ul>
<li id="g4425">
<a href="https://github.com/schemaorg/schemaorg/issues/4425">Issue #4425</a>: Fix bugs part of 29.0 (fix bad https: prefix, correct properties that were mistakenly labeled as pending).
</li>
<li id="g4318">
<a href="https://github.com/schemaorg/schemaorg/issues/4318">Issue #4318</a>: Add <a href="/referee">referee</a> for use on <a href="/SportsEvent">SportsEvent</a> .
</li>
<li id="g4397">
<a href="https://github.com/schemaorg/schemaorg/issues/4397">Issue #4397</a>: Add <a href="/extendedAddress">extendedAddress</a> for use on <a href="/PostalAddress">PostalAddress</a> .
</li>
<li id="g4330">
<a href="https://github.com/schemaorg/schemaorg/issues/4330">Issue #4330</a>: Add <a href="/Cooperative">Cooperative</a> as subtype for <a href="/Organization">Organization</a> .
</li>
<li id="g4388">
<a href="https://github.com/schemaorg/schemaorg/issues/4388">Issue #4388</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4427">PR #4427</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4406">PR #4406</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4434">PR #4434</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4394">PR #4394</a>:
Various README.md updates.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">29.0<br/>2025-03-24</td>
<td>
<span id="v29"></span>
<p>
Version 29.0 - New and updated vocabulary in the area of financial incentives, legislation, and product shipping. Various build and documentation fixes.</p>
</td>
<td>
<ul>
<li id="g3572">
<a href="https://github.com/schemaorg/schemaorg/issues/3572">Issue #3572</a>: Add vocabulary to represent financial incentives, for example in the area of sustainability: Add new type <a href="/FinancialIncentive">FinancialIncentive</a>. Add new enumeration types <a href="/IncentiveType">IncentiveType</a>, <a href="/IncentiveStatus">IncentiveStatus</a>, <a href="/PurchaseType">PurchaseType</a>, and <a href="/IncentiveQualifiedExpenseType">IncentiveQualifiedExpenseType</a>. Add new properties for use on <a href="/FinancialIncentive">FinancialIncentive</a>: <a href="/incentiveType">incentiveType</a>, <a href="/incentiveStatus">incentiveStatus</a>, <a href="/incentiveAmount">incentiveAmount</a>, <a href="/eligibleWithSupplier">eligibleWithSupplier</a>, <a href="/incentivizedItem">incentivizedItem</a>, <a href="/qualifiedExpense">qualifiedExpense</a>, <a href="/incomeLimit">incomeLimit</a>, <a href="/purchasePriceLimit">purchasePriceLimit</a>, <a href="/purchaseType">purchaseType</a>. Add existing properties <a href="/validFrom">validFrom</a>, <a href="/validThrough">validThrough</a>, <a href="/areaServed">areaServed</a>, <a href="/publisher">publisher</a>, and <a href="/provider">provider</a> for use on <a href="/FinancialIncentive">FinancialIncentive</a>:
</li>
<li id="g2698">
<a href="https://github.com/schemaorg/schemaorg/issues/2698">Issue #2698</a>: Add new properties for use on <a href="/Legislation">Legislation</a> to include changes to the European Legislation Identifier (ELI) model: <a href="/legislationCountersignedBy">legislationCountersignedBy</a>, <a href="/legislationDateOfApplicability">legislationDateOfApplicability</a>, <a href="/legislationAmends">legislationAmends</a>, <a href="/legislationRepeals">legislationRepeals</a>, <a href="/legislationCommences">legislationCommences</a>, <a href="/legislationCorrects">legislationCorrects</a>, and <a href="/legislationEnsuresImplementationOf">legislationEnsuresImplementationOf</a>.
</li>
<li id="g3617">
<a href="https://github.com/schemaorg/schemaorg/issues/3617">Issue #3617</a>: Enhance shipping vocabulary: Deprecate <a href="/DeliveryTimeSettings">DeliveryTimeSettings</a> and supersede by new <a href="/ShippingConditions">ShippingConditions</a>. Add existing properties for use on <a href="/ShippingConditions">ShippingConditions</a>:
<a href="/shippingOrigin">shippingOrigin</a>, <a href="/shippingDestination">shippingDestination</a>, <a href="/transitTime">transitTime</a>, <a href="/shippingRate">shippingRate</a>, <a href="/doesNotShip">doesNotShip</a>, <a href="/height">height</a>, <a href="/width">width</a>, <a href="/depth">depth</a>, and <a href="/weight">weight</a>. Add new properties for use on <a href="/ShippingConditions">ShippingConditions</a>: <a href="/orderValue">orderValue</a>, <a href="/numItems"> numItems</a>, <a href="/seasonalOverride">seasonalOverride</a>. Add <a href="/shippingConditions">shippingConditions</a> with range <a href="/ShippingConditions">ShippingConditions</a>.
Add <a href="/fulfillmentType">fulfillmentType</a> with a range of new enumeration <a href="/FulfillmentTypeEnumeration">FulfillmentTypeEnumeration</a>.
Add <a href="/ShippingService">ShippingService</a> with properties <a href="/fulfillmentType">fulfillmentType</a>, <a href="/handlingTime">handlingTime</a> , <a href="/validForMemberTier">validForMemberTier</a>, and <a href="/shippingConditions">shippingConditions</a>.
Add <a href="/hasShippingService">hasShippingService</a> with range <a href="/ShippingService">ShippingService</a> for use on <a href="/Organization">Organization</a> and <a href="/OfferShippingDetails">OfferShippingDetails</a>.
Add <a href="/ServicePeriod">ServicePeriod</a> with existing properties <a href="/duration">duration</a>, <a href="/cutoffTime">cutoffTime</a>, and <a href="/businessDays">businessDays</a> for use as additional range for <a href="/handlingTime">handlingTime</a> and <a href="/transitTime">transitTime</a>.
Add <a href="/orderPercentage">orderPercentage</a> and <a href="/weightPercentage">weightPercentage</a> for use on <a href="/ShippingRateSettings">ShippingRateSettings</a>.
Add <a href="/Mass">Mass</a> to the range of <a href="/weight">weight</a>.
Deprecate (moved to the attic): <a href="/shippingSettingsLink">shippingSettingsLink</a>, <a href="/shippingLabel">shippingLabel</a>, and <a href="/transitTimeLabel">transitTimeLabel</a>.
</li>
<li id="g4321">
<a href="https://github.com/schemaorg/schemaorg/issues/4321">Issue #4321</a>: Add new property <a href="/aggregateElement">aggregateElement</a> for use on <a href="/ItemList">ItemList</a> to allow capturing of aggregate information of list items.
</li>
<li id="g4327">
<a href="https://github.com/schemaorg/schemaorg/issues/4327">Issue #4327</a>: Correct definition for <a href="/netWorth">netWorth</a> .
</li>
<li id="g622">
<a href="https://github.com/schemaorg/schemaorg/issues/622">Issue #622</a>: Add <a href="/wordCount">wordCount</a> for use on <a href="/CreativeWork">CreativeWork</a> .
</li>
<li id="g4362">
<a href="https://github.com/schemaorg/schemaorg/pull/4362">PR #4362</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4357">PR #4357</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4353">PR #4353</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4350">PR #4350</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4345">PR #4345</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4344">PR #4344</a>:
Build and documentation fixes and cleanups.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">28.1<br/>2024-11-22</td>
<td>
<span id="v28.1"></span>
<p>
Version 28.1 - Various small additions, fixes, build improvements and site updates.</p>
</td>
<td>
<ul>
<li id="g3656">
<a href="https://github.com/schemaorg/schemaorg/issues/3656">Issue #3656</a>: Add <a href="/actionProcess">actionProcess</a> property.
</li>
<li id="g3691">
<a href="https://github.com/schemaorg/schemaorg/pull/3691">PR #3691</a>: Add new IPTC values to <a href="/IPTCDigitalSourceEnumeration">IPTCDigitalSourceEnumeration</a>.
</li>
<li id="g3652">
<a href="https://github.com/schemaorg/schemaorg/issues/3583">Issue #3583</a>: Add <a href="/StrikethroughPrice">StrikethroughPrice</a> to <a href="/PriceTypeEnumeration">PriceTypeEnumeration</a>.
</li>
<li id="g3381">
<a href="https://github.com/schemaorg/schemaorg/issues/3381">Issue #3381</a>: Add <a href="/skills">skills</a> for use on <a href="/Person">Person</a> and <a href="/Organization">Organization</a>.
</li>
<li id="g1367">
<a href="https://github.com/schemaorg/schemaorg/issues/1367">Issue #1367</a>: Add <a href="/weight">weight</a> for use on <a href="/VisualArtWork">VisualArtWork</a>.
</li>
<li id="g2506">
<a href="https://github.com/schemaorg/schemaorg/issues/2506">Issue #2506</a>: Promote shipping-related types under <a href="/shippingDetails">shippingDetails</a> to GA based on significant adoption.
</li>
<li id="g3630">
<a href="https://github.com/schemaorg/schemaorg/pull/3630">PR #3630</a>: Add <a href="/Text">Text</a> as type for <a href="/paymentMethod">paymentMethod</a> for backwards compatibility.
</li>
<li id="g4292">
<a href="https://github.com/schemaorg/schemaorg/pull/4292">PR #4292</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3698">PR #3698</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3695">PR #3695</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3685">PR #3685</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3684">PR #3684</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3683">PR #3683</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3681">PR #3681</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3678">PR #3678</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3677">PR #3677</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3676">PR #3676</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3675">PR #3675</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3674">PR #3674</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3672">PR #3672</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3668">PR #3668</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3667">PR #3667</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3666">PR #3666</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3662">PR #3662</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3660">PR #3660</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3659">PR #3659</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3655">PR #3655</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3654">PR #3654</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3646">PR #3646</a>,
D8C7
<a href="https://github.com/schemaorg/schemaorg/pull/3645">PR #3645</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3644">PR #3644</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3643">PR #3643</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3642">PR #3642</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3641">PR #3641</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3640">PR #3640</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3639">PR #3639</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3638">PR #3638</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3636">PR #3636</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3635">PR #3635</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3631">PR #3631</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3626">PR #3626</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3625">PR #3625</a>:
Build fixes and cleanups.
</li>
<li id="g4293">
<a href="https://github.com/schemaorg/schemaorg/pull/4293">PR #4293</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/4304">PR #4304</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3669">PR #3669</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3650">PR #3650</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3633">PR #3633</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3632">PR #3632</a>:
Site, documentation, and example updates.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">28.0<br/>2024-09-17</td>
<td>
<span id="v28.0"></span>
<p>
Version 28.0 - Added support for member programs. Various build improvements and site updates.</p>
</td>
<td>
<ul>
<li id="g3563"><a href="https://github.com/schemaorg/schemaorg/issues/3563">Issue #3563</a>:
Added support for loyalty programs through new classes <a href="/MemberProgram">MemberProgram</a>, <a href="/MemberProgramTier">MemberProgramTier</a>, and enumeration <a href="/TierBenefitEnumeration">TierBenefitEnumeration</a>. Also added properties <a href="/isTierOf">isTierOf</a>, <a href="/hasTiers">hasTiers</a>, <a href="/hasMemberProgram">hasMemberProgram</a>, <a href="/program">program</a>, <a href="/hasTierBenefit">hasTierBenefit</a>, and <a href="/validForMemberTier">validForMemberTier</a>.
</li>
<li id="g3583"><a href="https://github.com/schemaorg/schemaorg/issues/3583">Issue #3583</a>:
Add new enumeration value <a href="/RegularPrice">RegularPrice</a> for enumeration <a href="/PriceTypeEnumeration">PriceTypeEnumeration</a>.
</li>
<li id="g3581">
<a href="https://github.com/schemaorg/schemaorg/issues/3581">Issue #3581</a>,
<a href="https://github.com/schemaorg/schemaorg/issues/3559">Issue #3559</a>,
<a href="https://github.com/schemaorg/schemaorg/issues/3183">Issue #3183</a>,
<a href="https://github.com/schemaorg/schemaorg/issues/2926">Issue #2926</a>:
Add new enumeration values <a href="/Reserved">Reserved</a> and <a href="/MadeToOrder">MadeToOrder</a> for enumeration <a href="/ItemAvailability">ItemAvailability</a>.
</li>
<li id="g3488"><a href="https://github.com/schemaorg/schemaorg/issues/3488">Issue #3488</a>:
Fix documentation for <a href="/duration">duration</a>, which must be specified in ISO 8601 duration format.
</li>
<li id="g3537"><a href="https://github.com/schemaorg/schemaorg/issues/3537">Issue #3537</a>:
Cleanup <a href="/PaymentMethod">PaymentMethod</a> class.
</li>
<li id="g3486"><a href="https://github.com/schemaorg/schemaorg/issues/3486">Issue #3486</a>:
Removed non-existing link to count under <a href="/statType">statType</a>.
</li>
<li id="g3603"><a href="https://github.com/schemaorg/schemaorg/issues/3603">Issue #3603</a>:
Add <a href="/Organization">Organization</a> to range of <a href="/founder">founder</a> .
</li>
<li id="g3589">
<a href="https://github.com/schemaorg/schemaorg/pull/3589">PR #3589</a>:
<a href="https://github.com/schemaorg/schemaorg/pull/3598">PR #3598</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3599">PR #3599</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3600">PR #3600</a>:
Added/improved Schema.org website annotations.
</li>
<li id="g3562">
<a href="https://github.com/schemaorg/schemaorg/pull/3562">PR #3562</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3582">PR #3582</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3587">PR #3587</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3592">PR #3592</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3593">PR #3593</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3594">PR #3594</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3595">PR #3595</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3597">PR #3597</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3601">PR #3601</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3609">PR #3609</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3610">PR #3610</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3612">PR #3612</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3615">PR #3615</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3616">PR #3616</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3618">PR #3618</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3619">PR #3619</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3623">PR #3623</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3624">PR #3624</a>:
Build fixes and cleanups.
</li>
<li id="g3586">
<a href="https://github.com/schemaorg/schemaorg/pull/3586">PR #3586</a>,
<a href="https://github.com/schemaorg/schemaorg/pull/3590">PR #3590</a>:
Small text/color updates.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">27.02<br/>2024-07-01</td>
<td>
<span id="v27.02"></span>
<p>
Version 27.02 - Migrate staging from webschemas.org to staging.schema.org.</p>
</td>
<td>
<ul>
<li id="g3556"><a href="https://github.com/schemaorg/schemaorg/pull/3556">PR #3556</a>: Updates references for webschemas.org to staging.schema.org.</li>
<li id="g3557"><a href="https://github.com/schemaorg/schemaorg/pull/3557">PR #3557</a>: Fix formatting for markdown documentation files.</li>
</ul>
</td>
</tr>
<tr>
<td class="release">27.01<br/>2024-06-24</td>
<td>
<span id="v27.01"></span>
<p>
Version 27.01 - Site redesign.</p>
</td>
<td>
<ul>
<li id="g3544"><a href="https://github.com/schemaorg/schemaorg/issues/3544">Issue #3544</a>:
Update to Schema.org site design.
</li>
<li id="g3542"><a href="https://github.com/schemaorg/schemaorg/issues/3542">Issue #3542</a>:
Extend 'MerchantReturnPolicySeasonalOverride' to enable overrides of more properties.
</li>
<li id="g3338"><a href="https://github.com/schemaorg/schemaorg/pull/3338">PR #3338</a>:
Update to <a href="/DonateAction">DonateAction</a> to extend <a href="/TradeAction">TradeAction</a>.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">27.0<br/>2024-05-20</td>
<td>
<span id="v27.0"></span>
<p>
Version 27.0 - Adding support for GS1 Digital Link and a few smaller updates.</p>
</td>
<td>
<ul>
<li id="g3475"><a href="https://github.com/schemaorg/schemaorg/issues/3475">Issue #3475</a>:
Added new property <a href="/hasGS1DigitalLink">hasGS1DigitalLink</a> for use on <a href="/product">Product</a>, <a href="/Offer">Offer</a>, <a href="/Organization">Organization</a> and <a href="/Place">Place</a> to allow the specification of <a href="https://www.gs1.org/standards/gs1-digital-link">GS1 digital links</a>.
</li>
<li id="g3476"><a href="https://github.com/schemaorg/schemaorg/issues/3476">Issue #3476</a>:
Added new property <a href="/certificationRating">certificationRating</a> for use on <a href="/Certification">Certification</a> to allow the specification of a certification rating with a scale.
</li>
<li id="p3502"><a href="https://github.com/schemaorg/schemaorg/issues/3502">Issue #3502</a>:
Add existing property <a href="/acceptedPaymentMethod">acceptedPaymentMethod</a> for use on <a href="/Organization">Organization</a> to allow the specification of the payment method(s) a business accepts.
</li>
<li id="p3474"><a href="https://github.com/schemaorg/schemaorg/issues/3474">Issue #3474</a>:
Add build-time spell checks using <a href="https://github.com/codespell-project/codespell">codespell</a></a>.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">26.0<br/>2024-02-12</td>
<td>
<span id="v26.0"></span>
<p>
Version 26.0 - Restoring Physician subtype of MedicalBusiness.</p>
</td>
<td>
<ul>
<li id="g3467"><a href="https://github.com/schemaorg/schemaorg/issues/3467">Issue #3467</a>:
Clarifying that <a href="/PhysiciansOffice">PhysiciansOffice</a> is a subtype of <a href="/MedicalBusiness">MedicalBusiness</a>.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">25.0<br/>2024-01-22</td>
<td>
<span id="v25.0"></span>
<p>
Version 25.0 - Add support for Certifications and a few smaller updates.</p>
</td>
<td>
<ul>
<li id="g3230"><a href="https://github.com/schemaorg/schemaorg/issues/3230">Issue #3230</a>: Added <a href="/Certification">Certification</a> to allow the specification of certifications for places, organizations, products, and persons. Compatible with <a href="https://gs1.org/voc/CertificationDetails">gs1:CertificationDetails</a>.</li>
<li id="g3423"><a href="https://github.com/schemaorg/schemaorg/issues/3423">Issue #3423</a>: Added <a href="/colorSwatch">colorSwatch</a>.</li>
<li id="g2880"><a href="https://github.com/schemaorg/schemaorg/issues/2880">Issue #2880</a>: Added <a href="/KeepProduct">KeepProduct</a> for <a href="/ReturnMethodEnumeration">ReturnMethodEnumeration</a>.</li>
</ul>
</td>
</tr>
<tr>
<td class="release">24.0<br/>2024-01-09</td>
<td>
<span id="v24.0"></span>
<p>
Version 24.0 - Adding vocabulary for describing types of digital sources (in collaboration with IPTC), and clarifying subtypes of Physician.</p>
</td>
<td>
<ul>
<li id="g3420"><a href="https://github.com/schemaorg/schemaorg/issues/3420">Issue #3420</a>:
Added <a href="/IndividualPhysician">IndividualPhysician</a>, <a href="/PhysiciansOffice">PhysiciansOffice</a> as subtypes of
<a href="/Physician">Physician</a> to clarify the longstanding ambiguity between these two different interpretations of the
<a href="/Physician">Physician</a> type. Amended <a href="/occupationalCategory">occupationalCategory</a> to be applicable
here and added <a href="/usNPI">usNPI</a> for use with NPI identifiers in the US.
</li>
<li id="g3392"><a href="https://github.com/schemaorg/schemaorg/issues/3392">Issue #3392</a>:
To help address situations around the responsible use of generative AI, we add a
"digital source type" vocabulary based on <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">IPTC's definitions</a>.
This consists of a property <a href="/digitalSourceType">digitalSourceType</a>,
an enumeration type <a href="/IPTCDigitalSourceEnumeration">IPTCDigitalSourceEnumeration</a>,
and a set of 14 coded values such as <a href="/TrainedAlgorithmicMediaDigitalSource">TrainedAlgorithmicMediaDigitalSource</a>
mapping directly to the <a href="https://cv.iptc.org/newscodes/digitalsourcetype/">IPTC list</a>.
</li>
</ul>
</td>
</tr>
<tr>
<td class="release">23.0<br/>2023-10-17</td>
<td>
<span id="v23.0"></span>
<p>
Version 23.0 - A collection of small fixes based on publisher feedback.</p>
</td>
<td>
<ul>
<li id="g2858"><a href="https://github.com/schemaorg/schemaorg/issues/2858">Issue #2858</a>: Added <a href="/agentInteractionStatistic">agentInteractionStatistic</a> to provide a way of counting interactions where the item of interest is in an "agent" rather than "object" role on the relevant Action.</li>
<li id="g3376"><a href="https://github.com/schemaorg/schemaorg/issues/3376">Issue #3376</a>: Provided a clea
8020
rer way to indicate non-Comment items that Comments are attached to, by documenting the use of <a href="/parentItem">parentItem</a> on <a href="/CreativeWork">CreativeWork</a> in general. Also made it more explicit that this is especially applicable to those creative works beneath <a href="/Comment">Comment</a> in the type hierarchy which are mentioned in the definition, i.e. <a href="/Question">Question</a> and <a href="/Answer">Answer</a>.</li>
<li id="g3389"><a href="https://github.com/schemaorg/schemaorg/issues/3389">Issue #3389</a>: Added <a href="/Comment">Comment</a> to the domain of <a href="/sharedContent">sharedContent</a> to better support link shares on replies/comments even though a lot of sites now support this.</li>
<li id="g3390"><a href="https://github.com/schemaorg/schemaorg/issues/3390">Issue #3390</a>: Expanded range of <a href="/uploadDate">uploadDate</a> to include <a href="/DateTime">DateTime</a>, correcting a longstanding bug.</li>
<li id="g3347"><a href="https://github.com/schemaorg/schemaorg/issues/3347">PR #3347</a>: Improved error reporting in case the parsing of JSON-LD examples fails.</li>
<li id="g3348"><a href="https://github.com/schemaorg/schemaorg/issues/3348">PR #3348</a>: Improvements to unit-testing code.</li>
<li id="g3349"><a href="https://github.com/schemaorg/schemaorg/issues/3349">PR #3349</a>: Fixed all RDF comments that did not finish with a punctuation. Plus improved reporting of these.</li>
</ul>
</td>
</tr>
<tr>
<td class="release">22.0<br/>2023-06-29</td>
<td>
<span id="v22.0"></span>
<p>
Version 22.0</p>
</td>
<td>
<ul>
<li id="g3339"><a href="https://github.com/schemaorg/schemaorg/issues/3339">Issue #3339</a>: Removed unnecessary reference to geo prefix in Json-ld context file.</li>
<li id="g3333"><a href="https://github.com/schemaorg/schemaorg/issues/3333">PR #3339</a>: Added example for <a href="/Drug">Drug</a> type.</li>
<li id="g3317"><a href="https://github.com/schemaorg/schemaorg/issues/3317">Issue #3317</a>: Added <a href="/tripOrigin">tripOrigin</a>.</li>
</ul>
</td>
</tr>
<tr>
<td class="release">21.0<br/>2023-05-23</td>
<td>
<span id="v21.0"></span>
<p>
Version 21.0 - Added PoliticalParty</p>
</td>
<td>
<ul>
<li id="g3282"><a href="https://github.com/schemaorg/schemaorg/issues/3282">PR #3282</a>: Added <a href="/PoliticalParty">PoliticalParty</a> as type of <a href="/Organization">Organization</a>.</li>
</ul>
</td>
</tr>
<tr>
<td class="release">20.0<br/>2023-05-22</td>
<td>
<span id="v20.0"></span>
<p>Version 20.0 - Fixed a typo in maximumVirtualAttendeeCapacity.</p>
</td>
<td>
<ul>
<li id="g3264"><a href="https://github.com/schemaorg/schemaorg/issues/3264">Issue #3264</a>: Fixed a typo in <a href="/maximumVirtualAttendeeCapacity">maximumVirtualAttendeeCapacity</a> (we had "physical" instead of "virtual").</li>
</ul>
</td>
</tr>
<tr>
<td class="release">19.0<br/>2023-05-19</td>
<td>
<span id="v18.0"></span>
<p>
Version 19.0 - indicating measurement techniques with defined terms.</p>
</td>
<td>
<ul>
<li id="g3250"><a href="https://github.com/schemaorg/schemaorg/issues/3250">PR #3250</a>: Added <a href="/DefinedTerm">DefinedTerm</a> as an expected value for <a href="/measurementTechnique">measurementTechnique</a> and <a href="/measurementMethod">measurementMethod</a>.</li>
</ul>
</td>
</tr>
<tr>
<td class="release">18.0<br/>2023-05-18</td>
<td>
<span id="v18.0"></span>
<p>
Version 18.0 - Improving our ability to talk about text objects and thumbnail images for creative works.</p>
</td>
<td>
<ul>
<li id="g3091"><a href="https://github.com/schemaorg/schemaorg/issues/3091">PR #3091</a>: Added an explicit subtype of MediaObject for text: <a href="/TextObject">TextObject</a>, and (addressing Issue <a href="https://github.com/schemaorg/schemaorg/issues/2942">#2942</a>) made it a possible expected value for <a href="/description">description</a>.</li>
<li id="g874"><a href="https://github.com/schemaorg/schemaorg/issues/874">Issue #874</a>: Noted that <a href="/thumbnail">thumbnail</a> is potentially applicable to any <a href="/CreativeWork">CreativeWork</a> (implemented in <a href="https://github.com/schemaorg/schemaorg/pull/3286">#3286</a>).</li>
</ul>
</td>
</tr>
<tr>
<td class="release">17.0<br/>2023-05-17</td>
<td>
<span id="v17.0"></span>
<p>
Version 17.0 - This is a small update, with small fixes. </p>
</td>
<td>
<ul>
<li id="g3314"><a href="https://github.com/schemaorg/schemaorg/issues/3314">Issue #3314</a>: Removed "courseLength" and added <a href="/courseSchedule">courseSchedule</a> to properly reflect consensus of the <a href="https://github.com/schemaorg/schemaorg/issues/3281">public discussion</a>.
Added <a href="/observationPeriod">observationPeriod</a> to accompany the recent additions around <a href="/Observation">Observation</a>.</li>
</ul>
</td>
</tr>
<tr>
<td class="release">16.0<br/>2023-05-16</td>
<td>
<span id="v16.0"></span>
<p>
Version 16.0 - This release includes miscellaneous fixes, some additions around courses, an update to the vocabulary around statistical observations, as well as various eCommerce additions. </p>
</td>
<td>
<ul>
<li id="g3304"><a href="https://github.com/schemaorg/schemaorg/issues/3304">Issue #3304</a>: Amended <a href="/additionalType">additionalType</a> to anticipate <a href="/Text">textual</a> values.</li>
<li id="g2953"><a href="https://github.com/schemaorg/schemaorg/pull/2953">PR #2953</a>: Consistent formatting of ISSN text in examples.</li>
<li id="g3234"><a href="https://github.com/schemaorg/schemaorg/pull/3234">PR #3234</a>: Reword definition of <a href="/timeRequired">timeRequired</a> to be less specific to learning resources.</li>
<li id="g3273"><a href="https://github.com/schemaorg/schemaorg/pull/3273">PR #3273</a>: Added Microdata example for <a href="/BlogPosting">BlogPosting</a>.</li>
<li id="g3065"><a href="https://github.com/schemaorg/schemaorg/pull/3065">PR #3065</a>: Added an example of ESIP Science-On-Schema markup to <a href="/Dataset">Dataset</a> and <a href="/ResearchProject">ResearchProject</a>.</li>
<li id="g2859"><a href="https://github.com/schemaorg/schemaorg/pull/2859">PR #2859</a>: Added <a href="/PerformanceRole">PerformanceRole</a> example <a href="/actor">actor</a> property.</li>
<li id="g3298"><a href="https://github.com/schemaorg/schemaorg/issues/3298">Issue #3298</a>: Corrected priceCurrency examples in <a href="/Offer">Offer</a> examples.</li>
<li id="g3303"><a href="https://github.com/schemaorg/schemaorg/issues/3303">Issue #3303</a>: Added <a href="/bed">bed</a> and <a href="/occupancy">occupancy</a> to <a href="/Accommodation">Accommodation</a> and added a subtype of <a href="/LodgingBusiness">LodgingBusiness</a> called <a href="/VacationRental">VacationRental</a>.</li>
</ul>
<h3>Changes in new area:</h3>
<ul>
<li id="g3281"><a href="https://github.com/schemaorg/schemaorg/issues/3281">issue #3281</a>: Improvements to <a href="/Course">Course</a>, introducing properties courseLength, <a href="/totalHistoricalEnrollment">totalHistoricalEnrollment</a>, <a href="/financialAidEligible">financialAidEligible</a>, and <a href="/syllabusSections">syllabusSections</a>, alongside side a supporting type, <a href="/Syllabus">Syllabus</a>.
</li>
<li id="g3297"><a href="https://github.com/schemaorg/schemaorg/pull/3297">PR #3297</a>: The <a href="/titleEIDR">titleEIDR</a> property is now also expected on <a href="/TVSeason">TVSeason</a> and <a href="/TVSeries">TVSeries</a>, reflecting industry practice.</li>
<li id="g3298"><a href="https://github.com/schemaorg/schemaorg/issues/2564">Issue #2564</a>: Updated the earlier draft of a vocabulary for statistical observations. The <a href="/StatisticalPopulation">StatisticalPopulation</a> construct is no longer central. Introduced a new <a href="/StatisticalPopulation">StatisticalVariable</a> type, an abstraction for properties that can be measured in a particular place and time. These need not be statistical.
</li>
</ul>
<h3>Changes to documentation:</h3>
<ul>
<li id="g3277"><a href="https://github.com/schemaorg/schemaorg/pull/3277">PR #3277</a>: Consistent formatting of 'GitHub' in README.md.</li>
</ul>
<h3>Site Improvements</h3>
<ul>
<li id="g3305"><a href="https://github.com/schemaorg/schemaorg/issues/3305">Issue #3305</a>: Fixed formatting of URIs for references to some terms from external vocabularies in CSV output files.</li>
<li id="g3202"><a href="https://github.com/schemaorg/schemaorg/pull/3202">PR #3202</a>: Text for acknowledgements separated out from turtle definition files into markdown formatted files. Links to acknowledgements identified by use of contributor predicate in term definitions.</li>
<li id="g3204"><a href="https://github.com/schemaorg/schemaorg/pull/3204">PR #3204</a>: Fixes to many examples that were failing internal validation tests.</li>
<li id="g3289"><a href="https://github.com/schemaorg/schemaorg/issues/3289">Issue #3289</a>: Fixes typo in schemaorg.owl.</li>
</ul>
</td>
</tr>
<tr>
<td class="release"><a href="http://htmlpreview.github.io/?https://github.com/schemaorg/schemaorg/blob/main/data/releases/15.0/schema-all.html">15.0</a><br/>2022-10-25</td>
<td>
<span id="v15.0"></span>
<p>
Version 15.0 - This release includes miscellaneous fixes as well as various eCommerce additions. </p>
</td>
<td>
<h2>Vocabulary</h2>
<h3>Changes in Core section:</h3>
<ul>
<li id="g3136"><a href="https://github.com/schemaorg/schemaorg/issues/3136">Issue #3136</a>: Fixed a typo in an example (thanks, Joost!). We love to get quick fixes like this!</li>
<li id="g3159"><a href="https://github.com/schemaorg/schemaorg/pull/3159">PR #3159</a>: Added new examples for <a href="/Blog">Blog</a> and <a href="/BlogPosting">BlogPosting</a>.</li>
<li id="g2725"><a href="https://github.com/schemaorg/schemaorg/pull/2725">PR #2725</a>: Added <a href="/URL">URL</a> to range of <a href="/target">target</a> property (used on <a href="/Action">Action</a> types).</li>
<li id="g3178"><a href="https://github.com/schemaorg/schemaorg/pull/3178">PR #3178</a>: Add <a href ="/Person">Person</a> as expected type to <a href="/hiringOrganization">hiringOrganization</a>.</li>
<li id="g3179"><a href="https://github.com/schemaorg/schemaorg/pull/3179">PR #3179</a>: Add <a href ="/DateTime">DateTime</a> as expected type to <a href="/expires">expires</a>.</li>
<li id="g3094"><a href="https://github.com/schemaorg/schemaorg/pull/3094">PR #3094</a>: Make <a href="/Drug">Drug</a> and <a href="/DietarySupplement">DietarySupplement</a> inherit from <a href="/Product">Product</a>.</li>
</ul>
<h3>New:</h3>
<ul>
<li id="g3135"><a href="https://github.com/schemaorg/schemaorg/issues/3135">Issue #3135</a>: Added a <a href="/checkoutPageURLTemplate">checkoutPageURLTemplate</a> property to carry template-ized information about checkout page URLs.</li>
<li id="g3120"><a href="https://github.com/schemaorg/schemaorg/issues/3120">Issue #3120</a>: Added existing properties <a href="/height">height</a>, <a href="/width">width</a>, <a href="/depth">depth</a>, and <a href="/weight">weight</a> for use on <a href="/OfferShippingDetails">OfferShippingDetails</a> to specify the shipping dimensions of a product.</li>
<li id="g3122"><a href="https://github.com/schemaorg/schemaorg/issues/3122">Issue #3122</a>: Added a new <a href="/shippingOrigin">shippingOrigin</a> property with expected values of type <a href="/DefinedRegion">DefinedRegion</a> for use on <a href="/OfferShippingDetails">OfferShippingDetails</a>.</li>
<li id="g3123"><a href="https://github.com/schemaorg/schemaorg/issues/3123">Issue #3123</a>: Added new property <a href="/asin">asin</a> as a sub property of <a href="/identifier">identifier</a> with expected values of t
9CF1
ype <a href="/Text">Text</a> or <a href="/URL">URL</a> to represent Amazon Standard Identification Numbers. The <a href="/asin">asin</a> property is primarily intended for use on type <a href="/Product">Product</a> but can also be used on <a href="/Offer">Offer</a> and <a href="/Demand">Demand</a>.</li>
<li id="g3148"><a href="https://github.com/schemaorg/schemaorg/issues/3148">Issue #3148</a>: Added existing properties <a href="/positiveNotes">positiveNotes</a> and <a href="/negativeNotes">negativeNotes</a> for use on <a href="/Product">Product</a> to allow the specification of (positive and negative) highlights for products sold online.</li>
</ul>
<h3>Site Improvements</h3>
<ul>
<li id="g3163"><a href="https://github.com/schemaorg/schemaorg/pull/3163">PR #3163</a>: Fixed many typos in documents and comments - thanks <a href="https://github.com/polluks2">polluks2</a> for your efforts.</li>
<li id="g3126"><a href="https://github.com/schemaorg/schemaorg/issues/3126">Issue #3163</a>: Corrected hover colour on title of results in search_results page.</li>
<li id="g3180"><a href="https://github.com/schemaorg/schemaorg/issues/3180">Issue #3180</a>: Corrected missing isPartOf data from CSV outputs.</li>
<li id="g3186"><a href="https://github.com/schemaorg/schemaorg/issues/3186">Issue #3186</a>: Corrected formatting on <a href="/docs/iot-gettingstarted.html">IoT and Schema.org: Getting Started</a> document.</li>
<li id="g3124"><a href="https://github.com/schemaorg/schemaorg/pull/3124">PR #3124</a>: Fixed many typos and misspellings in term definitions - thanks <a href="https://github.com/ivan-pan">ivan-pan</a> for your efforts.</li>
</ul>
</td>
</tr>
<tr>
<td class="release"><a href="http://htmlpreview.github.io/?https://github.com/schemaorg/schemaorg/blob/main/data/releases/14.0/schema-all.html">14.0</a><br/>2022-03-17</td>
<td>
<span id="v14.0"></span>
<p>
Version 14.0 - This release includes improvements and additions around audience restrictions for eCommerce.
</p>
</td>
<td>
<h2>Vocabulary</h2>
<h3>Changes in Core section:</h3>
<ul>
<li id="g3026"><a href="https://github.com/schemaorg/schemaorg/issues/3026">Issue #3026</a>:
Fixed incorrect longitude value for Empire State Building in <a href="/longitude#eg-0005">example eg-0005</a>.</li>
<li id="g3059"><a href="https://github.com/schemaorg/schemaorg/issues/3059">Issue #3059</a>: Added <a href="/gameEdition">gameEdition</a> for <a href="/VideoGame">VideoGame</a> by analogy with <a href="/bookEdition">bookEdition</a>.</li>
</ul>
<h3>New additions:</h3>
<ul>
<li id="g3052"><a href="https://github.com/schemaorg/schemaorg/issues/3052">Issue #3052</a>: Added a new subtype of <a href="/Organization">Organization</a> to distinguish organizations that are Search and Rescue organizations: <a href="/SearchRescueOrganization">SearchRescueOrganization</a>.</li>
<li id="g3053"><a href="https://github.com/schemaorg/schemaorg/issues/3053">Issue #3053</a>: Updated <a href="/keywords">keywords</a> property to clarify that comma-separated usage only applies to textual keywords. Also updated to expect this property in several other high-level types.</li>
<li id="g3057"><a href="https://github.com/schemaorg/schemaorg/issues/3057">Issue #3057</a>: Added <a href="/DigitalPlatformEnumeration">DigitalPlatformEnumeration</a> as a convenience enumeration for use with <a href="/actionPlatform">actionPlatform</a>.</li>
<li id="g3056"><a href="https://github.com/schemaorg/schemaorg/issues/3056">Issue #3056</a>: Added <a href="/funding">funding</a> as a convenient inverse of <a href="/fundedItem">fundedItem</a>, with the associated types for both properties aligned. Added more examples around Grant.</li>
<li id="g3058"><a href="https://github.com/schemaorg/schemaorg/issues/3058">Issue #3058</a>: Added a new subtype of <a href="/ConsumeAction">ConsumeAction</a> called <a href="/PlayGameAction">PlayGameAction</a>.</li>
<li id="g2989"><a href="https://github.com/schemaorg/schemaorg/issues/2989">Issue #2989</a>: Added enumeration <a href="/AdultOrientedEnumeration">AdultOrientedEnumeration</a> for use as value for new property <a href="/hasAdultConsideration">hasAdultConsideration</a>. Added <a href="/hasAdultConsideration">hasAdultConsideration</a> for use on <a href="/Offer">Offer</a> and <a href="/Product">Product</a>. Also added <a href="/isFamilyFriendly">isFamilyFriendly</a> for use on <a href="/Offer">Offer</a> and <a href="/Product">Product</a> in addition to <a href="/CreativeWork">CreativeWork</a>.</li>
<li id="g3001"><a href="https://github.com/schemaorg/schemaorg/issues/3001">Issue #3001</a>:
Added new property <a href="/returnPolicyCountry">returnPolicyCountry</a> for use on <a href="/MerchantReturnPolicy">MerchantReturnPolicy</a>.</li>
<li id="g2915"><a href="https://github.com/schemaorg/schemaorg/issues/2915">Issue #2915</a>:
Added new property <a href="/iso6523Code">iso6523Code</a> for use on <a href="/Organization">Organization</a>.</li>
<li id="g3028"><a href="https://github.com/schemaorg/schemaorg/issues/3028">issue #3028</a>:
Added <a href="/OnlineBusiness">OnlineBusiness</a> as a subtype of <a href="/Organization">Organization</a> and <a href="/OnlineStore">OnlineStore</a> as a subtype of <a href="/OnlineBusiness">OnlineBusiness</a>.</li>
<li id="g3025"><a href="https://github.com/schemaorg/schemaorg/issues/3025">Issue #3025</a>:
Added <a href="/CategoryCode">CategoryCode</a> as an expected value for <a href="/category">category</a>.</li>
<li id="g2927"><a href="https://github.com/schemaorg/schemaorg/issues/2927">Issue #2927</a>:
Added <a href="/provider">provider</a> to <a href="/Action">Action</a> type.</li>
</ul>
<h3>Site Improvements</h3>
<ul>
<li id="g2990"><a href="https://github.com/schemaorg/schemaorg/issues/2990">PR #2990</a>:
Update supporting Python version and libraries - RDFLib 6.1, Python 3.10.</li>
</ul>
</td>
</tr>
<tr>
<td class="release"><a href="http://htmlpreview.github.io/?https://github.com/schemaorg/schemaorg/blob/main/data/releases/13.0/schema-all.html">13.0</a><br/>2021-07-07</td>
<td>
<span id="v13.0"></span>
<p>
Version 13.0 - see <a href="https://github.com/schemaorg/schemaorg/issues/2884">planning pages</a>. This release includes a number of terms proposed by the <a href="https://bioschemas.org/">Bioschemas</a> project, alongside other additions around e-commerce returns policy markup, job postings, and MediaReview markup.
</p>
</td>
<td>
<h2>Vocabulary</h2>
<h3>Changes in Core section:</h3>
<h3>New additions:</h3>
<ul>
<li id="g2892"><a href="https://github.com/schemaorg/schemaorg/issues/2892">Issue #2892</a>: Clarifications around <a href="/Blog">Blog</a>, <a href="/BlogPosting">BlogPosting</a> and <a href="/LiveBlogPosting">LiveBlogPosting</a>, including better cross-referencing, and acknowledgment of related terminology ("weblog", and "blog" in the sense of posting). For clarity, the example showing <a href="/LiveBlogPosting">LiveBlogPosting</a> is no longer tagged to show up as an example of <a href="/Blog">Blog</a> too.