schema:conditionsOfAccess leaf node


URI

http://schema.org/conditionsOfAccess

Label

conditionsOfAccess

Description

Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\\n\\nFor example \"Available by appointment from the Reading Room\" or \"Accessible only from logged-in accounts \".

Usage

DOMAINPROPERTYRANGE
schema:CreativeWork schema:conditionsOfAccess xsd:string

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema:conditionsOfAccess a rdf:Property ;
    rdfs:label "conditionsOfAccess" ;
    schema:domainIncludes schema:CreativeWork ;
    schema:rangeIncludes xsd:string ;
    rdfs:comment "Conditions that affect the availability of, or method(s) of access to, an item. Typically used for real world items such as an [[ArchiveComponent]] held by an [[ArchiveOrganization]]. This property is not suitable for use as a general Web access control mechanism. It is expressed only in natural language.\\\\n\\\\nFor example \\\"Available by appointment from the Reading Room\\\" or \\\"Accessible only from logged-in accounts \\\"." .