@prefix foaf:  <http://xmlns.com/foaf/0.1/> .
@prefix oslc:  <http://open-services.net/ns/core#> .
@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .

@base <http://open-services.net/ns/core/shapes/3.0/Discussion-shape.ttl> .

<#Discussion>
        a               oslc:ResourceShape ;
        oslc:describes  oslc:Discussion ;
        oslc:property   [ a                        oslc:Property ;
                          oslc:name                "comment" ;
                          oslc:occurs              oslc:Zero-or-many ;
                          oslc:propertyDefinition  oslc:comment ;
                          dcterms:description "Comment about resource."^^rdf:XMLLiteral ;
                          oslc:range               oslc:Comment ;
                          oslc:representation      oslc:Either ;
                          oslc:valueType           oslc:AnyResource ;
                          oslc:readOnly            false
                        ] ;
        oslc:property   [ a                        oslc:Property ;
                          oslc:name                "discussionAbout" ;
                          oslc:occurs              oslc:Exactly-one ;
                          oslc:propertyDefinition  oslc:discussionAbout ;
                          dcterms:description "Reference to associated resource."^^rdf:XMLLiteral ;
                          oslc:valueType           oslc:Resource ;
                          oslc:representation      oslc:Reference ;
                          oslc:readOnly            false
                        ] ;
        dcterms:title   "OSLC Core Discussion Shape" .