Focal Point Linked Data Service Example

The URI of the service resource on my machine is http://ryman.torolab.ibm.com:6080/fp/resources/

XML

Here is an example service resource in XML format.

Some content has been deleted to keep the listing small.

<?xml version="1.0" encoding="utf-8"?>
<fp:service xmlns:fp="http://schema.ibm.com/focalpoint/resources"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://schema.ibm.com/focalpoint/resources http://ryman.torolab.ibm.com:6080/fp/dtd/service.xsd">
   <fp:workspace>
      <fp:title>Estimation and Measurement</fp:title>
      <fp:alias>f9847009-faa6-4723-bf4d-d7609724797c</fp:alias>
      <fp:modules>
         <fp:collection addable="true">
            <fp:title>Elements</fp:title>
            <fp:alias>f009bef3-a6eb-4eaa-9ef6-c0f496e11418</fp:alias>
            <fp:indexList
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/"></fp:indexList>
            <fp:indexTree
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/?tree=true"></fp:indexTree>
            <fp:fullList
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/?includeAttributes=true"></fp:fullList>
            <fp:fullTree
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/?tree=true&amp;includeAttributes=true"></fp:fullTree>
         </fp:collection>
         <fp:collection addable="true">
            <fp:title>Projects</fp:title>
            <fp:alias>62fc8864-b235-4f29-93a2-d636b28932a5</fp:alias>
            <fp:indexList
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/"></fp:indexList>
            <fp:indexTree
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?tree=true"></fp:indexTree>
            <fp:fullList
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?includeAttributes=true"></fp:fullList>
            <fp:fullTree
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?tree=true&amp;includeAttributes=true"></fp:fullTree>
         </fp:collection>
      </fp:modules>
      <fp:addViews></fp:addViews>
      <fp:displayViews>
         <fp:collection addable="false">
            <fp:title>Closed Projects</fp:title>
            <fp:alias>0a51928d-0db6-47f1-a0d2-a641b492a8d8</fp:alias>
            <fp:indexList
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20"></fp:indexList>
            <fp:indexTree
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20&amp;tree=true"></fp:indexTree>
            <fp:fullList
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20&amp;includeAttributes=true"></fp:fullList>
            <fp:fullTree
               href="http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20&amp;tree=true&amp;includeAttributes=true"></fp:fullTree>
         </fp:collection>
      </fp:displayViews>
   </fp:workspace>
</fp:service>

Turtle

Here is the RDF Turtle representation.

@prefix fps: <http://schema.ibm.com/focalpoint/resources#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

<http://ryman.torolab.ibm.com:6080/fp/resources/> a fps:Service ;
   fps:memberWorkspace <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3> .
   
<http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3> a fps:Workspace ;
   dcterms:title "Estimation and Measurement" ;
   dcterms:identifier "f9847009-faa6-4723-bf4d-d7609724797c" ;
   fps:memberModule
      <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1> ,
      <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13> ;
   fps:memberView
      <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/2/modules/13/views/20> .
      
<http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1> a fps:Module ;
   dcterms:title "Elements" ;
   dcterms:identifier "f009bef3-a6eb-4eaa-9ef6-c0f496e11418" ;
   fps:indexList <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/> ;
   fps:indexTree <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/?tree=true> ;
   fps:fullList <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/?includeAttributes=true> ;
   fps:fullTree <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/1/elements/?tree=true&includeAttributes=true> .

<http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13> a fps:Module ;
   dcterms:title "Projects" ;
   dcterms:identifier "62fc8864-b235-4f29-93a2-d636b28932a5" ;
   fps:indexList <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/> ;
   fps:indexTree <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?tree=true> ;
   fps:fullList <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?includeAttributes=true> ;
   fps:fullTree <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?tree=true&includeAttributes=true> .

<http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/2/modules/13/views/20> a fps:View ;
   dcterms:title "Closed Projects" ;
   dcterms:identifier "0a51928d-0db6-47f1-a0d2-a641b492a8d8" ;
   fps:onModule <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13> ;
   fps:isAddable false ;
   fps:indexList <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20> ;
   fps:indexTree <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20&tree=true> ;
   fps:fullList <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20&includeAttributes=true> ;
   fps:fullTree <http://ryman.torolab.ibm.com:6080/fp/resources/workspaces/3/modules/13/elements/?view=20&tree=true&includeAttributes=true> .   

This topic: LinkedData > FocalPointVocabulary > FPLinkedData > FPLinkedDataServiceExample
History: r3 - 2014-02-21 - 20:56:52 - Main.ryman
 
This site is powered by the TWiki collaboration platformCopyright © by IBM and non-IBM contributing authors. All material on this collaboration platform is the property of the contributing authors.
Contributions are governed by our Terms of Use
Ideas, requests, problems regarding TWiki? Send feedback
Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.