@base <https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix : <http://www.semanticweb.org/owl/owlapi/turtle#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix oh: <http://semweb.mmlab.be/ns/oh#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix geo: <http://www.w3.org/2003/01/geo/wgs84_pos#> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix airs: <> .
@prefix foaf: <http://xmlns.com/foaf/0.1> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .

dc:language
    a owl:AnnotationProperty, owl:DatatypeProperty .

dct:Location
    a owl:Class .

dct:created
    a owl:AnnotationProperty, owl:DatatypeProperty .

dct:description
    a owl:AnnotationProperty, owl:DatatypeProperty .

dct:license
    a owl:AnnotationProperty .

dct:title
    a owl:AnnotationProperty, owl:DatatypeProperty .

oh:OpeningHours
    a owl:Class .

oh:calendar
    a owl:DatatypeProperty .

rdf:type
    a owl:AnnotationProperty .

xsd:gYear
    a rdfs:Datatype .

geo:Point
    a owl:Class .

vcard:Address
    a owl:Class .

vcard:Email
    a owl:Class .

vcard:Individual
    a owl:Class .

vcard:Voice
    a owl:Class .

vcard:country-name
    a owl:AnnotationProperty, owl:DatatypeProperty .

vcard:fn
    a owl:DatatypeProperty .

vcard:hasEmail
    a owl:ObjectProperty .

vcard:hasRelated
    a owl:AnnotationProperty, owl:ObjectProperty .

vcard:hasTelephone
    a owl:AnnotationProperty, owl:ObjectProperty .

vcard:locality
    a owl:AnnotationProperty .

vcard:organization-name
    a owl:AnnotationProperty, owl:DatatypeProperty .

vcard:postal-code
    a owl:AnnotationProperty .

vcard:region
    a owl:AnnotationProperty .

vcard:street-address
    a owl:AnnotationProperty .

vcard:url
    a owl:AnnotationProperty, owl:DatatypeProperty .

org:FormalOrganization
    a owl:Class .

org:Site
    a owl:Class .

org:hasSite
    a owl:AnnotationProperty .

org:siteOf
    a owl:AnnotationProperty .

<http://xmlns.com/foaf/0.1/gender>
    a owl:DatatypeProperty .

<>
    dc:title "The Alliance of Information and Referral Services (AIRS) Linked Open Vocabulary"^^xsd:string ;
    dct:date "2015-02-15" ;
    dct:description "The AIRS Linked Open Vocabulary is a way to describe human services information and referral (I&R) concepts.  AIRS is the Alliance of Information and Referral Services (airs.org), which possesses over 1,000 member agencies primarily in the United States and Canada.  The AIRS LOV is based on the AIRS XML Schema, available at: https://airs-xml.googlecode.com/hg/tags/3.1/airs.xsd"@en ;
    dct:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
    a owl:Ontology ;
    owl:backwardCompatibleWith "" ;
    owl:priorVersion <../../v0.0.10/src/airs_vocabulary.ttl#>, "" ;
    owl:versionIRI <../../v0.0.11/src/airs_vocabulary.ttl#> .

airs:Address
    a owl:Class ;
    rdfs:comment "This represents a referenceable street location of an item, using an addressing system other than geospatial terms, often with postal system terms.  airs:hasDescription is a description of the physical location or other information pertinent to this address, and hasExplanationForNoPhysicalAddress clarifies why the address doesn't have a physical presence."@en ;
    rdfs:subClassOf vcard:Address, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:mailingAddress
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:ResourceInfo ;
        owl:onProperty airs:hasResourceInfo
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:physicalAddress
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:explanationForNoPhysicalAddess
    ] .

airs:AgeRequirement
    dct:description "Age requirements for participation, independent of gender."^^xsd:string ;
    a owl:Class ;
    rdfs:subClassOf [
        a owl:Restriction ;
        owl:allValuesFrom xsd:nonNegativeInteger ;
        owl:onProperty airs:minimumAge
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:nonNegativeInteger ;
        owl:onProperty airs:maximumAge
    ] .

airs:Agency
    a owl:Class ;
    rdfs:comment "Agencies are organizations that offer services at locations. Agencies provide services directly or they may have \"child\" agencies that offer these services. Services are offered at sites that belong to an agency. Services are represented by the combination of taxonomy codes offered at a location; this idea is called a SiteService. To recap: Agencies don't provide services directly, they provide them through sites. For property <http://www.w3.org/2006/vcard/ns:hasRelated> This represents the agency contact.  1) Contact is the person at an Agency, or Site who will interface with the public or who has responsibility for the entity, like a site manager or director."@en ;
    rdfs:label "Agence"@fr, "Agencia"@es, "Agency"@en ;
    rdfs:subClassOf org:FormalOrganization, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:recordOwner
    ], [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Email ;
        owl:onProperty vcard:hasEmail
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:LicenseAccreditation ;
        owl:onProperty airs:hasLicenseAccreditation
    ], [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Voice ;
        owl:onProperty vcard:hasTelephone
    ], [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Individual ;
        owl:onProperty vcard:hasRelated
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:ResourceInfo ;
        owl:onProperty airs:hasResourceInfo
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Service ;
        owl:onProperty airs:offersService
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:gYear ;
        owl:onProperty airs:yearIncorporated
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty vcard:organization-name
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:legalStatus
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:ServiceGroup ;
        owl:onProperty airs:hasServiceGroup
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:anyURI ;
        owl:onProperty vcard:url
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:excludedFromWebsite
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:InternetResource ;
        owl:onProperty airs:hasInternetResource
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Site ;
        owl:onProperty airs:hasSite
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:AlternateName ;
        owl:onProperty airs:hasAlternateName
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:fein
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ] .

airs:AlternateName
    a owl:Class ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:title
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ] .

airs:ApplicationProcess
    a owl:Class ;
    rdfs:comment "ApplicationProcess describes the steps taken to apply for or access the service; also known as the 'intake process'. For example, \"Call for an appointment\" or \"Walk in only\"."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ] .

airs:Document
    a owl:Class ;
    rdfs:subClassOf [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:title
    ] .

airs:GenderRequirement
    dct:description "Any gender requirements for participation.  Further restrictions upon age for a given gender are also available."^^xsd:string ;
    a owl:Class ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:nonNegativeInteger ;
        owl:onProperty airs:maximumAge
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:nonNegativeInteger ;
        owl:onProperty airs:minimumAge
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty <http://xmlns.com/foaf/0.1/gender>
    ] .

airs:InternetResource
    a owl:Class ;
    rdfs:comment "A web location that has more information related to the SiteService, Agency, etc..  For example a facebook page for the Agency, that is supplementary to the Agency's main website."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:anyURI ;
        owl:onProperty vcard:url
    ] .

airs:LanguageAvailability
    a owl:Class ;
    rdfs:comment "Languages offered, and available times, at the SiteService"@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dc:language
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom oh:OpeningHours ;
        owl:onProperty airs:hasLanguageTimeOpen
    ] .

airs:LicenseAccreditation
    a owl:Class ;
    rdfs:comment "If applicable, information about the license type (dct:title)/accreditation held by the agency and the body that licensed/accredited it."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:licensedBy
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:title
    ] .

airs:ResourceInfo
    a owl:Class ;
    rdfs:comment "For property <http://www.w3.org/2006/vcard/ns:hasRelated>, it indicates the person within each agency who has overall responsibility for updating the information about the agency, its sites and its services, etc."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Individual ;
        owl:onProperty airs:attributesResourceSpecialist
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:lastActionType
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:dateTime ;
        owl:onProperty airs:dateLastVerified
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:availableForDirectory
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:availableForReferral
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:dateTime ;
        owl:onProperty dct:created
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:dateTime ;
        owl:onProperty airs:dateOfLastAction
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:availableForResearch
    ] .

airs:Seasonal
    a owl:Class ;
    rdfs:comment "Activities that are only offered a certain time of year, such as seasonal tax preparation, summer camps and holiday meals."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom oh:OpeningHours ;
        owl:onProperty airs:hasSeasonalSchedule
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:seasonal
    ] .

airs:Service
    a owl:Class ;
    rdfs:comment "Akin to a \"Program\", as in for example \"a homeless outreach program\".  Can be delivered at many \"airs:Site[s]\", and the nexus of the two is an airs:SiteService"@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Agency ;
        owl:onProperty airs:hasAgency
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:title
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:SiteService ;
        owl:onProperty airs:hasSiteService
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:ResourceInfo ;
        owl:onProperty airs:hasResourceInfo
    ], [
        a owl:Restriction ;
        owl:onProperty airs:hasServiceGroup ;
        owl:someValuesFrom airs:ServiceGroup
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:status
    ] .

airs:ServiceArea
    a owl:Class ;
    rdfs:comment "This is the geographic area served by the SiteService. This can be anything from a single neighborhood to an entire country. Types can also be mixed; perhaps one city and 6 nearby ZIP codes. In this case the required element would be City and there would be additional ZIP codes. A national 1-800 hotline would have one Country element."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom dct:Location ;
        owl:onProperty airs:servesGeographicArea
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:censusTract
    ] .

airs:ServiceGroup
    a owl:Class ;
    rdfs:comment "Groups together multiple Services that are related somehow."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom airs:ResourceInfo ;
        owl:onProperty airs:hasResourceInfo
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:title
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Service ;
        owl:onProperty airs:offersService
    ] .

airs:Site
    a owl:Class ;
    rdfs:comment "Sites are physical locations or none physical locations (a website or hotline). Site is used for two purposes. First, it is used by Agency to provide the location of the agency in Agency.AgencyLocation (note this type of Site would never have any SiteService children). Second, sites are also the location where services are provided. This would be the Agency.Site element (note this type of Site would have SiteService children)."@en ;
    rdfs:subClassOf org:Site, [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:directions
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:anyURI ;
        owl:onProperty vcard:url
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:AlternateName ;
        owl:onProperty airs:hasAlternateName
    ], [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Voice ;
        owl:onProperty vcard:hasTelephone
    ], [
        a owl:Restriction ;
        owl:allValuesFrom oh:OpeningHours ;
        owl:onProperty airs:opensAtTimes
    ], [
        a owl:Restriction ;
        owl:allValuesFrom geo:Point ;
        owl:onProperty airs:hasSpatialLocation
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:SiteService ;
        owl:onProperty airs:hasSiteService
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:InternetResource ;
        owl:onProperty airs:hasInternetResource
    ], [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Individual ;
        owl:onProperty vcard:hasRelated
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:locatedAtCrossStreet
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:disabilitiesAccess
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:openHoursDescription
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:ResourceInfo ;
        owl:onProperty airs:hasResourceInfo
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:title
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Agency ;
        owl:onProperty airs:hasAgency
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:excludedFromWebsite
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Address ;
        owl:onProperty airs:hasAddress
    ], [
        a owl:Restriction ;
        owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
        owl:onDataRange [
            a rdfs:Datatype ;
            owl:oneOf ("active"
                "defunct"
                "inactive"
            )
        ] ;
        owl:onProperty airs:status
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:transportationServicesAccess
    ] .

airs:SiteService
    a owl:Class ;
    rdfs:comment "SiteService is the smallest unit describing a \"service\" that is offered at a Site. It can be thought of as the intersection of a Site and a Taxonomy code (or related Taxonomy codes) and meta data about what is offered. A \"Service\" however is not represented as its own element because the \"Service\" cannot exist without a location (the site)."@en ;
    rdfs:subClassOf owl:Thing, [
        a owl:Restriction ;
        owl:allValuesFrom airs:ServiceArea ;
        owl:onProperty airs:servesGeographicArea
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:ResourceInfo ;
        owl:onProperty airs:hasResourceInfo
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Seasonal ;
        owl:onProperty airs:hasSeasonalSchedule
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:paymentMethodAccepted
    ], [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Individual ;
        owl:onProperty vcard:hasRelated
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:ApplicationProcess ;
        owl:onProperty airs:hasApplicationProcess
    ], [
        a owl:Restriction ;
        owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
        owl:onDataRange [
            a rdfs:Datatype ;
            owl:oneOf ("active"
                "defunct"
                "inactive"
            )
        ] ;
        owl:onProperty airs:status
    ], [
        a owl:Restriction ;
        owl:allValuesFrom oh:OpeningHours ;
        owl:onProperty airs:opensAtTimes
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:InternetResource ;
        owl:onProperty airs:hasInternetResource
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:boolean ;
        owl:onProperty airs:notAlwaysAvailable
    ], [
        a owl:Restriction ;
        owl:allValuesFrom vcard:Voice ;
        owl:onProperty vcard:hasTelephone
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:requiredDocumentation
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:structuresFees
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:requiresGeneralEligibility
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:title
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:GenderRequirement ;
        owl:onProperty airs:hasGenderRequirement
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:openHoursDescription
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Site ;
        owl:onProperty airs:hasSite
    ], [
        a owl:Restriction ;
        owl:allValuesFrom airs:Service ;
        owl:onProperty airs:offersService
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty dct:description
    ] .

airs:Taxonomy
    a owl:Class ;
    rdfs:subClassOf [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:taxonomyTerm
    ], [
        a owl:Restriction ;
        owl:allValuesFrom xsd:string ;
        owl:onProperty airs:taxonomyCode
    ] .

airs:attributesResourceSpecialist
    a owl:ObjectProperty .

airs:availableForDirectory
    a owl:DatatypeProperty .

airs:availableForReferral
    a owl:DatatypeProperty .

airs:availableForResearch
    a owl:DatatypeProperty .

airs:censusTract
    a owl:DatatypeProperty .

airs:dateLastVerified
    a owl:DatatypeProperty .

airs:dateOfLastAction
    a owl:DatatypeProperty .

airs:describesInternetResource
    a owl:ObjectProperty ;
    rdfs:subPropertyOf airs:hasInternetResource .

airs:directions
    a owl:DatatypeProperty .

airs:disabilitiesAccess
    a owl:DatatypeProperty .

airs:excludedFromWebsite
    a owl:DatatypeProperty .

airs:explainsNoPhysicalAddress
    a owl:DatatypeProperty .

airs:explanationForNoPhysicalAddess
    a owl:DatatypeProperty .

airs:fein
    a owl:DatatypeProperty .

airs:hasAddress
    a owl:ObjectProperty .

airs:hasAgency
    a owl:ObjectProperty .

airs:hasAlternateName
    a owl:ObjectProperty ;
    rdfs:comment "These are alternate names for an object. Confidential indicates that the alternate name won't be shared with the public."@en .

airs:hasApplicationProcess
    a owl:ObjectProperty .

airs:hasAreaDefinition
    a owl:DatatypeProperty .

airs:hasDateAdded
    a owl:DatatypeProperty .

airs:hasDescription
    a owl:DatatypeProperty, owl:ObjectProperty .

airs:hasGenderRequirement
    a owl:ObjectProperty .

airs:hasIRSStatus
    a owl:DatatypeProperty .

airs:hasInternetResource
    a owl:DatatypeProperty, owl:ObjectProperty .

airs:hasLanguageTimeOpen
    a owl:ObjectProperty .

airs:hasLicenseAccreditation
    a owl:ObjectProperty .

airs:hasLicenseType
    a owl:DatatypeProperty, owl:ObjectProperty .

airs:hasProgramName
    a owl:DatatypeProperty .

airs:hasReasonAddressWithheld
    a owl:DatatypeProperty ;
    rdfs:comment "Use this if the address can not be shared due to security concerns, such as an assaulted women's shelter. While it is possible to code an address as Confidential=\"true\", in this case the address is so confidential that it won't be shared at all."@en .

airs:hasResourceInfo
    a owl:AsymmetricProperty, owl:ObjectProperty .

airs:hasSeasonalSchedule
    a owl:ObjectProperty .

airs:hasServiceGroup
    a owl:AsymmetricProperty, owl:ObjectProperty .

airs:hasServiceGroupName
    a owl:DatatypeProperty .

airs:hasSite
    a owl:AsymmetricProperty, owl:ObjectProperty .

airs:hasSiteService
    a owl:ObjectProperty .

airs:hasSpatialLocation
    a owl:DatatypeProperty, owl:ObjectProperty .

airs:hasTaxonomy
    a owl:ObjectProperty .

airs:hasTelephone
    a owl:DatatypeProperty .

airs:isConfidential
    a owl:DatatypeProperty .

airs:isLocatedInCity
    a owl:DatatypeProperty, owl:ObjectProperty ;
    rdfs:subPropertyOf airs:servesGeographicArea .

airs:isLocatedInCounty
    a owl:DatatypeProperty, owl:ObjectProperty ;
    rdfs:subPropertyOf airs:servesGeographicArea .

airs:isLocatedInPostalCode
    a owl:DatatypeProperty, owl:ObjectProperty ;
    rdfs:subPropertyOf airs:servesGeographicArea .

airs:isLocatedInState
    a owl:DatatypeProperty, owl:ObjectProperty ;
    rdfs:subPropertyOf airs:servesGeographicArea .

airs:isLocatedWithinCountry
    a owl:DatatypeProperty, owl:ObjectProperty ;
    rdfs:subPropertyOf airs:servesGeographicArea .

airs:lastActionType
    a owl:DatatypeProperty .

airs:legalStatus
    a owl:DatatypeProperty .

airs:licensedBy
    a owl:DatatypeProperty .

airs:locatedAtCrossStreet
    a owl:DatatypeProperty .

airs:mailingAddress
    a owl:DatatypeProperty .

airs:maximumAge
    a owl:DatatypeProperty .

airs:minimumAge
    a owl:DatatypeProperty .

airs:notAlwaysAvailable
    a owl:DatatypeProperty .

airs:offersService
    a owl:ObjectProperty .

airs:openHoursDescription
    a owl:DatatypeProperty .

airs:opensAtTimes
    a owl:ObjectProperty .

airs:paymentMethodAccepted
    a owl:DatatypeProperty .

airs:physicalAddress
    a owl:DatatypeProperty .

airs:publicAccessToTransportation
    a owl:DatatypeProperty .

airs:recordOwner
    a owl:DatatypeProperty .

airs:requiredDocumentation
    dct:description "A description of documents that are required in order to access services offered at a SiteService."^^xsd:string ;
    a owl:DatatypeProperty .

airs:requiresDocument
    a owl:ObjectProperty .

airs:requiresFamily
    a owl:DatatypeProperty .

airs:requiresGender
    a owl:ObjectProperty ;
    rdfs:comment "Information about any age or gender related requirements or inclusions for a particular service at a particular location."@en .

airs:requiresGeneralEligibility
    a owl:DatatypeProperty ;
    rdfs:comment "General eligibility is a text area to list any eligibility requirements for participation or services. This can include any exclusions, both negative and positive requirements (i.e. must have/ can't have are all requirements)"@en .

airs:requiresIncome
    a owl:DatatypeProperty .

airs:requiresMaximumAge
    a owl:ObjectProperty ;
    rdfs:subPropertyOf airs:requiresGender .

airs:requiresMinimumAge
    a owl:ObjectProperty ;
    rdfs:subPropertyOf airs:requiresGender .

airs:requiresResidency
    a owl:DatatypeProperty .

airs:seasonal
    a owl:DatatypeProperty .

airs:servesGeographicArea
    a owl:DatatypeProperty, owl:ObjectProperty .

airs:status
    a owl:DatatypeProperty .

airs:structuresFees
    a owl:DatatypeProperty .

airs:taxonomyCode
    a owl:DatatypeProperty .

airs:taxonomyTerm
    a owl:DatatypeProperty .

airs:transportationServicesAccess
    a owl:DatatypeProperty ;
    rdfs:subPropertyOf owl:topDataProperty .

airs:yearIncorporated
    a owl:DatatypeProperty .

