<w> a Work ;bf:issn <i> .<i> a Identifier ;rdf:value "1234567890" .If I dereference <i>, I have no idea that the resource is an ISSN.Thus we need to include that information associated with the resource. That leads to identifierScheme ... which is a URI.So now we have:<i> a Identifier ;scheme <http://.../issn/> ;value "1234567890" .But an ISSN is a *type* of Identifier, and redundant with the class bf:Identifier. There can be no resource which has a scheme of <issn> which is not an Issn Identifier.Thus we simplify the model to:<i> a IssnIdentifier ;value "1234567890" .QED?