Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 372 text datatype properties #989

Merged
merged 9 commits into from
Nov 7, 2023
7 changes: 7 additions & 0 deletions docs/release_notes/372-text-datatype-properties.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
### Minor Updates
- `gist:tagText` to be replaced by `gist:containedText`Issue [#372](https://github.com/semanticarts/gist/issues/372).
- Deprecated `gist:tagText`.
- `containedText`:
- Added domainIncludes `Tag` and `Text`
- Removed reference to Text class in the definition
- Added examples
14 changes: 12 additions & 2 deletions gistCore.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -2297,7 +2297,8 @@ gist:Tag
]
) ;
] ;
skos:definition "This is for folksonomy type terms, which can be made up on the fly by users."^^xsd:string ;
skos:definition "A term in a folksonomy used to categorize things. Tags can be made up on the fly by users."^^xsd:string ;
skos:editorialNote "See guidance on removing tagText property in the next major release at https://github.com/semanticarts/gist/issues/947#issuecomment-1780220876."^^xsd:string ;
skos:prefLabel "Tag"^^xsd:string ;
.

Expand Down Expand Up @@ -2937,8 +2938,16 @@ gist:conformsTo
gist:containedText
a owl:DatatypeProperty ;
rdfs:range xsd:string ;
skos:definition "Links to the string corresponding to Text"^^xsd:string ;
skos:definition "A string that is closely associated with an individual."^^xsd:string ;
skos:example
"The string associated with a tag."^^xsd:string ,
"The string associated with text content."^^xsd:string
;
skos:prefLabel "contained text"^^xsd:string ;
gist:domainIncludes
gist:Tag ,
gist:Text
;
.

gist:contributesTo
Expand Down Expand Up @@ -3842,6 +3851,7 @@ gist:startDateTime

gist:tagText
a owl:DatatypeProperty ;
owl:deprecated "true"^^xsd:boolean ;
skos:definition "Used for folksonomy style categories (non controlled vocabulary)"^^xsd:string ;
skos:prefLabel "tag text"^^xsd:string ;
.
Expand Down