File Coverage

blib/lib/SemanticWeb/Schema/MedicalBusiness.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


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