We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a97e85 commit f63e655Copy full SHA for f63e655
clients/fossid-webapp/src/main/kotlin/model/identification/identifiedFiles/License.kt
@@ -20,6 +20,7 @@
20
package org.ossreviewtoolkit.clients.fossid.model.identification.identifiedFiles
21
22
import org.ossreviewtoolkit.clients.fossid.model.identification.common.LicenseMatchType
23
+import org.ossreviewtoolkit.clients.fossid.model.result.LicenseCategory
24
25
data class License(
26
val fileLicenseMatchType: LicenseMatchType,
@@ -30,6 +31,7 @@ data class License(
30
31
val isFoss: Int?,
32
val isOsiApproved: Int?,
33
val isSpdxStandard: Int?,
34
+ val category: LicenseCategory? = null,
35
36
val name: String?,
37
val text: String? = null
0 commit comments