@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/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<#ExtendedError>
      a               oslc:ResourceShape ;
        oslc:describes  oslc:ExtendedError ;
        oslc:property   [ a                        oslc:Property ;
                          oslc:name                "moreInfo" ;
                          oslc:occurs              oslc:Zero-or-one ;
                          oslc:propertyDefinition  oslc:moreInfo ;
                          dcterms:description "A resource giving more information on the error SHOULD be of an HTML content-type."^^rdf:XMLLiteral ;
                          oslc:readOnly            true ;
                          oslc:valueType           oslc:Resource ;
                          oslc:representation      oslc:Reference
                        ] ;
        oslc:property   [ a                        oslc:Property ;
                          oslc:name                "rel" ;
                          oslc:occurs              oslc:Zero-or-one ;
                          oslc:propertyDefinition  oslc:rel ;
                          dcterms:description "If present and set to 'alternate' then indicates that work-around is provided, behavior for other values is undefined."^^rdf:XMLLiteral ;
                          oslc:readOnly            true ;
                          oslc:valueType           xsd:string
                        ] ;
        oslc:property   [ a                        oslc:Property ;
                          oslc:name                "hintWidth" ;
                          oslc:occurs              oslc:Zero-or-one ;
                          oslc:propertyDefinition  oslc:hintWidth ;
                          dcterms:description "Values MUST be expressed in relative length units as defined in the W3C Cascading Style Sheets Specification (CSS 2.1) Em and ex units are interpreted relative to the default system font (at 100% size)."^^rdf:XMLLiteral ;
                          oslc:readOnly            true ;
                          oslc:valueType           xsd:string
                        ] ;
        oslc:property   [ a                        oslc:Property ;
                          oslc:name                "hintHeight" ;
                          oslc:occurs              oslc:Zero-or-one ;
                          oslc:propertyDefinition  oslc:hintHeight ;
                          dcterms:description "Values MUST be expressed in relative length units as defined in the W3C Cascading Style Sheets Specification (CSS 2.1) Em and ex units are interpreted relative to the default system font (at 100% size)."^^rdf:XMLLiteral ;
                          oslc:readOnly            true ;
                          oslc:valueType           xsd:string
                        ] ;
        dcterms:title   "OSLC Core ExtendedError Shape" .