semantifyit / dialsws

Dialogical Access to Lightweight Semantic Web Services
http://dialsws.xyz
Other
3 stars 1 forks source link

Use schema:Text instead of webapi:Text #9

Closed ThibaultGerrier closed 5 years ago

ThibaultGerrier commented 5 years ago

For example

webapi:tokenFormat a rdf:Property;
    rdfs:label "tokenFormat";
    schema:domainIncludes webapi:TokenAuthentication;
    schema:rangeIncludes webapi:Text;
    rdfs:comment "Format of the bearer token".

could be

webapi:tokenFormat a rdf:Property;
    rdfs:label "tokenFormat";
    schema:domainIncludes webapi:TokenAuthentication;
    schema:rangeIncludes schema:Text;
    rdfs:comment "Format of the bearer token".

No need to redefine Text.