www.openlinksw.com
docs.openlinksw.com

Book Home

Contents
Preface

RDF Data Access and Data Management

Data Representation
SPARQL
Extensions
RDF Graphs Security
Linked Data Views over RDBMS Data Source
Automated Generation of Linked Data Views over Relational Data Sources
Virtuoso R2RML Support
Examples of Linked Data Views
RDF Insert Methods in Virtuoso
RDFizer Middleware (Sponger)
Virtuoso Faceted Browser Installation and configuration
Prerequisites Pre Installation VAD Package Installation Post Installation URI Labels Usage Statistics Examples
Virtuoso Faceted Web Service
Linked Data
Inference Rules & Reasoning
RDF Performance Tuning
RDF Data Access Providers (Drivers)

14.11. Virtuoso Faceted Browser Installation and configuration

14.11.1. Prerequisites

Requires Virtuoso 6.0 TP1 or higher for use.


14.11.2. Pre Installation

Note: This step is not required for Virtuoso Release 6.1 and above builds

If you have an existing Virtuoso 6.x installation, and your Quad Store has greater than 10K worth of triples, please perform the following steps:

  1. Run the following commands using the Virtuoso isql program before installing the Faceted Browser VAD:
      drop index RDF_QUAD_OPGS;
      drop index RDF_QUAD_POGS;
      drop index RDF_QUAD_GPOS;
      drop index RDF_QUAD_OGPS;
    
      checkpoint;
    
      create table R2 (G iri_id_8, S iri_id_8, P iri_id_8, O any, primary key (S, P, O, G));
      alter index R2 on R2 partition (S int (0hexffff00));
    
      log_enable (2);
    
      INSERT INTO R2 (G, S, P, O) select G, S, P, O FROM rdf_quad;
    
      DROP TABLE RDF_QUAD;
      ALTER TABLE r2 rename RDF_QUAD;
    
      checkpoint;
    
      create bitmap index RDF_QUAD_OPGS on RDF_QUAD (O, P, G, S) partition (O varchar (-1, 0hexffff));
      create bitmap index RDF_QUAD_POGS on RDF_QUAD (P, O, G, S) partition (O varchar (-1, 0hexffff));
      create bitmap index RDF_QUAD_GPOS on RDF_QUAD (G, P, O, S) partition (O varchar (-1, 0hexffff));
    
      checkpoint;
    

Note this step may take sometime depending on how many triples are already in your Quad Store.


14.11.3. VAD Package Installation

  1. Download and install the Virtuoso Faceted Browser VAD package using the Conductor System Admin - > Packages tab.
    Install the FCT package
    Figure: 14.11.3.1. Install the FCT package
  2. The HTML interface of the Faceted Browser Engine is exposed at: http://<cname>/fct, where "cname" is the hostname:portno your Virtuoso instance is running on.
    FCT HTML interface
    Figure: 14.11.3.1. FCT HTML interface
  3. The Faceted Browser Engine exposes a REST API at the endpoint: http://<cname>/fct/service.

14.11.4. Post Installation

  1. Build Full Text Indexes by running the following commands using the Virtuoso isql program:
    RDF_OBJ_FT_RULE_ADD (null, null, 'All');
    VT_INC_INDEX_DB_DBA_RDF_OBJ ();
    
  2. Run the following procedure using the Virtuoso isql program to populate label lookup tables periodically and activate the Label text box of the Entity Label Lookup tab:
    urilbl_ac_init_db()
    
  3. Run the following procedure using the Virtuoso isql program to calculate the IRI ranks. Note this should be run periodically as the data grows to re-rank the IRIs.
    s_rank()
    
  4. Perform Network Resource Fetch of some data to load some RDF triples in the quad store. This can easily be done using the Virtuoso description.vsp page which provides a hypertext description of RDF Linked Data, by describing the following page for example (or one of your choice):
    http://cname/about/html/http/news.cnet.com
    
    Network Resource Fetch data
    Figure: 14.11.4.1. Network Resource Fetch data
    Network Resource Fetch data
    Figure: 14.11.4.2. Network Resource Fetch data
  5. Use the Faceted Browser Search and Find User Interface to search for information on "CNET":
    Faceted Browser Search
    Figure: 14.11.4.1. Faceted Browser Search
  6. Results of the following form should be returned for the network resource data being fetched.
    Faceted Browser Search Results
    Figure: 14.11.4.1. Faceted Browser Search Results
  7. Click "Types" link shown at the right vertical Navigation
  8. Results of the classes/properties should be returned:
    Results of the classes/properties
    Figure: 14.11.4.1. Results of the classes/properties
  9. To get Type description, click "Describe" link for a given type, for ex. "Person".
  10. A list of attributes and values should be presented for the given resource. Note that automatically is generated QRCode image for the described entity.
    Results of the classes/properties
    Figure: 14.11.4.1. Results of the classes/properties
  11. Return back to the Attributes list from above by going to the "Facets" tab.
  12. To exclude a type, un-tick the checkbox associated with the type:
    Exclude Type(s)
    Figure: 14.11.4.1. Exclude Type(s)
  13. Click the Type URI link
  14. Results of excluding the Type(s) should be shown:
    Results of Excluded Type(s)
    Figure: 14.11.4.1. Results of Excluded Type(s)
  15. The Faceted Browser Web service endpoint can also be queried to obtain the same results:
    $ more cnet.xml
    <?xml version="1.0"?>
    <query xmlns="http://openlinksw.com/services/facets/1.0" inference="" same-as="">
      <text>CNET</text>
      <view type="text" limit="20" offset=""/>
    </query>
    
    $ curl -H "Content-Type: text/xml" -d @cnet.xml  http://cname/fct/service
    <fct:facets xmlns:fct="http://openlinksw.com/services/facets/1.0/">
    <fct:sparql>    SELECT ?s1 as ?c1, (bif:search_excerpt (bif:vector ('CNET'), ?o1)) as ?c2, ?sc, ?rank WHERE {{{ SELECT ?s1, (?sc * 3e-1) as ?sc, ?o1, (sql:rnk_scale (<LONG::IRI_RANK> (?s1))) as ?rank  WHERE { ?s1 ?s1textp ?o1 . ?o1 bif:contains  '"CNET"'  option (score ?sc)  . } ORDER BY DESC (?sc * 3e-1 + sql:rnk_scale (<LONG::IRI_RANK> (?s1)))  LIMIT 20  OFFSET 0 }}}</fct:sparql>
    <fct:time>16</fct:time>
    <fct:complete>yes</fct:complete>
    <fct:timeout>0</fct:timeout>
    <fct:db-activity>   131R rnd     36R seq      0P disk      0B /      0 messages</fct:db-activity>
     <fct:result type="text">
      <fct:row>
        <fct:column datatype="trank">4.5</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.com">http://news.com</fct:column>
        <fct:column>Technology News - CNET News</fct:column>
        <fct:column><span class="srch_xerpt"><b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">4.5</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com/2547-1_3-0-20.xml">http://news.cnet.com/2547-1_3-0-20.xml</fct:column>
        <fct:column>CNET News.com</fct:column>
        <fct:column><span class="srch_xerpt"><b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">4.5</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com">http://news.cnet.com</fct:column>
        <fct:column>Technology News - CNET News</fct:column>
        <fct:column><span class="srch_xerpt"><b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3.9</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.com">http://news.com</fct:column>
        <fct:column>Technology News - CNET News</fct:column>
        <fct:column><span class="srch_xerpt">Technology News <b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3.9</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com">http://news.cnet.com</fct:column>
        <fct:column>Technology News - CNET News</fct:column>
        <fct:column><span class="srch_xerpt">Technology News <b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.com">http://news.com</fct:column>
        <fct:column>Technology News - CNET News</fct:column>
        <fct:column><span class="srch_xerpt">Tech news and business reports by <b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com/2547-1_3-0-20.xml">http://news.cnet.com/2547-1_3-0-20.xml</fct:column>
        <fct:column>CNET News.com</fct:column>
        <fct:column><span class="srch_xerpt">Tech news and business reports by <b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com">http://news.cnet.com</fct:column>
        <fct:column>Technology News - CNET News</fct:column>
        <fct:column><span class="srch_xerpt">Tech news and business reports by <b>CNET</b> News.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.com#6">http://news.com#6</fct:column>
        <fct:column>There's an electric car in your future</fct:column>
        <fct:column><span class="srch_xerpt">... <b>CNET</b> Car Tech posts photos of electric cars expected to come out by 2011.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com/2547-1_3-0-20.xml#9">http://news.cnet.com/2547-1_3-0-20.xml#9</fct:column>
        <fct:column>There's an electric car in your future</fct:column>
        <fct:column><span class="srch_xerpt">... <b>CNET</b> Car Tech posts photos of electric cars expected to come out by 2011.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com#9">http://news.cnet.com#9</fct:column>
        <fct:column>There's an electric car in your future</fct:column>
        <fct:column><span class="srch_xerpt">... <b>CNET</b> Car Tech posts photos of electric cars expected to come out by 2011.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.com#6">http://news.com#6</fct:column>
        <fct:column>There's an electric car in your future</fct:column>
        <fct:column><span class="srch_xerpt">... <b>CNET</b> Car Tech posts photos of electric cars expected to come out by 2011.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com/2547-1_3-0-20.xml#9">http://news.cnet.com/2547-1_3-0-20.xml#9</fct:column>
        <fct:column>There's an electric car in your future</fct:column>
        <fct:column><span class="srch_xerpt">... <b>CNET</b> Car Tech posts photos of electric cars expected to come out by 2011.</span></fct:column>
      </fct:row>
      <fct:row>
        <fct:column datatype="trank">3</fct:column>
        <fct:column datatype="erank">5.881291583872905e-014</fct:column>
        <fct:column datatype="url" shortform="http://news.cnet.com#9">http://news.cnet.com#9</fct:column>
        <fct:column>There's an electric car in your future</fct:column>
        <fct:column><span class="srch_xerpt">... <b>CNET</b> Car Tech posts photos of electric cars expected to come out by 2011.</span></fct:column>
      </fct:row>
     </fct:result>
    </fct:facets>
    
  16. Click "New search" from the Entity Relations Navigation and go to "Entity Label Lookup" tab:
    Query Faceted Browser Web service endpoint
    Figure: 14.11.4.1. Query Faceted Browser Web service endpoint
  17. In the Label auto-complete text box of the Entity Label Lookup tab, enter the name of an rdfs label to be Described:
    Select a URI from the list of available Labels
    Figure: 14.11.4.1. Select a URI from the list of available Labels
  18. Select a URI from the list of available Labels to obtain a description of the URI:
    Select a URI from the list of available Labels
    Figure: 14.11.4.1. Select a URI from the list of available Labels
    Select a URI from the list of available Labels
    Figure: 14.11.4.2. Select a URI from the list of available Labels
  19. Click "Facets" and go to "Entity URI Lookup" tab:
    Enter URI
    Figure: 14.11.4.1. Enter URI
  20. In the URI auto-complete text box of the Entity URI Lookup tab enter the name URI to be Described:
    Enter URI
    Figure: 14.11.4.1. Enter URI
  21. Select a URI from the list of available Labels to obtain a description of the URI:
    Obtain a description of the URI
    Figure: 14.11.4.1. Obtain a description of the URI
    Obtain a description of the URI
    Figure: 14.11.4.2. Obtain a description of the URI
  22. If data is loaded into the quad store via DML functions (TTLP, RDF_LOAD_RDFXML etc.) the following procedure needs to run from isql to build the free text indexes required each time:
    VT_INC_INDEX_DB_DBA_RDF_OBJ ()
    

14.11.5. URI Labels

  1. Go to http://cname/fct
  2. Enter a free text search pattern (for example, "Camcorder" as consumer product), and click Search:
    URI Labels
    Figure: 14.11.5.1. URI Labels
  3. Your initial query results page will display a list of literal value snippets where for each URL will be displayed a label:
    URI Labels
    Figure: 14.11.5.1. URI Labels
  4. Click for ex. on the URL link of the first row result.
  5. The product description page should be shown and a list of Attributes and Values will be presented. An URL label of the product also will be shown: "Charges Lithium Ion 800 series batteries":
    URI Labels
    Figure: 14.11.5.1. URI Labels
    URI Labels
    Figure: 14.11.5.2. URI Labels
    URI Labels
    Figure: 14.11.5.3. URI Labels

14.11.6. Usage Statistics

  1. Use the Faceted Browser Search and Find User Interface to search for information on "Michael Jackson":
    Usage Statistics
    Figure: 14.11.6.1. Usage Statistics
  2. Results of the following form should be returned for the network resource data being fetched.
    Usage Statistics
    Figure: 14.11.6.1. Usage Statistics
  3. Click the "Types" link under "Entity Relations Navigation".
  4. Results about "Michael Jackson" as Type/Label/Count list should be displayed:
    Usage Statistics
    Figure: 14.11.6.1. Usage Statistics
  5. You can navigate amongst the search results pages by using the "Prev" and "Next" buttons. Click for ex. "Next":
    Usage Statistics
    Figure: 14.11.6.1. Usage Statistics
  6. Click a type link, for ex.:
    http://dbpedia.org/class/yago/Artist109812338
    
  7. Should be shown type results and:
    Displaying Ranked Entity Names and Text summaries where:
    
    Entity1 has any Attribute with Value "Michael Jackson" Drop.
    Entity1 is a yago:Artist109812338 . Drop
    
    Usage Statistics
    Figure: 14.11.6.1. Usage Statistics
  8. Click the link:
    dbpedia:Michael_Jackson
    
  9. Results about "Michael Jackson" as Attribute/Value list should be presented:
    Usage Statistics
    Figure: 14.11.6.1. Usage Statistics
    Usage Statistics
    Figure: 14.11.6.2. Usage Statistics
    Usage Statistics
    Figure: 14.11.6.3. Usage Statistics
    Usage Statistics
    Figure: 14.11.6.4. Usage Statistics
  10. You can navigate amongst the search results pages by using the "First", "Prev", "Next" and "Last" buttons. Click for ex. "Last":
    Usage Statistics
    Figure: 14.11.6.1. Usage Statistics
    Usage Statistics
    Figure: 14.11.6.2. Usage Statistics
  11. "Metadata" tab.
  12. Results of usage statistics for "Michael Jackson" grouped in 4 tabs should be shown:
    1. Referenced by Graphs: shows how many times the URI is found as subject in the relevant graph(s):
      SPARQL
      SELECT ?g count (*)
      where
            {
          graph ?g { <URI> ?p ?o }
        }
      group by ?g
      order by desc 2
      limit 20
      
      Usage Statistics
      Figure: 14.11.6.1. Usage Statistics
    2. Source Graphs: shows how many times the URI is found as object in the relevant graph(s):
      SPARQL
      SELECT ?g count (*)
      where
            {
          graph ?g { ?s ?p <URI>  }
            }
      group by ?g
      order by desc 2
      limit 20
      
      Usage Statistics
      Figure: 14.11.6.1. Usage Statistics
    3. Direct co-references: shows results as subject and calculated rank, based on running transitive closure over owl:sameAs of the URI in subject or object:
      SPARQL
      SELECT ?syn ( sql:rnk_scale (<LONG::IRI_RANK> (?syn)))
      where
            {
          { SELECT ?s ?syn
            where
             {
               {?syn owl:sameAs ?s } union {?s owl:sameAs ?syn}
          }
        }
          option (transitive, t_distinct, t_min (0), T_in (?s), t_out (?syn)) . filter (!isliteral (?syn) &amp;&amp; ?s = <URI> )
      }
      order by desc 2
      limit 20
      
      Usage Statistics
      Figure: 14.11.6.1. Usage Statistics
    4. Indirect co-references: shows expanded results for objects concur with the URI by IFP:
      SPARQL
      SELECT distinct ?syn ?p ?o (sql:rnk_scale (<LONG::IRI_RANK> (?syn)))
      where
        { <URI> ?p ?o .  filter (0 != (<LONG::bif:rdf_is_sub> ("b3sifp", ?p, lod:ifp_like, 3))) .
          ?syn ?p ?o .
      }
      order by desc 4
      limit 20
      
      Usage Statistics
      Figure: 14.11.6.1. Usage Statistics

14.11.7. Examples

Faceted Browsing Sample using LOD Cloud Cache data space

The following example demonstrates a simple scenario of tracking Kingsley Idehen's conversations across the Web, using the Virtuoso Faceted Browser hosted on LOD.

  1. Go to http://lod.openlinksw.com/fct/
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  2. Enter a free text search pattern (for example, "Kingsley Idehen"), and click Search
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  3. Your initial query results page will display a list of literal value snippets from property values associated with the query text pattern
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  4. Using the Navigation section on the right, click on "Types", which alters the contents of the query results area by presenting CURIE based hyperlinks for each of the Entity Types associated with Property values that contains the query text pattern
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  5. You can perform Describe for a given found type, by clicking the "Describe" link in the "Type" column. For ex, for "atom:Entry" the produced describe type page would show a list of Attributes and Values + automatically generated QRCode image:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  6. Click "Facets" tab to return to the Types content page from the previous step.
  7. Click on the "foaf:Person" link to narrow the result set down to Entities of this Type, un-hatch the checkbox beside this link for Negation (filtering out) based on this Entity Type
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
    • For Negation (filtering out) based on this Entity Type un-hatch the check-box shown besides the link:
      Faceted Navigation Example
      Figure: 14.11.7.1. Faceted Navigation Example
      Faceted Navigation Example
      Figure: 14.11.7.2. Faceted Navigation Example
    • You can filter further, by switching (pivoting) to the a Property based view, by returning to the Navigation section and then clicking on "Properties" or "Referencing Properties" links; in either case, you have further filtering of based on the combination of Properties and Entities where Entities in the result-set contain values matching the query text pattern
      Faceted Navigation Example
      Figure: 14.11.7.1. Faceted Navigation Example
  8. From "Entity Relations Navigation" click "Attributes".
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  9. You can navigate amongst the search results pages by using the "Prev" and "Next" buttons. Click for ex. "Next":
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  10. From the list of Property Types, click on the "foaf:interest" link to filter further, based on the values of this property:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  11. From the list of "foaf:interest" Values, click on "About:Linked Data", which filters the result-set further to display reveal Entity Identifier Links (Generic HTTP URIs) and Labels for each "foaf:Person" associated with the property "foaf:interest", in the LOD data space:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  12. Click on one of the HTTP URIs in the filtered results-set to obtain a detailed structured description of a given Entity i.e. about the person Kingsley Uyi Idehen. Each listed Property is a Link; thus, each Property is a link to other structured Entity descriptions. Additionally, a QRCode image will be produced automatically for the given entity:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.2. Faceted Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.3. Faceted Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.4. Faceted Navigation Example
  13. You can navigate amongst the search results pages by using the "First", "Prev", "Next" and "Last" buttons. Click for ex. "Last":
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.2. Faceted Navigation Example
  14. Click on "Metadata" link to get a summary view of this Linked Data Space, "Source" ¨ and "Reference" graphs are akin to saying "Table X" and "Table Y" where each table is the container of Records re. RDBMS or Worksheet re. Spreadsheet.:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.2. Faceted Navigation Example
  15. "Direct" and "InDirect" coreferences show other references (Identifiers) that relate associated with Kingsley Idehen (like saying: here are his other names or his know by this name in this other place):
    f21 Navigation Example
    Figure: 14.11.7.1. f21 Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.2. Faceted Navigation Example
  16. Click on "Settings" check "owl:sameAs" and it sets a context mode for the session (meaning: a set of rules to take place):
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  17. Go back to the "Direct Co-reference" tab:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  18. As result each link will unveil a union (combination) of all the the data associated with all Kingsley Idehen's other Identifiers (other Names in other places), i.e., they all show the same data.
  19. Go to "Facets" and then from "Entity Relations Navigation" click "New Search".
  20. Enter a free text search pattern (for example, "Camcorder" as consumer product), and click Search:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  21. Your initial query results page will display a list of literal value snippets where for each URI will be displayed a label:
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
  22. Click for ex. on the URL link ofthe first row result.
  23. The product description page should be shown and a list of Attributes and Values will be presented. An URI label of the product also will be shown: "CG-800":
    Faceted Navigation Example
    Figure: 14.11.7.1. Faceted Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.2. Faceted Navigation Example
    Faceted Navigation Example
    Figure: 14.11.7.3. Faceted Navigation Example