diff --git a/doc/04-schema.md b/doc/04-schema.md index f3d85e742..9e846168a 100644 --- a/doc/04-schema.md +++ b/doc/04-schema.md @@ -172,8 +172,8 @@ An Example for disjunctive licenses: ```json { "license": [ - "LGPL-2.1", - "GPL-3.0+" + "LGPL-2.1-only", + "GPL-3.0-or-later" ] } ``` @@ -182,7 +182,7 @@ Alternatively they can be separated with "or" and enclosed in parenthesis; ```json { - "license": "(LGPL-2.1 or GPL-3.0+)" + "license": "(LGPL-2.1-only or GPL-3.0-or-later)" } ```