Skip to content

Commit

Permalink
chore: Add ontology constants for text value types (#3266)
Browse files Browse the repository at this point in the history
  • Loading branch information
BalduinLandolt authored Jun 4, 2024
1 parent b9b5760 commit 854a6c8
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,13 @@ object OntologyConstants {
val MovingImageFileValue: IRI = KnoraBasePrefixExpansion + "MovingImageFileValue"
val TextFileValue: IRI = KnoraBasePrefixExpansion + "TextFileValue"

val TextValueType: IRI = KnoraBasePrefixExpansion + "TextValueType"
val HasTextValueType: IRI = KnoraBasePrefixExpansion + "hasTextValueType"
val HasTextValuePropertyType: IRI = KnoraBasePrefixExpansion + "hasTextValuePropertyType"
val TextValueType: IRI = KnoraBasePrefixExpansion + "TextValueType"
val UnformattedText: IRI = KnoraBasePrefixExpansion + "UnformattedText"
val FormattedText: IRI = KnoraBasePrefixExpansion + "FormattedText"
val CustomFormattedText: IRI = KnoraBasePrefixExpansion + "CustomFormattedText"
val UndefinedTextType: IRI = KnoraBasePrefixExpansion + "UndefinedTextType"

val FileValueClasses: Set[IRI] = Set(
FileValue,
Expand Down

0 comments on commit 854a6c8

Please sign in to comment.