File Coverage

blib/lib/SemanticWeb/Schema/MedicalBusiness.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1 1     1   603 use utf8;
  1         4  
  1         23  
2              
3             package SemanticWeb::Schema::MedicalBusiness;
4              
5             # ABSTRACT: A particular physical or virtual business of an organization for medical purposes
6              
7 1     1   51 use Moo;
  1         3  
  1         9  
8              
9             extends qw/ SemanticWeb::Schema::LocalBusiness /;
10              
11              
12 1     1   312 use MooX::JSON_LD 'MedicalBusiness';
  1         3  
  1         6  
13 1     1   2048 use Ref::Util qw/ is_plain_hashref /;
  1         2  
  1         50  
14             # RECOMMEND PREREQ: Ref::Util::XS
15              
16 1     1   7 use namespace::autoclean;
  1         2  
  1         9  
17              
18             our $VERSION = 'v15.0.0';
19              
20              
21              
22              
23             1;
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             SemanticWeb::Schema::MedicalBusiness - A particular physical or virtual business of an organization for medical purposes
34              
35             =head1 VERSION
36              
37             version v15.0.0
38              
39             =head1 DESCRIPTION
40              
41             A particular physical or virtual business of an organization for medical
42             purposes. Examples of MedicalBusiness include different businesses run by
43             health professionals.
44              
45             =head1 SEE ALSO
46              
47             L<SemanticWeb::Schema::LocalBusiness>
48              
49             =head1 SOURCE
50              
51             The development version is on github at L<https://github.com/robrwo/SemanticWeb-Schema>
52             and may be cloned from L<git://github.com/robrwo/SemanticWeb-Schema.git>
53              
54             =head1 BUGS
55              
56             Please report any bugs or feature requests on the bugtracker website
57             L<https://github.com/robrwo/SemanticWeb-Schema/issues>
58              
59             When submitting a bug or request, please include a test-file or a
60             patch to an existing test-file that illustrates the bug or desired
61             feature.
62              
63             =head1 AUTHOR
64              
65             Robert Rothenberg <rrwo@cpan.org>
66              
67             =head1 COPYRIGHT AND LICENSE
68              
69             This software is Copyright (c) 2018-2022 by Robert Rothenberg.
70              
71             This is free software, licensed under:
72              
73             The Artistic License 2.0 (GPL Compatible)
74              
75             =cut