Module: SchemaOrg::Mixins::MedicalTestPanel
- Includes:
- MedicalTest
- Included in:
- SchemaOrg::MedicalTestPanel
- Defined in:
- lib/schema_org/mixins/medical_test_panel.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#sub_test ⇒ Object
A component test of the panel.
-
#sub_test=(value) ⇒ Object
A component test of the panel.
Methods included from MedicalTest
#affected_by, #affected_by=, #normal_range, #normal_range=, #sign_detected, #sign_detected=, #used_to_diagnose, #used_to_diagnose=, #uses_device, #uses_device=
Methods included from MedicalEntity
#code, #code=, #funding, #funding=, #guideline, #guideline=, #legal_status, #legal_status=, #medicine_system, #medicine_system=, #recognizing_authority, #recognizing_authority=, #relevant_specialty, #relevant_specialty=, #study, #study=
Methods included from Thing
#additional_type, #additional_type=, #alternate_name, #alternate_name=, #description, #description=, #disambiguating_description, #disambiguating_description=, #identifier, #identifier=, #image, #image=, #main_entity_of_page, #main_entity_of_page=, #name, #name=, #owner, #owner=, #potential_action, #potential_action=, #same_as, #same_as=, #subject_of, #subject_of=, #url, #url=
Class Method Details
.schema_property_definitions ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/schema_org/mixins/medical_test_panel.rb', line 11 def self.schema_property_definitions { sub_test: { schema_name: "subTest", schema_url: "https://schema.org/subTest", comment_lines: ["A component test of the panel."].freeze, ranges: ["MedicalTest"].freeze, external_ranges: [].freeze, inverse_of: nil, superseded_by: nil, supersedes: nil }.freeze }.freeze end |
Instance Method Details
#sub_test ⇒ Object
A component test of the panel.
27 28 29 |
# File 'lib/schema_org/mixins/medical_test_panel.rb', line 27 def sub_test read_property(:sub_test) end |
#sub_test=(value) ⇒ Object
A component test of the panel.
32 33 34 |
# File 'lib/schema_org/mixins/medical_test_panel.rb', line 32 def sub_test=(value) write_property(:sub_test, value) end |