Skip to content

Commit

Permalink
fix(ctrlx-reporter): Make the $schema field non-nullable
Browse files Browse the repository at this point in the history
Adjust the docs slightly while at it.

Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Aug 14, 2024
1 parent 93907bc commit 46aa773
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ import org.ossreviewtoolkit.utils.spdx.isSpdxExpression
@Serializable
internal data class FossInfo(
/**
* The reference to the JSON schema in use.
* The reference to the official JSON schema.
*/
@SerialName("\$schema")
val schema: String? = "https://github.com/boschrexroth/json-schema/blob/a84eab6/ctrlx-automation/ctrlx-core/apps/" +
val schema: String = "https://github.com/boschrexroth/json-schema/blob/a84eab6/ctrlx-automation/ctrlx-core/apps/" +
"fossinfo/fossinfo.v1.schema.json",

/**
Expand Down

0 comments on commit 46aa773

Please sign in to comment.