Module: SchemaOrg::Mixins::MedicalSign
- Includes:
- MedicalSignOrSymptom
- Included in:
- SchemaOrg::MedicalSign, VitalSign
- Defined in:
- lib/schema_org/mixins/medical_sign.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#identifying_exam ⇒ Object
A physical examination that can identify this sign.
-
#identifying_exam=(value) ⇒ Object
A physical examination that can identify this sign.
-
#identifying_test ⇒ Object
A diagnostic test that can identify this sign.
-
#identifying_test=(value) ⇒ Object
A diagnostic test that can identify this sign.
Methods included from MedicalSignOrSymptom
#possible_treatment, #possible_treatment=
Methods included from MedicalCondition
#associated_anatomy, #associated_anatomy=, #cause, #cause=, #differential_diagnosis, #differential_diagnosis=, #drug, #drug=, #epidemiology, #epidemiology=, #expected_prognosis, #expected_prognosis=, #natural_progression, #natural_progression=, #pathophysiology, #pathophysiology=, #possible_complication, #possible_complication=, #possible_treatment, #possible_treatment=, #primary_prevention, #primary_prevention=, #risk_factor, #risk_factor=, #secondary_prevention, #secondary_prevention=, #sign_or_symptom, #sign_or_symptom=, #stage, #stage=, #status, #status=, #typical_test, #typical_test=
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 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/schema_org/mixins/medical_sign.rb', line 11 def self.schema_property_definitions { identifying_exam: { schema_name: "identifyingExam", schema_url: "https://schema.org/identifyingExam", comment_lines: ["A physical examination that can identify this sign."].freeze, ranges: ["PhysicalExam"].freeze, external_ranges: [].freeze, inverse_of: nil, superseded_by: nil, supersedes: nil }.freeze, identifying_test: { schema_name: "identifyingTest", schema_url: "https://schema.org/identifyingTest", comment_lines: ["A diagnostic test that can identify this sign."].freeze, ranges: ["MedicalTest"].freeze, external_ranges: [].freeze, inverse_of: nil, superseded_by: nil, supersedes: nil }.freeze }.freeze end |
Instance Method Details
#identifying_exam ⇒ Object
A physical examination that can identify this sign.
37 38 39 |
# File 'lib/schema_org/mixins/medical_sign.rb', line 37 def read_property(:identifying_exam) end |
#identifying_exam=(value) ⇒ Object
A physical examination that can identify this sign.
42 43 44 |
# File 'lib/schema_org/mixins/medical_sign.rb', line 42 def (value) write_property(:identifying_exam, value) end |
#identifying_test ⇒ Object
A diagnostic test that can identify this sign.
47 48 49 |
# File 'lib/schema_org/mixins/medical_sign.rb', line 47 def read_property(:identifying_test) end |
#identifying_test=(value) ⇒ Object
A diagnostic test that can identify this sign.
52 53 54 |
# File 'lib/schema_org/mixins/medical_sign.rb', line 52 def (value) write_property(:identifying_test, value) end |