Billed date leaf node


URI

https://w3id.org/omop/ontology/billed_date

Label

Billed date

Description

For Cost: The date a bill was generated for a service or encounter

Usage

DOMAINPROPERTYRANGE
Cost Billed date date

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:billed_date a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Billed date"^^xsd:string ;
    rdfs:comment "For Cost: The date a bill was generated for a service or encounter"@en ;
    rdfs:domain omop:Cost ;
    rdfs:range xsd:date ;
    omop:omop_cdm_name "cost.billed_date#318 AS date"^^xsd:string .