Sha256: b85cb4fea95f6b2a9330c0011d7836c1cacae636e3965646097c97fdad49cc71
Contents?: true
Size: 783 Bytes
Versions: 1
Compression:
Stored size: 783 Bytes
Contents
require 'mida_vocabulary/vocabulary' module Mida module SchemaOrg autoload :MedicalTest, 'mida_vocabulary/vocabularies/schemaorg/medicaltest' autoload :MedicalEntity, 'mida_vocabulary/vocabularies/schemaorg/medicalentity' autoload :Thing, 'mida_vocabulary/vocabularies/schemaorg/thing' # A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist. class PathologyTest < Mida::Vocabulary itemtype %r{http://schema.org/PathologyTest}i include_vocabulary Mida::SchemaOrg::MedicalTest include_vocabulary Mida::SchemaOrg::MedicalEntity include_vocabulary Mida::SchemaOrg::Thing # The type of tissue sample required for the test. has_many 'tissueSample' end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mida_vocabulary-0.2.2 | lib/mida_vocabulary/vocabularies/schemaorg/pathologytest.rb |