SMART Data Model
This is highly preliminary, not a commitment or final version of any particular API or data model. This is purely for internal collaboration and preview purposes.
Help us improve! You can correct errors or add to this page by clicking here to edit this page on Github.Changelog
Click here for the list of Changes to the API and Payloads for the latest release.
RDF Overview
SMART API calls return data in the form of RDF graphs. Within these graphs, top-level SMART data objects have fully dereferenceable URIs. For instance, let's consider a SMART-enabled EMR hosted with its API base at http://sample_smart_emr.com/smart-app/. An individual medication in this EMR might be retrievable via:
GET http://sample_smart_emr.com/smart-app/records/123456/medications/664373).
When you issue a GET request for a top-level SMART object like a medication, you'll receive a graph containing:
- The object itself
- All properties linking it to "core data" elements (such as a medication's
drugName, which is aCodedValuenode) - All properties linking it to other top-level SMART objects
- All "core data" elements belonging to the elements in (3)
For instance, when you GET a medication, you'll get all the information about
that medication and any fulfillments that belong to it! Likewise, when you GET
a fulfillment, you'll get all the information about that fulfillment and the
medication to which it belongs.
Another way to say this is: when you make an API call for data, the graph you receive goes one top-level SMART element deep.
Important note: RDF/XML Serializations are not unique!
It's important to understand that SMART API calls return RDF graphs RDF/XML
— and for a given graph, there are multiple possible serializations. We
don't make guarantees about how a graph will be serialized, beyond saying that
it's valid RDF/XML. So to consume the SMART API, you should parse the RDF/XML
payloads as RDF/XML — for example, don't try to query them directly with
xpath!
To give a concrete example, a medication might be serialized as:
<sp:Medication>
... { additional properties here }....
</sp:Medication>
Or you could see the equivalent:
<rdf:Description>
<rdf:type rdf:resource="http://smartplatforms.org/terms#Medication"/>
... { additional properties here }....
</rdf:Description>
Namespaces
A common set of namespace prefixes is used for the examples below. These are:
| dcterms | http://purl.org/dc/terms/ | Dublin core terms |
| foaf | http://xmlns.com/foaf/0.1/ | Friend of a friend |
| rdf | http://www.w3.org/1999/02/22-rdf-syntax-ns# | Resource description framework |
| sp | http://smartplatforms.org/terms# | Smart platforms root namespace |
| v | http://www.w3.org/2006/vcard/ns# | vCard namespace |
Naming Conventions in the SMART Ontology
We use the prefix sp to designate the http://smartplatforms.org/terms
namespace. Within this namespace, we use a simple convention to differentiate
between classes and predicates:
Class names are designated by
CamelCasewith a capitalized first character. Examples:sp:Medicationandsp:LabResult.Predicate names are designated by
camelCasewith a lower-case first character. Examples:sp:medicationorsp:valueAndUnit.
You may wonder why classes and predicates tend to have similar names. For
example, we define a class sp:Medication as well as a predicate sp:medication.
Here's why: a predicate like sp:medication is used to indicate that a clinical
statement is associated with a medication; a class like sp:Medication is used to
indicate that a clinical statement is a medication. For example, each
sp:Fulfillment statement is associated with a sp:Medication statement via the
predicate sp:medication. This makes sense when we consider a few RDF triples
that expresses the basic pattern, associating a fulfillment with its medication
via the sp:medication predicate
_:f123 rdf:type sp:Fulfillment. # declares a Fulfillment statement
_:m456 rdf:type sp:Medication. # declares a Medication statement
_:f123 sp:medication _:m456. # links the Fulfillment to its Medication
Clinical Statement Types
Allergy
Allergy is a subtype of and inherits properties from:
SMART Statement
SMART provides structure for representing alleriges accoring to well-specified standard vocabularies. A patient with no known allergies produces an AllergyExclusion providing further details (see below). Otherwise, each allergy has a category (drug, food, etc.), a severity, a reaction, and a substance or class of substances. Since we want these allergies to work as inputs to automated computations, we require specific coding systems to represent substances and classes of substances.
A drug allergy to a particular drug (e.g. cephalexin) must define a "substance" field with an ingredient-type RxNorm code (tty="IN"). (This is to avoid overly-specific statements like "the patient is allergic to a 500mg cephalexin oral tablet"!)
A drug allergy to an entire class of drugs (e.g. sulfonamides) must define a "class" field with an NDFRT code for the drug class.
A food or environmental allergy must define a "substance" field with a UNII code.
For instance, below are two allergies: first, an allergy to the entire class of sulfonamides (note the sp:class predicate and the NDFRT code provided); then, an allergy to a single cephalosporin drug, cephalexin (note the sp:substance predicate and the RxNorm Ingredient CUI provided):
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:Allergy rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:startDate>2007-06-12</sp:startDate>
<sp:drugClassAllergen>
<sp:CodedValue>
<dcterms:title>Sulfonamide Antibacterial</dcterms:title>
<sp:code>
<spcode:NDFRT rdf:about="http://purl.bioontology.org/ontology/NDFRT/N0000175503">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Sulfonamide Antibacterial</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/NDFRT/</sp:system>
<dcterms:identifier>N0000175503</dcterms:identifier>
</spcode:NDFRT>
</sp:code>
</sp:CodedValue>
</sp:drugClassAllergen>
<sp:severity>
<sp:CodedValue>
<dcterms:title>Severe</dcterms:title>
<sp:code>
<spcode:AllergySeverity rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/24484000">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Severe</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>24484000</dcterms:identifier>
</spcode:AllergySeverity>
</sp:code>
</sp:CodedValue>
</sp:severity>
<sp:allergicReaction>
<sp:CodedValue>
<dcterms:title>Anaphylaxis</dcterms:title>
<sp:code>
<spcode:SNOMED rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/39579001">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Anaphylaxis</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>39579001</dcterms:identifier>
</spcode:SNOMED>
</sp:code>
</sp:CodedValue>
</sp:allergicReaction>
<sp:category>
<sp:CodedValue>
<dcterms:title>Drug allergy</dcterms:title>
<sp:code>
<spcode:AllergyCategory rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/416098002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Drug allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>416098002</dcterms:identifier>
</spcode:AllergyCategory>
</sp:code>
</sp:CodedValue>
</sp:category>
</sp:Allergy>
<sp:Allergy>
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:startDate>2007-06-12</sp:startDate>
<sp:drugAllergen>
<sp:CodedValue>
<dcterms:title>Cephalexin</dcterms:title>
<sp:code>
<spcode:RxNorm_Ingredient rdf:about="http://purl.bioontology.org/ontology/RXNORM/2231">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Cephalexin</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/RXNORM/</sp:system>
<dcterms:identifier>2231</dcterms:identifier>
</spcode:RxNorm_Ingredient>
</sp:code>
</sp:CodedValue>
</sp:drugAllergen>
<sp:severity>
<sp:CodedValue>
<dcterms:title>Severe</dcterms:title>
<sp:code>
<spcode:AllergySeverity rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/24484000">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Severe</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>24484000</dcterms:identifier>
</spcode:AllergySeverity>
</sp:code>
</sp:CodedValue>
</sp:severity>
<sp:allergicReaction>
<sp:CodedValue>
<dcterms:title>Anaphylaxis</dcterms:title>
<sp:code>
<spcode:SNOMED rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/39579001">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Anaphylaxis</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>39579001</dcterms:identifier>
</spcode:SNOMED>
</sp:code>
</sp:CodedValue>
</sp:allergicReaction>
<sp:category>
<sp:CodedValue>
<dcterms:title>Drug allergy</dcterms:title>
<sp:code>
<spcode:AllergyCategory rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/416098002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Drug allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>416098002</dcterms:identifier>
</spcode:AllergyCategory>
</sp:code>
</sp:CodedValue>
</sp:category>
</sp:Allergy>
</rdf:RDF>
_:Ncfbc9cb1fa704e699d82fb7054afb0d5 <http://purl.org/dc/terms/title> "Sulfonamide Antibacterial" .
_:Ncfbc9cb1fa704e699d82fb7054afb0d5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Ncfbc9cb1fa704e699d82fb7054afb0d5 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/NDFRT/N0000175503> .
_:Ncce3e9d043ed492bb0270eb11c741ded <http://smartplatforms.org/terms#drugAllergen> _:Ne6f750ba163549f5aaed1d268c2ba43c .
_:Ncce3e9d043ed492bb0270eb11c741ded <http://smartplatforms.org/terms#startDate> "2007-06-12" .
_:Ncce3e9d043ed492bb0270eb11c741ded <http://smartplatforms.org/terms#severity> _:Ne152a5bd89944d6d92703678b26f678e .
_:Ncce3e9d043ed492bb0270eb11c741ded <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
_:Ncce3e9d043ed492bb0270eb11c741ded <http://smartplatforms.org/terms#category> _:N6ba702b82541451fa8c7dce813223c96 .
_:Ncce3e9d043ed492bb0270eb11c741ded <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Allergy> .
_:Ncce3e9d043ed492bb0270eb11c741ded <http://smartplatforms.org/terms#allergicReaction> _:Nfb3ea9941dbd431c9992c4a4187a249d .
<http://purl.bioontology.org/ontology/SNOMEDCT/416098002> <http://purl.org/dc/terms/title> "Drug allergy" .
<http://purl.bioontology.org/ontology/SNOMEDCT/416098002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/416098002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/AllergyCategory> .
<http://purl.bioontology.org/ontology/SNOMEDCT/416098002> <http://purl.org/dc/terms/identifier> "416098002" .
<http://purl.bioontology.org/ontology/SNOMEDCT/416098002> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
_:N4c9f380ecef84e9a941f4692cb5c904d <http://purl.org/dc/terms/title> "Drug allergy" .
_:N4c9f380ecef84e9a941f4692cb5c904d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N4c9f380ecef84e9a941f4692cb5c904d <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/416098002> .
<http://purl.bioontology.org/ontology/NDFRT/N0000175503> <http://purl.org/dc/terms/title> "Sulfonamide Antibacterial" .
<http://purl.bioontology.org/ontology/NDFRT/N0000175503> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/NDFRT/N0000175503> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/NDFRT> .
<http://purl.bioontology.org/ontology/NDFRT/N0000175503> <http://purl.org/dc/terms/identifier> "N0000175503" .
<http://purl.bioontology.org/ontology/NDFRT/N0000175503> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/NDFRT/" .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> <http://smartplatforms.org/terms#drugClassAllergen> _:Ncfbc9cb1fa704e699d82fb7054afb0d5 .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> <http://smartplatforms.org/terms#startDate> "2007-06-12" .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> <http://smartplatforms.org/terms#severity> _:N5703ba2d69d548c3807e4f34a026b114 .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> <http://smartplatforms.org/terms#category> _:N4c9f380ecef84e9a941f4692cb5c904d .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Allergy> .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> <http://smartplatforms.org/terms#allergicReaction> _:N3740ef91a4714dcabdfb4357b9f4fe75 .
_:N3740ef91a4714dcabdfb4357b9f4fe75 <http://purl.org/dc/terms/title> "Anaphylaxis" .
_:N3740ef91a4714dcabdfb4357b9f4fe75 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N3740ef91a4714dcabdfb4357b9f4fe75 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/39579001> .
<http://purl.bioontology.org/ontology/SNOMEDCT/39579001> <http://purl.org/dc/terms/title> "Anaphylaxis" .
<http://purl.bioontology.org/ontology/SNOMEDCT/39579001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/39579001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/SNOMED> .
<http://purl.bioontology.org/ontology/SNOMEDCT/39579001> <http://purl.org/dc/terms/identifier> "39579001" .
<http://purl.bioontology.org/ontology/SNOMEDCT/39579001> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
_:Ne6f750ba163549f5aaed1d268c2ba43c <http://purl.org/dc/terms/title> "Cephalexin" .
_:Ne6f750ba163549f5aaed1d268c2ba43c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Ne6f750ba163549f5aaed1d268c2ba43c <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/RXNORM/2231> .
<http://purl.bioontology.org/ontology/SNOMEDCT/24484000> <http://purl.org/dc/terms/title> "Severe" .
<http://purl.bioontology.org/ontology/SNOMEDCT/24484000> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/24484000> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/AllergySeverity> .
<http://purl.bioontology.org/ontology/SNOMEDCT/24484000> <http://purl.org/dc/terms/identifier> "24484000" .
<http://purl.bioontology.org/ontology/SNOMEDCT/24484000> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/RXNORM/2231> <http://purl.org/dc/terms/title> "Cephalexin" .
<http://purl.bioontology.org/ontology/RXNORM/2231> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/RXNORM/2231> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/RxNorm_Ingredient> .
<http://purl.bioontology.org/ontology/RXNORM/2231> <http://purl.org/dc/terms/identifier> "2231" .
<http://purl.bioontology.org/ontology/RXNORM/2231> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/RXNORM/" .
_:Ne152a5bd89944d6d92703678b26f678e <http://purl.org/dc/terms/title> "Severe" .
_:Ne152a5bd89944d6d92703678b26f678e <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Ne152a5bd89944d6d92703678b26f678e <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/24484000> .
_:N5703ba2d69d548c3807e4f34a026b114 <http://purl.org/dc/terms/title> "Severe" .
_:N5703ba2d69d548c3807e4f34a026b114 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N5703ba2d69d548c3807e4f34a026b114 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/24484000> .
_:N6ba702b82541451fa8c7dce813223c96 <http://purl.org/dc/terms/title> "Drug allergy" .
_:N6ba702b82541451fa8c7dce813223c96 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N6ba702b82541451fa8c7dce813223c96 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/416098002> .
_:Nfb3ea9941dbd431c9992c4a4187a249d <http://purl.org/dc/terms/title> "Anaphylaxis" .
_:Nfb3ea9941dbd431c9992c4a4187a249d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nfb3ea9941dbd431c9992c4a4187a249d <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/39579001> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252> a sp:Allergy;
sp:allergicReaction [ a sp:CodedValue;
dcterms:title "Anaphylaxis";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/39579001> ];
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:category [ a sp:CodedValue;
dcterms:title "Drug allergy";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/416098002> ];
sp:drugClassAllergen [ a sp:CodedValue;
dcterms:title "Sulfonamide Antibacterial";
sp:code <http://purl.bioontology.org/ontology/NDFRT/N0000175503> ];
sp:severity [ a sp:CodedValue;
dcterms:title "Severe";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/24484000> ];
sp:startDate "2007-06-12" .
<http://purl.bioontology.org/ontology/NDFRT/N0000175503> a sp:Code,
spcode:NDFRT;
dcterms:identifier "N0000175503";
dcterms:title "Sulfonamide Antibacterial";
sp:system "http://purl.bioontology.org/ontology/NDFRT/" .
<http://purl.bioontology.org/ontology/RXNORM/2231> a sp:Code,
spcode:RxNorm_Ingredient;
dcterms:identifier "2231";
dcterms:title "Cephalexin";
sp:system "http://purl.bioontology.org/ontology/RXNORM/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/24484000> a sp:Code,
spcode:AllergySeverity;
dcterms:identifier "24484000";
dcterms:title "Severe";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/39579001> a sp:Code,
spcode:SNOMED;
dcterms:identifier "39579001";
dcterms:title "Anaphylaxis";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/416098002> a sp:Code,
spcode:AllergyCategory;
dcterms:identifier "416098002";
dcterms:title "Drug allergy";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
[] a sp:Allergy;
sp:allergicReaction [ a sp:CodedValue;
dcterms:title "Anaphylaxis";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/39579001> ];
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:category [ a sp:CodedValue;
dcterms:title "Drug allergy";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/416098002> ];
sp:drugAllergen [ a sp:CodedValue;
dcterms:title "Cephalexin";
sp:code <http://purl.bioontology.org/ontology/RXNORM/2231> ];
sp:severity [ a sp:CodedValue;
dcterms:title "Severe";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/24484000> ];
sp:startDate "2007-06-12" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/416098002",
"@type": [
"Code",
"spcode__AllergyCategory"
],
"dcterms__identifier": "416098002",
"dcterms__title": "Drug allergy",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/allergies/873252",
"@type": "Allergy",
"allergicReaction": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/39579001"
},
"dcterms__title": "Anaphylaxis"
},
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"category": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/416098002"
},
"dcterms__title": "Drug allergy"
},
"drugClassAllergen": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/NDFRT/N0000175503"
},
"dcterms__title": "Sulfonamide Antibacterial"
},
"severity": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/24484000"
},
"dcterms__title": "Severe"
},
"startDate": "2007-06-12"
},
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/39579001",
"@type": [
"Code",
"spcode__SNOMED"
],
"dcterms__identifier": "39579001",
"dcterms__title": "Anaphylaxis",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://purl.bioontology.org/ontology/NDFRT/N0000175503",
"@type": [
"Code",
"spcode__NDFRT"
],
"dcterms__identifier": "N0000175503",
"dcterms__title": "Sulfonamide Antibacterial",
"system": "http://purl.bioontology.org/ontology/NDFRT/"
},
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/24484000",
"@type": [
"Code",
"spcode__AllergySeverity"
],
"dcterms__identifier": "24484000",
"dcterms__title": "Severe",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@type": "Allergy",
"allergicReaction": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/39579001"
},
"dcterms__title": "Anaphylaxis"
},
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"category": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/416098002"
},
"dcterms__title": "Drug allergy"
},
"drugAllergen": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/RXNORM/2231"
},
"dcterms__title": "Cephalexin"
},
"severity": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/24484000"
},
"dcterms__title": "Severe"
},
"startDate": "2007-06-12"
},
{
"@id": "http://purl.bioontology.org/ontology/RXNORM/2231",
"@type": [
"Code",
"spcode__RxNorm_Ingredient"
],
"dcterms__identifier": "2231",
"dcterms__title": "Cephalexin",
"system": "http://purl.bioontology.org/ontology/RXNORM/"
}
]
}
|
allergicReaction
Required: exactly 1 |
http://smartplatforms.org/terms#allergicReaction
Coded Value where code comes from SNOMED Reaction associated with an allergy. Code drawn from SNOMED-CT. |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
category
Required: exactly 1 |
http://smartplatforms.org/terms#category
Coded Value where code comes from AllergyCategory Category of an allergy (food, drug, other substance). |
|
drugAllergen
Optional: 0 or 1 |
http://smartplatforms.org/terms#drugAllergen
Coded Value where code comes from RxNorm_Ingredient For drug allergies, an RxNorm Concept at the ingredient level (TTY='in'). |
|
drugClassAllergen
Optional: 0 or 1 |
http://smartplatforms.org/terms#drugClassAllergen
Coded Value where code comes from NDFRT Class of allergen, e.g. Sulfonamides or ACE inhibitors. RDF Code node with code drawn from NDF-RT: http://purl.bioontology.org/ontology/NDFRT/{NDFRT_ID} |
|
endDate
Optional: 0 or 1 |
http://smartplatforms.org/terms#endDate
Date on which allergy ended as an ISO-8601 string. xsd:dateTime |
|
otherAllergen
Optional: 0 or 1 |
http://smartplatforms.org/terms#otherAllergen
Coded Value where code comes from UNII Substance acting as a food, environmental, or other allergen. For environmental and food substance is a UNII. |
|
severity
Required: exactly 1 |
http://smartplatforms.org/terms#severity
Coded Value where code comes from AllergySeverity Severity of an allergy |
|
startDate
Required: exactly 1 |
http://smartplatforms.org/terms#startDate
Date on which allergy began as an ISO-8601 string. xsd:dateTime |
Allergy Exclusion
Allergy Exclusion is a subtype of and inherits properties from:
SMART Statement
In clinical documentation, asserting that a patient has "No known allergies" is very different from not mentioning whether a patient has any allergies. It's a positive affirmation that a question was asked and answered. SMART models this information as an explicit clinical statement of the type AllergyExclusion.
While it might seem inelegant to expose explicit AllergyExclusion statements, this model is designed to combat a clinical modeling pattern where a single flag ("isNegated" or "negationIndicator" for example) negates the meaning of an entire statement. Interpreting statements in a world where negation flags exist can be tricky. Every app has to understand the subtlety of this flag -- and it's not always clear what it means to negate a statement with multiple parts. For more information about exclusion statements in clinical modeling, see http://omowizard.wordpress.com/2011/06/06/unambiguous-data-positive-presence-positive-absence/.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:AllergyExclusion rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/allergy_exclusions/987235">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:allergyExclusionName>
<sp:CodedValue>
<dcterms:title>No known allergies</dcterms:title>
<sp:code>
<spcode:AllergyExclusion rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/160244002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>No known allergies</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>160244002</dcterms:identifier>
</spcode:AllergyExclusion>
</sp:code>
</sp:CodedValue>
</sp:allergyExclusionName>
<dcterms:date>2005-05-05</dcterms:date>
</sp:AllergyExclusion>
</rdf:RDF>
<http://purl.bioontology.org/ontology/SNOMEDCT/160244002> <http://purl.org/dc/terms/title> "No known allergies" .
<http://purl.bioontology.org/ontology/SNOMEDCT/160244002> <http://purl.org/dc/terms/identifier> "160244002" .
<http://purl.bioontology.org/ontology/SNOMEDCT/160244002> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/160244002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/160244002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/AllergyExclusion> .
<http://sandbox-api.smartplatforms.org/records/2169591/allergy_exclusions/987235> <http://smartplatforms.org/terms#allergyExclusionName> _:Ne420b8a5f9ce449585465be4ae0494d0 .
<http://sandbox-api.smartplatforms.org/records/2169591/allergy_exclusions/987235> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/allergy_exclusions/987235> <http://purl.org/dc/terms/date> "2005-05-05" .
<http://sandbox-api.smartplatforms.org/records/2169591/allergy_exclusions/987235> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#AllergyExclusion> .
_:Ne420b8a5f9ce449585465be4ae0494d0 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/160244002> .
_:Ne420b8a5f9ce449585465be4ae0494d0 <http://purl.org/dc/terms/title> "No known allergies" .
_:Ne420b8a5f9ce449585465be4ae0494d0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/allergy_exclusions/987235> a sp:AllergyExclusion;
dcterms:date "2005-05-05";
sp:allergyExclusionName [ a sp:CodedValue;
dcterms:title "No known allergies";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/160244002> ];
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://purl.bioontology.org/ontology/SNOMEDCT/160244002> a sp:Code,
spcode:AllergyExclusion;
dcterms:identifier "160244002";
dcterms:title "No known allergies";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/160244002",
"@type": [
"Code",
"spcode__AllergyExclusion"
],
"dcterms__identifier": "160244002",
"dcterms__title": "No known allergies",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/allergy_exclusions/987235",
"@type": "AllergyExclusion",
"allergyExclusionName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/160244002"
},
"dcterms__title": "No known allergies"
},
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2005-05-05"
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Date when this affirmation was made as an ISO-8601 string. xsd:dateTime |
|
allergyExclusionName
Required: exactly 1 |
http://smartplatforms.org/terms#allergyExclusionName
Coded Value where code comes from AllergyExclusion Nature of the allergy exclusion. |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
Clinical Note
Clinical Note is a subtype of and inherits properties from:
Document, SMART Statement
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:v="http://www.w3.org/2006/vcard/ns#"
>
<sp:ClinicalNote rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<dcterms:date>2012-05-17</dcterms:date>
<dcterms:title>Cardiology clinic follow-up</dcterms:title>
<dcterms:format>
<dcterms:MediaTypeOrExtent rdf:about="http://purl.org/NET/mediatypes/text/plain">
<rdfs:label>text/plain</rdfs:label>
</dcterms:MediaTypeOrExtent>
</dcterms:format>
<sp:provider>
<sp:Provider>
<v:n>
<v:Name>
<v:given-name>Joshua</v:given-name>
<v:family-name>Mandel</v:family-name>
</v:Name>
</v:n>
</sp:Provider>
</sp:provider>
<sp:resource>
<sp:Resource>
<sp:content>
<sp:Content>
<sp:encoding>UTF-8</sp:encoding>
<sp:value>Patient states recent difficulties with sleeping and concentration due to current problem.</sp:value>
</sp:Content>
</sp:content>
</sp:Resource>
</sp:resource>
</sp:ClinicalNote>
</rdf:RDF>
<http://purl.org/NET/mediatypes/text/plain> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/terms/MediaTypeOrExtent> .
<http://purl.org/NET/mediatypes/text/plain> <http://www.w3.org/2000/01/rdf-schema#label> "text/plain" .
_:N6586f3514e4547fba51eea4033ceb45f <http://smartplatforms.org/terms#content> _:N7ada10cceade400d9870fa0089bcc3ff .
_:N6586f3514e4547fba51eea4033ceb45f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Resource> .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> <http://purl.org/dc/terms/date> "2012-05-17" .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> <http://purl.org/dc/terms/title> "Cardiology clinic follow-up" .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> <http://smartplatforms.org/terms#provider> _:Naba44e7437a8442ca0b1d857ae3d3097 .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> <http://purl.org/dc/terms/format> <http://purl.org/NET/mediatypes/text/plain> .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> <http://smartplatforms.org/terms#resource> _:N6586f3514e4547fba51eea4033ceb45f .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ClinicalNote> .
_:Ncaec66939b5543f4bd9f3c523f3cc1cd <http://www.w3.org/2006/vcard/ns#given-name> "Joshua" .
_:Ncaec66939b5543f4bd9f3c523f3cc1cd <http://www.w3.org/2006/vcard/ns#family-name> "Mandel" .
_:Ncaec66939b5543f4bd9f3c523f3cc1cd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Name> .
_:Naba44e7437a8442ca0b1d857ae3d3097 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Provider> .
_:Naba44e7437a8442ca0b1d857ae3d3097 <http://www.w3.org/2006/vcard/ns#n> _:Ncaec66939b5543f4bd9f3c523f3cc1cd .
_:N7ada10cceade400d9870fa0089bcc3ff <http://smartplatforms.org/terms#encoding> "UTF-8" .
_:N7ada10cceade400d9870fa0089bcc3ff <http://smartplatforms.org/terms#value> "Patient states recent difficulties with sleeping and concentration due to current problem." .
_:N7ada10cceade400d9870fa0089bcc3ff <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Content> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
<http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335> a sp:ClinicalNote;
dcterms:date "2012-05-17";
dcterms:format <http://purl.org/NET/mediatypes/text/plain>;
dcterms:title "Cardiology clinic follow-up";
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:provider [ a sp:Provider;
vcard:n [ a vcard:Name;
vcard:family-name "Mandel";
vcard:given-name "Joshua" ] ];
sp:resource [ a sp:Resource;
sp:content [ a sp:Content;
sp:encoding "UTF-8";
sp:value "Patient states recent difficulties with sleeping and concentration due to current problem." ] ] .
<http://purl.org/NET/mediatypes/text/plain> a dcterms:MediaTypeOrExtent;
rdfs:label "text/plain" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://purl.org/NET/mediatypes/text/plain",
"@type": "dcterms__MediaTypeOrExtent",
"rdfs__label": "text/plain"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/clinical_notes/827335",
"@type": "ClinicalNote",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2012-05-17",
"dcterms__format": {
"@id": "http://purl.org/NET/mediatypes/text/plain"
},
"dcterms__title": "Cardiology clinic follow-up",
"provider": {
"@type": "Provider",
"vcard__n": {
"@type": "vcard__Name",
"vcard__family_name": "Mandel",
"vcard__given_name": "Joshua"
}
},
"resource": [
{
"@type": "Resource",
"content": {
"@type": "Content",
"encoding": "UTF-8",
"value": "Patient states recent difficulties with sleeping and concentration due to current problem."
}
}
]
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Date of issue of the document as an ISO-8601 string rdfs:Literal |
|
format
Required: exactly 1 |
http://purl.org/dc/terms/format
MediaTypeOrExtent |
|
title
Optional: 0 or 1 |
http://purl.org/dc/terms/title
A descriptive title of the document (a string) rdfs:Literal |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
documentType
Optional: 0 or more |
http://smartplatforms.org/terms#documentType
Coded Value where code comes from DocumentType The type of the document |
|
fileName
Optional: 0 or 1 |
http://smartplatforms.org/terms#fileName
The file system name of the document rdfs:Literal |
|
fileSize
Optional: 0 or 1 |
http://smartplatforms.org/terms#fileSize
ValueAndUnit where unit has value: byte |
|
provider
Optional: 0 or 1 |
http://smartplatforms.org/terms#provider
Provider |
|
resource
Required: exactly 1 |
http://smartplatforms.org/terms#resource
Resource Provides a link to or the actual payload of the document |
Demographics
Demographics is a subtype of and inherits properties from:
Component, Person, SMART Statement, VCard
In RDF/XML, patient Bob Odenkirk looks like this:
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:v="http://www.w3.org/2006/vcard/ns#"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
<sp:Demographics rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/demographics">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<v:n>
<v:Name>
<v:given-name>Bob</v:given-name>
<v:additional-name>J</v:additional-name>
<v:family-name>Odenkirk</v:family-name>
</v:Name>
</v:n>
<v:adr>
<v:Address>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Home" />
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Pref" />
<v:street-address>15 Main St</v:street-address>
<v:extended-address>Apt 2</v:extended-address>
<v:locality>Wonderland</v:locality>
<v:region>OZ</v:region>
<v:postal-code>54321</v:postal-code>
<v:country>USA</v:country>
</v:Address>
</v:adr>
<v:tel>
<v:Tel>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Home" />
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Pref" />
<rdf:value>800-555-1212</rdf:value>
</v:Tel>
</v:tel>
<v:tel>
<v:Tel>
<rdf:type rdf:resource="http://www.w3.org/2006/vcard/ns#Cell" />
<rdf:value>800-555-1515</rdf:value>
</v:Tel>
</v:tel>
<foaf:gender>male</foaf:gender>
<v:bday>1959-12-25</v:bday>
<v:deathdate>2012-11-18</v:deathdate>
<v:email>bob.odenkirk@example.com</v:email>
<sp:ethnicity>Welsh</sp:ethnicity>
<sp:race>Caucasian</sp:race>
<sp:preferredLanguage>English</sp:preferredLanguage>
<sp:gestationalAgeAtBirth>
<sp:GestationalAgeAtBirth>
<sp:value>37.6</sp:value>
<sp:unit>wk</sp:unit>
</sp:GestationalAgeAtBirth>
</sp:gestationalAgeAtBirth>
<sp:medicalRecordNumber>
<sp:Code>
<dcterms:title>My Hospital Record 2304575</dcterms:title>
<dcterms:identifier>2304575</dcterms:identifier>
<sp:system>My Hospital Record</sp:system>
</sp:Code>
</sp:medicalRecordNumber>
</sp:Demographics>
</rdf:RDF>
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/2006/vcard/ns#locality> "Wonderland" .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/2006/vcard/ns#postal-code> "54321" .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/2006/vcard/ns#region> "OZ" .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/2006/vcard/ns#country> "USA" .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Address> .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Home> .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Pref> .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/2006/vcard/ns#extended-address> "Apt 2" .
_:N6421a65bc28844ec8e55d66230464914 <http://www.w3.org/2006/vcard/ns#street-address> "15 Main St" .
_:Nc6562982ed8940a4aadaf31bb772cfb4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Pref> .
_:Nc6562982ed8940a4aadaf31bb772cfb4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Home> .
_:Nc6562982ed8940a4aadaf31bb772cfb4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Tel> .
_:Nc6562982ed8940a4aadaf31bb772cfb4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#value> "800-555-1212" .
_:N05ead7ce0409413ea145cde2b7847a80 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
_:N05ead7ce0409413ea145cde2b7847a80 <http://purl.org/dc/terms/title> "My Hospital Record 2304575" .
_:N05ead7ce0409413ea145cde2b7847a80 <http://purl.org/dc/terms/identifier> "2304575" .
_:N05ead7ce0409413ea145cde2b7847a80 <http://smartplatforms.org/terms#system> "My Hospital Record" .
_:Na3f23d9b93324691b3f1b0f43f2774e7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Name> .
_:Na3f23d9b93324691b3f1b0f43f2774e7 <http://www.w3.org/2006/vcard/ns#family-name> "Odenkirk" .
_:Na3f23d9b93324691b3f1b0f43f2774e7 <http://www.w3.org/2006/vcard/ns#given-name> "Bob" .
_:Na3f23d9b93324691b3f1b0f43f2774e7 <http://www.w3.org/2006/vcard/ns#additional-name> "J" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/2006/vcard/ns#deathdate> "2012-11-18" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/2006/vcard/ns#n> _:Na3f23d9b93324691b3f1b0f43f2774e7 .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/2006/vcard/ns#email> "bob.odenkirk@example.com" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/2006/vcard/ns#adr> _:N6421a65bc28844ec8e55d66230464914 .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/2006/vcard/ns#bday> "1959-12-25" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://smartplatforms.org/terms#medicalRecordNumber> _:N05ead7ce0409413ea145cde2b7847a80 .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://smartplatforms.org/terms#race> "Caucasian" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Demographics> .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://xmlns.com/foaf/0.1/gender> "male" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://smartplatforms.org/terms#ethnicity> "Welsh" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://smartplatforms.org/terms#preferredLanguage> "English" .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/2006/vcard/ns#tel> _:Nc6562982ed8940a4aadaf31bb772cfb4 .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://www.w3.org/2006/vcard/ns#tel> _:Na72db83a64c54c5789dcf1667532b9f9 .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> <http://smartplatforms.org/terms#gestationalAgeAtBirth> _:N43f512ca02a34133bf153701190af41d .
_:Na72db83a64c54c5789dcf1667532b9f9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Cell> .
_:Na72db83a64c54c5789dcf1667532b9f9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Tel> .
_:Na72db83a64c54c5789dcf1667532b9f9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#value> "800-555-1515" .
_:N43f512ca02a34133bf153701190af41d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#GestationalAgeAtBirth> .
_:N43f512ca02a34133bf153701190af41d <http://smartplatforms.org/terms#value> "37.6" .
_:N43f512ca02a34133bf153701190af41d <http://smartplatforms.org/terms#unit> "wk" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
<http://sandbox-api.smartplatforms.org/records/2169591/demographics> a sp:Demographics;
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:ethnicity "Welsh";
sp:gestationalAgeAtBirth [ a sp:GestationalAgeAtBirth;
sp:unit "wk";
sp:value "37.6" ];
sp:medicalRecordNumber [ a sp:Code;
dcterms:identifier "2304575";
dcterms:title "My Hospital Record 2304575";
sp:system "My Hospital Record" ];
sp:preferredLanguage "English";
sp:race "Caucasian";
vcard:adr [ a vcard:Address,
vcard:Home,
vcard:Pref;
vcard:country "USA";
vcard:extended-address "Apt 2";
vcard:locality "Wonderland";
vcard:postal-code "54321";
vcard:region "OZ";
vcard:street-address "15 Main St" ];
vcard:bday "1959-12-25";
vcard:deathdate "2012-11-18";
vcard:email "bob.odenkirk@example.com";
vcard:n [ a vcard:Name;
vcard:additional-name "J";
vcard:family-name "Odenkirk";
vcard:given-name "Bob" ];
vcard:tel [ a vcard:Cell,
vcard:Tel;
rdf:value "800-555-1515" ],
[ a vcard:Home,
vcard:Pref,
vcard:Tel;
rdf:value "800-555-1212" ];
foaf:gender "male" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/demographics",
"@type": "Demographics",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"ethnicity": "Welsh",
"foaf__gender": "male",
"gestationalAgeAtBirth": {
"@type": "http://smartplatforms.org/terms#GestationalAgeAtBirth",
"unit": "wk",
"value": "37.6"
},
"medicalRecordNumber": [
{
"@type": "Code",
"dcterms__identifier": "2304575",
"dcterms__title": "My Hospital Record 2304575",
"system": "My Hospital Record"
}
],
"preferredLanguage": "English",
"race": "Caucasian",
"vcard__adr": {
"@type": [
"vcard__Address",
"vcard__Home",
"vcard__Pref"
],
"http://www.w3.org/2006/vcard/ns#country": "USA",
"vcard__extended_address": "Apt 2",
"vcard__locality": "Wonderland",
"vcard__postal_code": "54321",
"vcard__region": "OZ",
"vcard__street_address": "15 Main St"
},
"vcard__bday": "1959-12-25",
"vcard__deathdate": "2012-11-18",
"vcard__email": [
"bob.odenkirk@example.com"
],
"vcard__n": {
"@type": "vcard__Name",
"vcard__additional_name": [
"J"
],
"vcard__family_name": "Odenkirk",
"vcard__given_name": "Bob"
},
"vcard__tel": [
{
"@type": [
"vcard__Pref",
"vcard__Home",
"vcard__Tel"
],
"rdf__value": "800-555-1212"
},
{
"@type": [
"vcard__Cell",
"vcard__Tel"
],
"rdf__value": "800-555-1515"
}
]
}
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
ethnicity
Optional: 0 or 1 |
http://smartplatforms.org/terms#ethnicity
rdfs:Literal |
|
gestationalAgeAtBirth
Optional: 0 or 1 |
http://smartplatforms.org/terms#gestationalAgeAtBirth
ValueAndUnit where unit has value: wk |
|
medicalRecordNumber
Required: 1 or more |
http://smartplatforms.org/terms#medicalRecordNumber
Code |
|
preferredLanguage
Optional: 0 or 1 |
http://smartplatforms.org/terms#preferredLanguage
rdfs:Literal |
|
race
Optional: 0 or 1 |
http://smartplatforms.org/terms#race
rdfs:Literal |
|
adr
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#adr
Address |
|
bday
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#bday
Date of birth as an ISO-8601 string rdfs:Literal |
|
deathdate
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#deathdate
Date of death as an ISO-8601 string rdfs:Literal |
|
email
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#email
rdfs:Literal |
|
n
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#n
Name |
|
tel
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#tel
Tel |
|
gender
Required: exactly 1 |
http://xmlns.com/foaf/0.1/gender
A person's (administrative) gender. This should consist of the string "male" or "female". rdfs:Literal |
Document
Document is a subtype of and inherits properties from:
SMART Statement
Describes a document that pertains to the patient record (such as a note, an image, etc).
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/"
xmlns:v="http://www.w3.org/2006/vcard/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/">
<sp:Document rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/documents/632678">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:fileName>reportScan.png</sp:fileName>
<dcterms:title>Image of a report received from NGD about the patient</dcterms:title>
<dcterms:date>2010-05-12T04:00:00Z</dcterms:date>
<dcterms:format>
<dcterms:MediaTypeOrExtent rdf:about="http://purl.org/NET/mediatypes/image/png">
<rdfs:label>image/png</rdfs:label>
</dcterms:MediaTypeOrExtent>
</dcterms:format>
<sp:provider>
<sp:Provider>
<v:n>
<v:Name>
<v:given-name>John</v:given-name>
<v:family-name>Smith</v:family-name>
</v:Name>
</v:n>
</sp:Provider>
</sp:provider>
<sp:fileSize>
<sp:ValueAndUnit>
<sp:value>2917</sp:value>
<sp:unit>byte</sp:unit>
</sp:ValueAndUnit>
</sp:fileSize>
<sp:resource>
<sp:Resource>
<sp:location>http://sandbox-api.smartplatforms.org/records/2169591/documents/632678</sp:location>
<sp:hash>
<sp:Hash>
<sp:algorithm>SHA-256</sp:algorithm>
<sp:value>0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620</sp:value>
</sp:Hash>
</sp:hash>
<sp:content>
<sp:Content>
<sp:encoding>Base64</sp:encoding>
<sp:value>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</sp:value>
</sp:Content>
</sp:content>
</sp:Resource>
</sp:resource>
<sp:documentType>
<sp:CodedValue>
<dcterms:title>A digital image pertaining to the patient record</dcterms:title>
<sp:code>
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#image">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>A digital image pertaining to the patient record</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>image</dcterms:identifier>
</spcode:DocumentType>
</sp:code>
</sp:CodedValue>
</sp:documentType>
<sp:documentType>
<sp:CodedValue>
<dcterms:title>A report about the patient</dcterms:title>
<sp:code>
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#report">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>A report about the patient</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>report</dcterms:identifier>
</spcode:DocumentType>
</sp:code>
</sp:CodedValue>
</sp:documentType>
</sp:Document>
</rdf:RDF>
<http://purl.org/NET/mediatypes/image/png> <http://www.w3.org/2000/01/rdf-schema#label> "image/png" .
<http://purl.org/NET/mediatypes/image/png> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/terms/MediaTypeOrExtent> .
_:Nfc38bb9fb6d94d65bbf03e19e3173d48 <http://www.w3.org/2006/vcard/ns#n> _:N9745d07c349c4d66b042a341ad7b2070 .
_:Nfc38bb9fb6d94d65bbf03e19e3173d48 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Provider> .
<http://smartplatforms.org/terms/codes/DocumentType#report> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/DocumentType#" .
<http://smartplatforms.org/terms/codes/DocumentType#report> <http://purl.org/dc/terms/identifier> "report" .
<http://smartplatforms.org/terms/codes/DocumentType#report> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://smartplatforms.org/terms/codes/DocumentType#report> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/DocumentType> .
<http://smartplatforms.org/terms/codes/DocumentType#report> <http://purl.org/dc/terms/title> "A report about the patient" .
_:N404b626f2e014857ac7477856e10d13b <http://smartplatforms.org/terms#encoding> "Base64" .
_:N404b626f2e014857ac7477856e10d13b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Content> .
_:N404b626f2e014857ac7477856e10d13b <http://smartplatforms.org/terms#value> "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" .
_:N9745d07c349c4d66b042a341ad7b2070 <http://www.w3.org/2006/vcard/ns#family-name> "Smith" .
_:N9745d07c349c4d66b042a341ad7b2070 <http://www.w3.org/2006/vcard/ns#given-name> "John" .
_:N9745d07c349c4d66b042a341ad7b2070 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Name> .
_:N5d17949b4fc84abf8c786d8e0baf424f <http://smartplatforms.org/terms#unit> "byte" .
_:N5d17949b4fc84abf8c786d8e0baf424f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:N5d17949b4fc84abf8c786d8e0baf424f <http://smartplatforms.org/terms#value> "2917" .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Document> .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#resource> _:N70e6a4eed600486fb2c0ab8b18e41a58 .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#provider> _:Nfc38bb9fb6d94d65bbf03e19e3173d48 .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#fileSize> _:N5d17949b4fc84abf8c786d8e0baf424f .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://purl.org/dc/terms/date> "2010-05-12T04:00:00Z" .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#fileName> "reportScan.png" .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://purl.org/dc/terms/title> "Image of a report received from NGD about the patient" .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#documentType> _:N8bebf5c415904f8eb7248212d5a2fa04 .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#documentType> _:N9981e34e073f4fd0bb49a28396439e0e .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://purl.org/dc/terms/format> <http://purl.org/NET/mediatypes/image/png> .
_:N249f960283fd42fda84da061273c7a02 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Hash> .
_:N249f960283fd42fda84da061273c7a02 <http://smartplatforms.org/terms#algorithm> "SHA-256" .
_:N249f960283fd42fda84da061273c7a02 <http://smartplatforms.org/terms#value> "0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620" .
_:N8bebf5c415904f8eb7248212d5a2fa04 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N8bebf5c415904f8eb7248212d5a2fa04 <http://purl.org/dc/terms/title> "A report about the patient" .
_:N8bebf5c415904f8eb7248212d5a2fa04 <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/DocumentType#report> .
_:N70e6a4eed600486fb2c0ab8b18e41a58 <http://smartplatforms.org/terms#hash> _:N249f960283fd42fda84da061273c7a02 .
_:N70e6a4eed600486fb2c0ab8b18e41a58 <http://smartplatforms.org/terms#content> _:N404b626f2e014857ac7477856e10d13b .
_:N70e6a4eed600486fb2c0ab8b18e41a58 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Resource> .
_:N70e6a4eed600486fb2c0ab8b18e41a58 <http://smartplatforms.org/terms#location> "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678" .
_:N9981e34e073f4fd0bb49a28396439e0e <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N9981e34e073f4fd0bb49a28396439e0e <http://purl.org/dc/terms/title> "A digital image pertaining to the patient record" .
_:N9981e34e073f4fd0bb49a28396439e0e <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/DocumentType#image> .
<http://smartplatforms.org/terms/codes/DocumentType#image> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/DocumentType#" .
<http://smartplatforms.org/terms/codes/DocumentType#image> <http://purl.org/dc/terms/identifier> "image" .
<http://smartplatforms.org/terms/codes/DocumentType#image> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://smartplatforms.org/terms/codes/DocumentType#image> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/DocumentType> .
<http://smartplatforms.org/terms/codes/DocumentType#image> <http://purl.org/dc/terms/title> "A digital image pertaining to the patient record" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> a sp:Document;
dcterms:date "2010-05-12T04:00:00Z";
dcterms:format <http://purl.org/NET/mediatypes/image/png>;
dcterms:title "Image of a report received from NGD about the patient";
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:documentType [ a sp:CodedValue;
dcterms:title "A report about the patient";
sp:code <http://smartplatforms.org/terms/codes/DocumentType#report> ],
[ a sp:CodedValue;
dcterms:title "A digital image pertaining to the patient record";
sp:code <http://smartplatforms.org/terms/codes/DocumentType#image> ];
sp:fileName "reportScan.png";
sp:fileSize [ a sp:ValueAndUnit;
sp:unit "byte";
sp:value "2917" ];
sp:provider [ a sp:Provider;
vcard:n [ a vcard:Name;
vcard:family-name "Smith";
vcard:given-name "John" ] ];
sp:resource [ a sp:Resource;
sp:content [ a sp:Content;
sp:encoding "Base64";
sp:value "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" ];
sp:hash [ a sp:Hash;
sp:algorithm "SHA-256";
sp:value "0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620" ];
sp:location "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678" ] .
<http://purl.org/NET/mediatypes/image/png> a dcterms:MediaTypeOrExtent;
rdfs:label "image/png" .
<http://smartplatforms.org/terms/codes/DocumentType#image> a sp:Code,
spcode:DocumentType;
dcterms:identifier "image";
dcterms:title "A digital image pertaining to the patient record";
sp:system "http://smartplatforms.org/terms/codes/DocumentType#" .
<http://smartplatforms.org/terms/codes/DocumentType#report> a sp:Code,
spcode:DocumentType;
dcterms:identifier "report";
dcterms:title "A report about the patient";
sp:system "http://smartplatforms.org/terms/codes/DocumentType#" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://smartplatforms.org/terms/codes/DocumentType#image",
"@type": [
"Code",
"spcode__DocumentType"
],
"dcterms__identifier": "image",
"dcterms__title": "A digital image pertaining to the patient record",
"system": "http://smartplatforms.org/terms/codes/DocumentType#"
},
{
"@id": "http://purl.org/NET/mediatypes/image/png",
"@type": "dcterms__MediaTypeOrExtent",
"rdfs__label": "image/png"
},
{
"@id": "http://smartplatforms.org/terms/codes/DocumentType#report",
"@type": [
"Code",
"spcode__DocumentType"
],
"dcterms__identifier": "report",
"dcterms__title": "A report about the patient",
"system": "http://smartplatforms.org/terms/codes/DocumentType#"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678",
"@type": "Document",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2010-05-12T04:00:00Z",
"dcterms__format": {
"@id": "http://purl.org/NET/mediatypes/image/png"
},
"dcterms__title": "Image of a report received from NGD about the patient",
"documentType": [
{
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/DocumentType#report"
},
"dcterms__title": "A report about the patient"
},
{
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/DocumentType#image"
},
"dcterms__title": "A digital image pertaining to the patient record"
}
],
"fileName": "reportScan.png",
"fileSize": {
"@type": "ValueAndUnit",
"unit": "byte",
"value": "2917"
},
"provider": {
"@type": "Provider",
"vcard__n": {
"@type": "vcard__Name",
"vcard__family_name": "Smith",
"vcard__given_name": "John"
}
},
"resource": [
{
"@type": "Resource",
"content": {
"@type": "Content",
"encoding": "Base64",
"value": "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"
},
"hash": {
"@type": "Hash",
"algorithm": "SHA-256",
"value": "0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620"
},
"location": "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678"
}
]
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Date of issue of the document as an ISO-8601 string rdfs:Literal |
|
format
Required: exactly 1 |
http://purl.org/dc/terms/format
MediaTypeOrExtent |
|
title
Optional: 0 or 1 |
http://purl.org/dc/terms/title
A descriptive title of the document (a string) rdfs:Literal |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
documentType
Optional: 0 or more |
http://smartplatforms.org/terms#documentType
Coded Value where code comes from DocumentType The type of the document |
|
fileName
Optional: 0 or 1 |
http://smartplatforms.org/terms#fileName
The file system name of the document rdfs:Literal |
|
fileSize
Optional: 0 or 1 |
http://smartplatforms.org/terms#fileSize
ValueAndUnit where unit has value: byte |
|
provider
Optional: 0 or 1 |
http://smartplatforms.org/terms#provider
Provider |
|
resource
Required: exactly 1 |
http://smartplatforms.org/terms#resource
Resource Provides a link to or the actual payload of the document |
Encounter
Encounter is a subtype of and inherits properties from:
SMART Statement
The SMART Encounter model describes an encounter between the patient and a provider.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:v="http://www.w3.org/2006/vcard/ns#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:Encounter rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:startDate>2010-05-12T04:00:00Z</sp:startDate>
<sp:endDate>2010-05-12T04:20:00Z</sp:endDate>
<sp:encounterType>
<sp:CodedValue>
<dcterms:title>Ambulatory encounter</dcterms:title>
<sp:code>
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#ambulatory">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Ambulatory encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>ambulatory</dcterms:identifier>
</spcode:EncounterType>
</sp:code>
</sp:CodedValue>
</sp:encounterType>
</sp:Encounter>
</rdf:RDF>
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/EncounterType> .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://purl.org/dc/terms/identifier> "ambulatory" .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://purl.org/dc/terms/title> "Ambulatory encounter" .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/EncounterType#" .
_:Nb20eb3c4da514022b44877e8e6a3e828 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nb20eb3c4da514022b44877e8e6a3e828 <http://purl.org/dc/terms/title> "Ambulatory encounter" .
_:Nb20eb3c4da514022b44877e8e6a3e828 <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/EncounterType#ambulatory> .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Encounter> .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#endDate> "2010-05-12T04:20:00Z" .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#encounterType> _:Nb20eb3c4da514022b44877e8e6a3e828 .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#startDate> "2010-05-12T04:00:00Z" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> a sp:Encounter;
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:encounterType [ a sp:CodedValue;
dcterms:title "Ambulatory encounter";
sp:code <http://smartplatforms.org/terms/codes/EncounterType#ambulatory> ];
sp:endDate "2010-05-12T04:20:00Z";
sp:startDate "2010-05-12T04:00:00Z" .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> a sp:Code,
spcode:EncounterType;
dcterms:identifier "ambulatory";
dcterms:title "Ambulatory encounter";
sp:system "http://smartplatforms.org/terms/codes/EncounterType#" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352",
"@type": "Encounter",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"encounterType": {
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/EncounterType#ambulatory"
},
"dcterms__title": "Ambulatory encounter"
},
"endDate": "2010-05-12T04:20:00Z",
"startDate": "2010-05-12T04:00:00Z"
},
{
"@id": "http://smartplatforms.org/terms/codes/EncounterType#ambulatory",
"@type": [
"spcode__EncounterType",
"Code"
],
"dcterms__identifier": "ambulatory",
"dcterms__title": "Ambulatory encounter",
"system": "http://smartplatforms.org/terms/codes/EncounterType#"
}
]
}
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
encounterType
Required: exactly 1 |
http://smartplatforms.org/terms#encounterType
Coded Value where code comes from EncounterType Type of encounter |
|
endDate
Optional: 0 or 1 |
http://smartplatforms.org/terms#endDate
Date when encounter ended, as an ISO-8601 string xsd:dateTime |
|
facility
Optional: 0 or 1 |
http://smartplatforms.org/terms#facility
Organization Facility where encounter occurred |
|
provider
Optional: 0 or 1 |
http://smartplatforms.org/terms#provider
Provider Provider responsible for encounter |
|
startDate
Required: exactly 1 |
http://smartplatforms.org/terms#startDate
Date when encounter began, as an ISO-8601 string xsd:dateTime |
Family History Observation
Family History Observation is a subtype of and inherits properties from:
SMART Statement
A statement about a patient's relative (such as a hereditary disease, biometric fact, or date of death).
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/"
xmlns:v="http://www.w3.org/2006/vcard/ns#">
<sp:FamilyHistory rdf:about="http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/123456" />
<sp:aboutRelative>
<sp:CodedValue>
<dcterms:title>Grand-father</dcterms:title>
<sp:code>
<spcode:SNOMED rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/34871008">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Grand-father</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>34871008</dcterms:identifier>
</spcode:SNOMED>
</sp:code>
</sp:CodedValue>
</sp:aboutRelative>
<v:bday>1959-12-25</v:bday>
<v:deathdate>2012-11-18</v:deathdate>
<sp:hasProblem>
<sp:CodedValue>
<dcterms:title>Diabetes mellitus</dcterms:title>
<sp:code>
<spcode:SNOMED rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/73211009">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Diabetes mellitus</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>73211009</dcterms:identifier>
</spcode:SNOMED>
</sp:code>
</sp:CodedValue>
</sp:hasProblem>
<sp:height>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Body height</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8302-2">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body height</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8302-2</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>180</sp:value>
<sp:unit>cm</sp:unit>
</sp:VitalSign>
</sp:height>
</sp:FamilyHistory>
</rdf:RDF>
_:Nbebe4292d0c44cf4b846f73a35d95fe6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:Nbebe4292d0c44cf4b846f73a35d95fe6 <http://smartplatforms.org/terms#unit> "cm" .
_:Nbebe4292d0c44cf4b846f73a35d95fe6 <http://smartplatforms.org/terms#value> "180" .
_:Nbebe4292d0c44cf4b846f73a35d95fe6 <http://smartplatforms.org/terms#vitalName> _:N374334f5aad54ba1ad46de0423cac579 .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> <http://smartplatforms.org/terms#height> _:Nbebe4292d0c44cf4b846f73a35d95fe6 .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> <http://www.w3.org/2006/vcard/ns#deathdate> "2012-11-18" .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/123456> .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> <http://smartplatforms.org/terms#hasProblem> _:N9069db314248469a8eea8c006f0a2bb4 .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> <http://smartplatforms.org/terms#aboutRelative> _:N81e3fa73fa7347f280874d7418956051 .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> <http://www.w3.org/2006/vcard/ns#bday> "1959-12-25" .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#FamilyHistory> .
_:N81e3fa73fa7347f280874d7418956051 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/34871008> .
_:N81e3fa73fa7347f280874d7418956051 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N81e3fa73fa7347f280874d7418956051 <http://purl.org/dc/terms/title> "Grand-father" .
<http://purl.bioontology.org/ontology/SNOMEDCT/73211009> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/73211009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/SNOMED> .
<http://purl.bioontology.org/ontology/SNOMEDCT/73211009> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/73211009> <http://purl.org/dc/terms/identifier> "73211009" .
<http://purl.bioontology.org/ontology/SNOMEDCT/73211009> <http://purl.org/dc/terms/title> "Diabetes mellitus" .
_:N9069db314248469a8eea8c006f0a2bb4 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/73211009> .
_:N9069db314248469a8eea8c006f0a2bb4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N9069db314248469a8eea8c006f0a2bb4 <http://purl.org/dc/terms/title> "Diabetes mellitus" .
_:N374334f5aad54ba1ad46de0423cac579 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/8302-2> .
_:N374334f5aad54ba1ad46de0423cac579 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N374334f5aad54ba1ad46de0423cac579 <http://purl.org/dc/terms/title> "Body height" .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://purl.org/dc/terms/identifier> "8302-2" .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://purl.org/dc/terms/title> "Body height" .
<http://purl.bioontology.org/ontology/SNOMEDCT/34871008> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/34871008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/SNOMED> .
<http://purl.bioontology.org/ontology/SNOMEDCT/34871008> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/34871008> <http://purl.org/dc/terms/identifier> "34871008" .
<http://purl.bioontology.org/ontology/SNOMEDCT/34871008> <http://purl.org/dc/terms/title> "Grand-father" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
<http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456> a sp:FamilyHistory;
sp:aboutRelative [ a sp:CodedValue;
dcterms:title "Grand-father";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/34871008> ];
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/123456>;
sp:hasProblem [ a sp:CodedValue;
dcterms:title "Diabetes mellitus";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/73211009> ];
sp:height [ a sp:VitalSign;
sp:unit "cm";
sp:value "180";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Body height";
sp:code <http://purl.bioontology.org/ontology/LNC/8302-2> ] ];
vcard:bday "1959-12-25";
vcard:deathdate "2012-11-18" .
<http://purl.bioontology.org/ontology/LNC/8302-2> a sp:Code,
spcode:VitalSign;
dcterms:identifier "8302-2";
dcterms:title "Body height";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/34871008> a sp:Code,
spcode:SNOMED;
dcterms:identifier "34871008";
dcterms:title "Grand-father";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/73211009> a sp:Code,
spcode:SNOMED;
dcterms:identifier "73211009";
dcterms:title "Diabetes mellitus";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/73211009",
"@type": [
"spcode__SNOMED",
"Code"
],
"dcterms__identifier": "73211009",
"dcterms__title": "Diabetes mellitus",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/8302-2",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "8302-2",
"dcterms__title": "Body height",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/123456/family_histories/123456",
"@type": "FamilyHistory",
"aboutRelative": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/34871008"
},
"dcterms__title": "Grand-father"
},
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/123456"
},
"hasProblem": [
{
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/73211009"
},
"dcterms__title": "Diabetes mellitus"
}
],
"height": {
"@type": "VitalSign",
"unit": "cm",
"value": "180",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/8302-2"
},
"dcterms__title": "Body height"
}
},
"vcard__bday": "1959-12-25",
"vcard__deathdate": "2012-11-18"
},
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/34871008",
"@type": [
"spcode__SNOMED",
"Code"
],
"dcterms__identifier": "34871008",
"dcterms__title": "Grand-father",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
}
]
}
|
aboutRelative
Required: exactly 1 |
http://smartplatforms.org/terms#aboutRelative
Coded Value where code comes from SNOMED |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
hasProblem
Optional: 0 or more |
http://smartplatforms.org/terms#hasProblem
Coded Value where code comes from SNOMED |
|
height
Optional: 0 or 1 |
http://smartplatforms.org/terms#height
VitalSign where unit has value: cm |
|
bday
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#bday
rdfs:Literal |
|
deathdate
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#deathdate
rdfs:Literal |
Fulfillment
Fulfillment is a subtype of and inherits properties from:
SMART Statement
An explicit record of a medication dispension to a patient by a pharmacy.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:v="http://www.w3.org/2006/vcard/ns#">
<sp:Fulfillment rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<dcterms:date>2010-05-12T04:00:00Z</dcterms:date>
<sp:medication rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591/medications/123" />
<sp:provider>
<sp:Provider>
<v:n>
<v:Name>
<v:given-name>Joshua</v:given-name>
<v:family-name>Mandel</v:family-name>
</v:Name>
</v:n>
<sp:npiNumber>5235235</sp:npiNumber>
<sp:deaNumber>325555555</sp:deaNumber>
</sp:Provider>
</sp:provider>
<sp:pharmacy>
<sp:Pharmacy>
<sp:ncpdpId>5235235</sp:ncpdpId>
<v:organization-name>CVS #588</v:organization-name>
<v:adr>
<v:Address>
<v:street-address>111 Lake Drive</v:street-address>
<v:locality>WonderCity</v:locality>
<v:postal-code>5555</v:postal-code>
<v:country-name>Australia</v:country-name>
</v:Address>
</v:adr>
</sp:Pharmacy>
</sp:pharmacy>
<sp:pbm>T00000000001011</sp:pbm>
<sp:quantityDispensed>
<sp:ValueAndUnit>
<sp:value>60</sp:value>
<sp:unit>{tablet}</sp:unit>
</sp:ValueAndUnit>
</sp:quantityDispensed>
<sp:dispenseDaysSupply>30</sp:dispenseDaysSupply>
</sp:Fulfillment>
</rdf:RDF>
_:N6c038419476e45ef99cd2816ab3b8e7a <http://www.w3.org/2006/vcard/ns#given-name> "Joshua" .
_:N6c038419476e45ef99cd2816ab3b8e7a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Name> .
_:N6c038419476e45ef99cd2816ab3b8e7a <http://www.w3.org/2006/vcard/ns#family-name> "Mandel" .
_:Nf6d8f73f383f4f55803f1e1193f4f5a0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Provider> .
_:Nf6d8f73f383f4f55803f1e1193f4f5a0 <http://www.w3.org/2006/vcard/ns#n> _:N6c038419476e45ef99cd2816ab3b8e7a .
_:Nf6d8f73f383f4f55803f1e1193f4f5a0 <http://smartplatforms.org/terms#npiNumber> "5235235" .
_:Nf6d8f73f383f4f55803f1e1193f4f5a0 <http://smartplatforms.org/terms#deaNumber> "325555555" .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://smartplatforms.org/terms#dispenseDaysSupply> "30" .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://smartplatforms.org/terms#pharmacy> _:N7df7e1b8d65d4d18903ef89a075c09c2 .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://smartplatforms.org/terms#provider> _:Nf6d8f73f383f4f55803f1e1193f4f5a0 .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://smartplatforms.org/terms#medication> <http://sandbox-api.smartplatforms.org/records/2169591/medications/123> .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Fulfillment> .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://smartplatforms.org/terms#quantityDispensed> _:N301a7c14d61a402d8c370eb44c2474e6 .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://smartplatforms.org/terms#pbm> "T00000000001011" .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> <http://purl.org/dc/terms/date> "2010-05-12T04:00:00Z" .
_:N29551b508c1e49b09966bd4f7aa450a8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Address> .
_:N29551b508c1e49b09966bd4f7aa450a8 <http://www.w3.org/2006/vcard/ns#postal-code> "5555" .
_:N29551b508c1e49b09966bd4f7aa450a8 <http://www.w3.org/2006/vcard/ns#street-address> "111 Lake Drive" .
_:N29551b508c1e49b09966bd4f7aa450a8 <http://www.w3.org/2006/vcard/ns#country-name> "Australia" .
_:N29551b508c1e49b09966bd4f7aa450a8 <http://www.w3.org/2006/vcard/ns#locality> "WonderCity" .
_:N301a7c14d61a402d8c370eb44c2474e6 <http://smartplatforms.org/terms#unit> "{tablet}" .
_:N301a7c14d61a402d8c370eb44c2474e6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:N301a7c14d61a402d8c370eb44c2474e6 <http://smartplatforms.org/terms#value> "60" .
_:N7df7e1b8d65d4d18903ef89a075c09c2 <http://www.w3.org/2006/vcard/ns#adr> _:N29551b508c1e49b09966bd4f7aa450a8 .
_:N7df7e1b8d65d4d18903ef89a075c09c2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Pharmacy> .
_:N7df7e1b8d65d4d18903ef89a075c09c2 <http://smartplatforms.org/terms#ncpdpId> "5235235" .
_:N7df7e1b8d65d4d18903ef89a075c09c2 <http://www.w3.org/2006/vcard/ns#organization-name> "CVS #588" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
<http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221> a sp:Fulfillment;
dcterms:date "2010-05-12T04:00:00Z";
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:dispenseDaysSupply "30";
sp:medication <http://sandbox-api.smartplatforms.org/records/2169591/medications/123>;
sp:pbm "T00000000001011";
sp:pharmacy [ a sp:Pharmacy;
sp:ncpdpId "5235235";
vcard:adr [ a vcard:Address;
vcard:country-name "Australia";
vcard:locality "WonderCity";
vcard:postal-code "5555";
vcard:street-address "111 Lake Drive" ];
vcard:organization-name "CVS #588" ];
sp:provider [ a sp:Provider;
sp:deaNumber "325555555";
sp:npiNumber "5235235";
vcard:n [ a vcard:Name;
vcard:family-name "Mandel";
vcard:given-name "Joshua" ] ];
sp:quantityDispensed [ a sp:ValueAndUnit;
sp:unit "{tablet}";
sp:value "60" ] .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/fulfillments/63221",
"@type": "Fulfillment",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2010-05-12T04:00:00Z",
"dispenseDaysSupply": "30",
"medication": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/medications/123"
},
"pbm": "T00000000001011",
"pharmacy": {
"@type": "Pharmacy",
"ncpdpId": "5235235",
"vcard__adr": {
"@type": "vcard__Address",
"vcard__country_name": "Australia",
"vcard__locality": "WonderCity",
"vcard__postal_code": "5555",
"vcard__street_address": "111 Lake Drive"
},
"vcard__organization_name": "CVS #588"
},
"provider": {
"@type": "Provider",
"deaNumber": "325555555",
"npiNumber": "5235235",
"vcard__n": {
"@type": "vcard__Name",
"vcard__family_name": "Mandel",
"vcard__given_name": "Joshua"
}
},
"quantityDispensed": {
"@type": "ValueAndUnit",
"unit": "{tablet}",
"value": "60"
}
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Date on which medication was dispensed, as an ISO-8601 string xsd:dateTime |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
dispenseDaysSupply
Required: exactly 1 |
http://smartplatforms.org/terms#dispenseDaysSupply
The number of days' supply dispensed rdfs:Literal |
|
medication
Required: exactly 1 |
http://smartplatforms.org/terms#medication
Medication |
|
pbm
Optional: 0 or 1 |
http://smartplatforms.org/terms#pbm
The PBM providing payment for medications rdfs:Literal |
|
pharmacy
Optional: 0 or 1 |
http://smartplatforms.org/terms#pharmacy
Pharmacy The pharmacy that dispensed the medication |
|
provider
Optional: 0 or 1 |
http://smartplatforms.org/terms#provider
Provider Clinician who prescribed the medication |
|
quantityDispensed
Optional: 0 or 1 |
http://smartplatforms.org/terms#quantityDispensed
ValueAndUnit Quantity dispensed, with units |
Immunization
Immunization is a subtype of and inherits properties from:
SMART Statement
Explicit record of an immunization given or not given to the patient.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:Immunization rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<dcterms:date>2010-05-12T04:00:00Z</dcterms:date>
<sp:administrationStatus>
<sp:CodedValue>
<dcterms:title>Not Administered</dcterms:title>
<sp:code>
<sp:Code rdf:about="http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered">
<rdf:type rdf:resource="http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus" />
<dcterms:title>Not Administered</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#</sp:system>
<dcterms:identifier>notAdministered</dcterms:identifier>
</sp:Code>
</sp:code>
</sp:CodedValue>
</sp:administrationStatus>
<sp:refusalReason>
<sp:CodedValue>
<dcterms:title>Allergy to vaccine/vaccine components, or allergy to eggs</dcterms:title>
<sp:code>
<sp:Code rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy">
<rdf:type rdf:resource="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason" />
<dcterms:title>Allergy to vaccine/vaccine components, or allergy to eggs</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>allergy</dcterms:identifier>
</sp:Code>
</sp:code>
</sp:CodedValue>
</sp:refusalReason>
<sp:productName>
<sp:CodedValue>
<dcterms:title>typhoid, oral</dcterms:title>
<sp:code>
<sp:Code rdf:about="http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25">
<rdf:type rdf:resource="http://smartplatforms.org/terms/codes/ImmunizationProduct" />
<dcterms:title>typhoid, oral</dcterms:title>
<sp:system>http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#</sp:system>
<dcterms:identifier>25</dcterms:identifier>
</sp:Code>
</sp:code>
</sp:CodedValue>
</sp:productName>
<sp:productClass>
<sp:CodedValue>
<dcterms:title>TYPHOID</dcterms:title>
<sp:code>
<sp:Code rdf:about="http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID">
<rdf:type rdf:resource="http://smartplatforms.org/terms/codes/ImmunizationClass" />
<dcterms:title>TYPHOID</dcterms:title>
<sp:system>http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#</sp:system>
<dcterms:identifier>TYPHOID</dcterms:identifier>
</sp:Code>
</sp:code>
</sp:CodedValue>
</sp:productClass>
</sp:Immunization>
</rdf:RDF>
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> <http://purl.org/dc/terms/title> "typhoid, oral" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> <http://purl.org/dc/terms/identifier> "25" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> <http://smartplatforms.org/terms#system> "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/ImmunizationProduct> .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
_:Nf206327aa62a47afae5d8ce6f07e82dd <http://purl.org/dc/terms/title> "typhoid, oral" .
_:Nf206327aa62a47afae5d8ce6f07e82dd <http://smartplatforms.org/terms#code> <http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> .
_:Nf206327aa62a47afae5d8ce6f07e82dd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
<http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> <http://purl.org/dc/terms/title> "Allergy to vaccine/vaccine components, or allergy to eggs" .
<http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> <http://purl.org/dc/terms/identifier> "allergy" .
<http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#" .
<http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/ImmunizationRefusalReason> .
<http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> <http://smartplatforms.org/terms#productClass> _:N58a38c293d05409ba4239cf9308e3b09 .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Immunization> .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> <http://purl.org/dc/terms/date> "2010-05-12T04:00:00Z" .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> <http://smartplatforms.org/terms#administrationStatus> _:N5b9d3370517a4331bfbaa7c15ccf31f9 .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> <http://smartplatforms.org/terms#refusalReason> _:N7c387aaf6139475ba4ca148be232dd42 .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> <http://smartplatforms.org/terms#productName> _:Nf206327aa62a47afae5d8ce6f07e82dd .
<http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> <http://purl.org/dc/terms/title> "Not Administered" .
<http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> <http://purl.org/dc/terms/identifier> "notAdministered" .
<http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#" .
<http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus> .
<http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> <http://purl.org/dc/terms/title> "TYPHOID" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> <http://purl.org/dc/terms/identifier> "TYPHOID" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> <http://smartplatforms.org/terms#system> "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/ImmunizationClass> .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
_:N7c387aaf6139475ba4ca148be232dd42 <http://purl.org/dc/terms/title> "Allergy to vaccine/vaccine components, or allergy to eggs" .
_:N7c387aaf6139475ba4ca148be232dd42 <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> .
_:N7c387aaf6139475ba4ca148be232dd42 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N58a38c293d05409ba4239cf9308e3b09 <http://purl.org/dc/terms/title> "TYPHOID" .
_:N58a38c293d05409ba4239cf9308e3b09 <http://smartplatforms.org/terms#code> <http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> .
_:N58a38c293d05409ba4239cf9308e3b09 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N5b9d3370517a4331bfbaa7c15ccf31f9 <http://purl.org/dc/terms/title> "Not Administered" .
_:N5b9d3370517a4331bfbaa7c15ccf31f9 <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> .
_:N5b9d3370517a4331bfbaa7c15ccf31f9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972> a sp:Immunization;
dcterms:date "2010-05-12T04:00:00Z";
sp:administrationStatus [ a sp:CodedValue;
dcterms:title "Not Administered";
sp:code <http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> ];
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:productClass [ a sp:CodedValue;
dcterms:title "TYPHOID";
sp:code <http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> ];
sp:productName [ a sp:CodedValue;
dcterms:title "typhoid, oral";
sp:code <http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> ];
sp:refusalReason [ a sp:CodedValue;
dcterms:title "Allergy to vaccine/vaccine components, or allergy to eggs";
sp:code <http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> ] .
<http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered> a sp:Code,
spcode:ImmunizationAdministrationStatus;
dcterms:identifier "notAdministered";
dcterms:title "Not Administered";
sp:system "http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#" .
<http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy> a sp:Code,
spcode:ImmunizationRefusalReason;
dcterms:identifier "allergy";
dcterms:title "Allergy to vaccine/vaccine components, or allergy to eggs";
sp:system "http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25> a sp:Code,
spcode:ImmunizationProduct;
dcterms:identifier "25";
dcterms:title "typhoid, oral";
sp:system "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#" .
<http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID> a sp:Code,
spcode:ImmunizationClass;
dcterms:identifier "TYPHOID";
dcterms:title "TYPHOID";
sp:system "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID",
"@type": [
"spcode__ImmunizationClass",
"Code"
],
"dcterms__identifier": "TYPHOID",
"dcterms__title": "TYPHOID",
"system": "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#"
},
{
"@id": "http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered",
"@type": [
"spcode__ImmunizationAdministrationStatus",
"Code"
],
"dcterms__identifier": "notAdministered",
"dcterms__title": "Not Administered",
"system": "http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#"
},
{
"@id": "http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy",
"@type": [
"spcode__ImmunizationRefusalReason",
"Code"
],
"dcterms__identifier": "allergy",
"dcterms__title": "Allergy to vaccine/vaccine components, or allergy to eggs",
"system": "http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/immunizations/418972",
"@type": "Immunization",
"administrationStatus": {
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered"
},
"dcterms__title": "Not Administered"
},
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2010-05-12T04:00:00Z",
"productClass": [
{
"@type": "CodedValue",
"code": {
"@id": "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#TYPHOID"
},
"dcterms__title": "TYPHOID"
}
],
"productName": {
"@type": "CodedValue",
"code": {
"@id": "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25"
},
"dcterms__title": "typhoid, oral"
},
"refusalReason": {
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy"
},
"dcterms__title": "Allergy to vaccine/vaccine components, or allergy to eggs"
}
},
{
"@id": "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#25",
"@type": [
"spcode__ImmunizationProduct",
"Code"
],
"dcterms__identifier": "25",
"dcterms__title": "typhoid, oral",
"system": "http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#"
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Date and time when the medication was administered or offered, as an ISO-8601 string xsd:dateTime |
|
administrationStatus
Required: exactly 1 |
http://smartplatforms.org/terms#administrationStatus
Coded Value where code comes from ImmunizationAdministrationStatus |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
productClass
Optional: 0 or more |
http://smartplatforms.org/terms#productClass
Coded Value where code comes from ImmunizationClass coded name for the product class, according to the set of codes in the CDC Vaccine Groups controlled vocabulary. For example, a class code meaning 'Rotavirus' would be assigned for a specific product such as Rotarix product. productClass codes are drawn from the CDC's Vaccine Group vocabulary. URIs are of the form: http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#code For example, the URI for the ROTAVIRUS code is: http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=vg#ROTAVIRUS |
|
productName
Required: exactly 1 |
http://smartplatforms.org/terms#productName
Coded Value where code comes from ImmunizationProduct coded describing the product according to the set of codes in the CVX for immunizations controlled vocabulary. CVX Code URIs should be represented as: http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#{code} For exampe, the code for "adenovirus, type 4" is 54, and its URI is: http://www2a.cdc.gov/nip/IIS/IISStandards/vaccines.asp?rpt=cvx#54 |
|
refusalReason
Optional: 0 or 1 |
http://smartplatforms.org/terms#refusalReason
Coded Value where code comes from ImmunizationRefusalReason If the administration status indicates this vaccination was refused, refusalReason is a CodedValue whose code is belongs to a controlled vocabulary of refusal reasons. |
Lab Panel
Lab Panel is a subtype of and inherits properties from:
Panel, SMART Statement
In RDF/XML, a CBC looks like this:
<?xml version="1.0" encoding="utf-8"?>
No example yet.
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
labName
Optional: 0 or 1 |
http://smartplatforms.org/terms#labName
Coded Value where code comes from LOINC LOINC Coded Value for the result panel, if any |
|
labResult
Required: 1 or more |
http://smartplatforms.org/terms#labResult
Lab Result An individual result belonging to this panel |
Lab Result
Lab Result is a subtype of and inherits properties from:
SMART Statement
In RDF/XML, a serum sodium result looks like this:
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:sp="http://smartplatforms.org/terms#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:v="http://www.w3.org/2006/vcard/ns#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:LabResult rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:labName>
<sp:CodedValue>
<dcterms:title>Serum sodium</dcterms:title>
<sp:provenance>
<sp:CodeProvenance>
<sp:sourceCode rdf:resource="http://my.local.coding.system/01234" />
<dcterms:title>Random blood sodium level</dcterms:title>
<sp:translationFidelity rdf:resource="http://smartplatforms.org/terms/codes/TranslationFidelity#verified"/>
</sp:CodeProvenance>
</sp:provenance>
<sp:code>
<spcode:LOINC rdf:about="http://purl.bioontology.org/ontology/LNC/2951-2">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Serum sodium</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>2951-2</dcterms:identifier>
</spcode:LOINC>
</sp:code>
</sp:CodedValue>
</sp:labName>
<sp:quantitativeResult>
<sp:QuantitativeResult>
<sp:valueAndUnit>
<sp:ValueAndUnit>
<sp:value>140</sp:value>
<sp:unit>mEq/L</sp:unit>
</sp:ValueAndUnit>
</sp:valueAndUnit>
<sp:normalRange>
<sp:ValueRange>
<sp:minimum>
<sp:ValueAndUnit>
<sp:value>135</sp:value>
<sp:unit>mEq/L</sp:unit>
</sp:ValueAndUnit>
</sp:minimum>
<sp:maximum>
<sp:ValueAndUnit>
<sp:value>145</sp:value>
<sp:unit>mEq/L</sp:unit>
</sp:ValueAndUnit>
</sp:maximum>
</sp:ValueRange>
</sp:normalRange>
<sp:nonCriticalRange>
<sp:ValueRange>
<sp:minimum>
<sp:ValueAndUnit>
<sp:value>120</sp:value>
<sp:unit>mEq/L</sp:unit>
</sp:ValueAndUnit>
</sp:minimum>
<sp:maximum>
<sp:ValueAndUnit>
<sp:value>155</sp:value>
<sp:unit>mEq/L</sp:unit>
</sp:ValueAndUnit>
</sp:maximum>
</sp:ValueRange>
</sp:nonCriticalRange>
</sp:QuantitativeResult>
</sp:quantitativeResult>
<sp:accessionNumber>AC09205823577</sp:accessionNumber>
<sp:labStatus>
<sp:CodedValue>
<dcterms:title>Final results: complete and verified</dcterms:title>
<sp:code>
<spcode:LabResultStatus rdf:about="http://smartplatforms.org/terms/codes/LabStatus#final">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Final</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabStatus#</sp:system>
<dcterms:identifier>final</dcterms:identifier>
</spcode:LabResultStatus>
</sp:code>
</sp:CodedValue>
</sp:labStatus>
<sp:abnormalInterpretation>
<sp:CodedValue>
<dcterms:title>Normal</dcterms:title>
<sp:code>
<spcode:LabResultInterpretation rdf:about="http://smartplatforms.org/terms/codes/LabResultInterpretation#normal">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Normal</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabResultInterpretation#</sp:system>
<dcterms:identifier>normal</dcterms:identifier>
</spcode:LabResultInterpretation>
</sp:code>
</sp:CodedValue>
</sp:abnormalInterpretation>
<dcterms:date>2010-12-27T17:00:00</dcterms:date>
<sp:notes>Blood sample appears to have hemolyzed</sp:notes>
</sp:LabResult>
</rdf:RDF>
_:N0361a12ddc084d7abca17ef215b15a3a <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> .
_:N0361a12ddc084d7abca17ef215b15a3a <http://purl.org/dc/terms/title> "Normal" .
_:N0361a12ddc084d7abca17ef215b15a3a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nd161f1452ac746bb975f022f765e47c8 <http://smartplatforms.org/terms#maximum> _:Ne049d3e0fd8542cc9b79713fd2c639b3 .
_:Nd161f1452ac746bb975f022f765e47c8 <http://smartplatforms.org/terms#minimum> _:N3af6513ce8384ff7b33d65cbe21f08ca .
_:Nd161f1452ac746bb975f022f765e47c8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueRange> .
_:N5b05e4300c6645628ad493c05fac7312 <http://smartplatforms.org/terms#value> "140" .
_:N5b05e4300c6645628ad493c05fac7312 <http://smartplatforms.org/terms#unit> "mEq/L" .
_:N5b05e4300c6645628ad493c05fac7312 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:N3af6513ce8384ff7b33d65cbe21f08ca <http://smartplatforms.org/terms#value> "120" .
_:N3af6513ce8384ff7b33d65cbe21f08ca <http://smartplatforms.org/terms#unit> "mEq/L" .
_:N3af6513ce8384ff7b33d65cbe21f08ca <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:Ned3684a0b7624ea39a5c07d5e0344a9b <http://smartplatforms.org/terms#normalRange> _:N89e8be453a9b44e9963aff98ea0a2bb7 .
_:Ned3684a0b7624ea39a5c07d5e0344a9b <http://smartplatforms.org/terms#valueAndUnit> _:N5b05e4300c6645628ad493c05fac7312 .
_:Ned3684a0b7624ea39a5c07d5e0344a9b <http://smartplatforms.org/terms#nonCriticalRange> _:Nd161f1452ac746bb975f022f765e47c8 .
_:Ned3684a0b7624ea39a5c07d5e0344a9b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#QuantitativeResult> .
<http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/LabResultInterpretation#" .
<http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> <http://purl.org/dc/terms/title> "Normal" .
<http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/LabResultInterpretation> .
<http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> <http://purl.org/dc/terms/identifier> "normal" .
_:N89e8be453a9b44e9963aff98ea0a2bb7 <http://smartplatforms.org/terms#maximum> _:Naec7a581de4b488b8df3b8cf1587c8a4 .
_:N89e8be453a9b44e9963aff98ea0a2bb7 <http://smartplatforms.org/terms#minimum> _:N8ca27778b77e470587c48e0e11c1b5ff .
_:N89e8be453a9b44e9963aff98ea0a2bb7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueRange> .
<http://smartplatforms.org/terms/codes/LabStatus#final> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/LabStatus#" .
<http://smartplatforms.org/terms/codes/LabStatus#final> <http://purl.org/dc/terms/title> "Final" .
<http://smartplatforms.org/terms/codes/LabStatus#final> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/LabResultStatus> .
<http://smartplatforms.org/terms/codes/LabStatus#final> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://smartplatforms.org/terms/codes/LabStatus#final> <http://purl.org/dc/terms/identifier> "final" .
_:Ndf2a5eba36b84a43ae101151551ff238 <http://smartplatforms.org/terms#translationFidelity> <http://smartplatforms.org/terms/codes/TranslationFidelity#verified> .
_:Ndf2a5eba36b84a43ae101151551ff238 <http://smartplatforms.org/terms#sourceCode> <http://my.local.coding.system/01234> .
_:Ndf2a5eba36b84a43ae101151551ff238 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodeProvenance> .
_:Ndf2a5eba36b84a43ae101151551ff238 <http://purl.org/dc/terms/title> "Random blood sodium level" .
_:Ne049d3e0fd8542cc9b79713fd2c639b3 <http://smartplatforms.org/terms#value> "155" .
_:Ne049d3e0fd8542cc9b79713fd2c639b3 <http://smartplatforms.org/terms#unit> "mEq/L" .
_:Ne049d3e0fd8542cc9b79713fd2c639b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:Nf8c6254d71204e81b09702cfe9e32d07 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/2951-2> .
_:Nf8c6254d71204e81b09702cfe9e32d07 <http://purl.org/dc/terms/title> "Serum sodium" .
_:Nf8c6254d71204e81b09702cfe9e32d07 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nf8c6254d71204e81b09702cfe9e32d07 <http://smartplatforms.org/terms#provenance> _:Ndf2a5eba36b84a43ae101151551ff238 .
<http://purl.bioontology.org/ontology/LNC/2951-2> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/2951-2> <http://purl.org/dc/terms/title> "Serum sodium" .
<http://purl.bioontology.org/ontology/LNC/2951-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/2951-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/LOINC> .
<http://purl.bioontology.org/ontology/LNC/2951-2> <http://purl.org/dc/terms/identifier> "2951-2" .
_:Naec7a581de4b488b8df3b8cf1587c8a4 <http://smartplatforms.org/terms#value> "145" .
_:Naec7a581de4b488b8df3b8cf1587c8a4 <http://smartplatforms.org/terms#unit> "mEq/L" .
_:Naec7a581de4b488b8df3b8cf1587c8a4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:N0e13ebdc19b848a496f0c83e4e4cc337 <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/LabStatus#final> .
_:N0e13ebdc19b848a496f0c83e4e4cc337 <http://purl.org/dc/terms/title> "Final results: complete and verified" .
_:N0e13ebdc19b848a496f0c83e4e4cc337 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N8ca27778b77e470587c48e0e11c1b5ff <http://smartplatforms.org/terms#value> "135" .
_:N8ca27778b77e470587c48e0e11c1b5ff <http://smartplatforms.org/terms#unit> "mEq/L" .
_:N8ca27778b77e470587c48e0e11c1b5ff <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#LabResult> .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://smartplatforms.org/terms#labStatus> _:N0e13ebdc19b848a496f0c83e4e4cc337 .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://smartplatforms.org/terms#abnormalInterpretation> _:N0361a12ddc084d7abca17ef215b15a3a .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://smartplatforms.org/terms#accessionNumber> "AC09205823577" .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://smartplatforms.org/terms#notes> "Blood sample appears to have hemolyzed" .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://smartplatforms.org/terms#labName> _:Nf8c6254d71204e81b09702cfe9e32d07 .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://smartplatforms.org/terms#quantitativeResult> _:Ned3684a0b7624ea39a5c07d5e0344a9b .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> <http://purl.org/dc/terms/date> "2010-12-27T17:00:00" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724> a sp:LabResult;
dcterms:date "2010-12-27T17:00:00";
sp:abnormalInterpretation [ a sp:CodedValue;
dcterms:title "Normal";
sp:code <http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> ];
sp:accessionNumber "AC09205823577";
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:labName [ a sp:CodedValue;
dcterms:title "Serum sodium";
sp:code <http://purl.bioontology.org/ontology/LNC/2951-2>;
sp:provenance [ a sp:CodeProvenance;
dcterms:title "Random blood sodium level";
sp:sourceCode <http://my.local.coding.system/01234>;
sp:translationFidelity <http://smartplatforms.org/terms/codes/TranslationFidelity#verified> ] ];
sp:labStatus [ a sp:CodedValue;
dcterms:title "Final results: complete and verified";
sp:code <http://smartplatforms.org/terms/codes/LabStatus#final> ];
sp:notes "Blood sample appears to have hemolyzed";
sp:quantitativeResult [ a sp:QuantitativeResult;
sp:nonCriticalRange [ a sp:ValueRange;
sp:maximum [ a sp:ValueAndUnit;
sp:unit "mEq/L";
sp:value "155" ];
sp:minimum [ a sp:ValueAndUnit;
sp:unit "mEq/L";
sp:value "120" ] ];
sp:normalRange [ a sp:ValueRange;
sp:maximum [ a sp:ValueAndUnit;
sp:unit "mEq/L";
sp:value "145" ];
sp:minimum [ a sp:ValueAndUnit;
sp:unit "mEq/L";
sp:value "135" ] ];
sp:valueAndUnit [ a sp:ValueAndUnit;
sp:unit "mEq/L";
sp:value "140" ] ] .
<http://purl.bioontology.org/ontology/LNC/2951-2> a sp:Code,
spcode:LOINC;
dcterms:identifier "2951-2";
dcterms:title "Serum sodium";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://smartplatforms.org/terms/codes/LabResultInterpretation#normal> a sp:Code,
spcode:LabResultInterpretation;
dcterms:identifier "normal";
dcterms:title "Normal";
sp:system "http://smartplatforms.org/terms/codes/LabResultInterpretation#" .
<http://smartplatforms.org/terms/codes/LabStatus#final> a sp:Code,
spcode:LabResultStatus;
dcterms:identifier "final";
dcterms:title "Final";
sp:system "http://smartplatforms.org/terms/codes/LabStatus#" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://smartplatforms.org/terms/codes/LabStatus#final",
"@type": [
"spcode__LabResultStatus",
"Code"
],
"dcterms__identifier": "final",
"dcterms__title": "Final",
"system": "http://smartplatforms.org/terms/codes/LabStatus#"
},
{
"@id": "http://smartplatforms.org/terms/codes/LabResultInterpretation#normal",
"@type": [
"spcode__LabResultInterpretation",
"Code"
],
"dcterms__identifier": "normal",
"dcterms__title": "Normal",
"system": "http://smartplatforms.org/terms/codes/LabResultInterpretation#"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/2951-2",
"@type": [
"Code",
"spcode__LOINC"
],
"dcterms__identifier": "2951-2",
"dcterms__title": "Serum sodium",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/lab_results/2891724",
"@type": "LabResult",
"abnormalInterpretation": {
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/LabResultInterpretation#normal"
},
"dcterms__title": "Normal"
},
"accessionNumber": "AC09205823577",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2010-12-27T17:00:00",
"labName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/2951-2"
},
"dcterms__title": "Serum sodium",
"provenance": [
{
"@type": "CodeProvenance",
"dcterms__title": "Random blood sodium level",
"sourceCode": {
"@id": "http://my.local.coding.system/01234"
},
"translationFidelity": {
"@id": "http://smartplatforms.org/terms/codes/TranslationFidelity#verified"
}
}
]
},
"labStatus": {
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/LabStatus#final"
},
"dcterms__title": "Final results: complete and verified"
},
"notes": "Blood sample appears to have hemolyzed",
"quantitativeResult": {
"@type": "QuantitativeResult",
"nonCriticalRange": {
"@type": "ValueRange",
"maximum": {
"@type": "ValueAndUnit",
"unit": "mEq/L",
"value": "155"
},
"minimum": {
"@type": "ValueAndUnit",
"unit": "mEq/L",
"value": "120"
}
},
"normalRange": {
"@type": "ValueRange",
"maximum": {
"@type": "ValueAndUnit",
"unit": "mEq/L",
"value": "145"
},
"minimum": {
"@type": "ValueAndUnit",
"unit": "mEq/L",
"value": "135"
}
},
"valueAndUnit": {
"@type": "ValueAndUnit",
"unit": "mEq/L",
"value": "140"
}
}
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Clinically effective date and time of measurement, as an ISO-8601 string. This is the time when a sample was taken from a patient (e.g. time of a blood draw or urine collection). rdfs:Literal |
|
abnormalInterpretation
Optional: 0 or 1 |
http://smartplatforms.org/terms#abnormalInterpretation
Coded Value where code comes from LabResultInterpretation Abnormal interpretation status for this lab |
|
accessionNumber
Optional: 0 or 1 |
http://smartplatforms.org/terms#accessionNumber
External accession number for a lab result rdfs:Literal |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
labName
Required: exactly 1 |
http://smartplatforms.org/terms#labName
Coded Value where code comes from LOINC LOINC Coded Value for result (e.g. with title='Serum Sodium' and code=http://purl.bioontology.org/ontology/LNC/2951-2 |
|
labStatus
Optional: 0 or 1 |
http://smartplatforms.org/terms#labStatus
Coded Value where code comes from LabResultStatus Workflow status of this lab value (e.g. "finalized") |
|
narrativeResult
Optional: 0 or 1 |
http://smartplatforms.org/terms#narrativeResult
NarrativeResult Narrative result, if any. |
|
notes
Optional: 0 or 1 |
http://smartplatforms.org/terms#notes
Free-text notes about this result. rdfs:Literal |
|
quantitativeResult
Optional: 0 or 1 |
http://smartplatforms.org/terms#quantitativeResult
QuantitativeResult Qualitative result, if any |
Medication
Medication is a subtype of and inherits properties from:
SMART Statement
The SMART medication type expresses a medication at the level of an RxNorm branded or generic drug concept (e.g. "20 mg generic loratadine" or "20 mg brand-name claritin"). A medication must include a start date and may include an end date as well as a free-text "instructions" field describing how it should be taken. When the instructions are simple enough, we also represent them in a structured way, aiming to capture about 80% of outpatient medication dosing schedules. A very simple semantic structure defines how much to take ("quantity") and how often ("frequency"). Both quantity and frequency are defined with expressions from [http://www.unitsofmeasure.org The Unified Code for Units of Measure], or UCUM (see below).
In RDF/XML notation, a patient on oral amitriptyline 50 mg tablets might provide the following RDF sub-graph as part of a medication list:
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/"
xmlns:dcterms="http://purl.org/dc/terms/">
<sp:Medication rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/medications/123">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:drugName>
<sp:CodedValue>
<dcterms:title>AMITRIPTYLINE HCL 50 MG TAB</dcterms:title>
<sp:code>
<spcode:RxNorm_Semantic rdf:about="http://purl.bioontology.org/ontology/RXNORM/856845">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<sp:system>http://purl.bioontology.org/ontology/RXNORM/</sp:system>
<dcterms:identifier>856845</dcterms:identifier>
<dcterms:title>AMITRIPTYLINE HCL 50 MG TAB</dcterms:title>
</spcode:RxNorm_Semantic>
</sp:code>
</sp:CodedValue>
</sp:drugName>
<sp:startDate>2007-03-14</sp:startDate>
<sp:endDate>2007-08-14</sp:endDate>
<sp:instructions>Take two tablets twice daily as needed for pain</sp:instructions>
<sp:quantity>
<sp:ValueAndUnit>
<sp:value>2</sp:value>
<sp:unit>{tablet}</sp:unit>
</sp:ValueAndUnit>
</sp:quantity>
<sp:frequency>
<sp:ValueAndUnit>
<sp:value>2</sp:value>
<sp:unit>/d</sp:unit>
</sp:ValueAndUnit>
</sp:frequency>
</sp:Medication>
</rdf:RDF>
_:N0f7ffbf43a2f4fd8a44b0aafc232da5a <http://purl.org/dc/terms/title> "AMITRIPTYLINE HCL 50 MG TAB" .
_:N0f7ffbf43a2f4fd8a44b0aafc232da5a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N0f7ffbf43a2f4fd8a44b0aafc232da5a <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/RXNORM/856845> .
<http://purl.bioontology.org/ontology/RXNORM/856845> <http://purl.org/dc/terms/title> "AMITRIPTYLINE HCL 50 MG TAB" .
<http://purl.bioontology.org/ontology/RXNORM/856845> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/RxNorm_Semantic> .
<http://purl.bioontology.org/ontology/RXNORM/856845> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/RXNORM/856845> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/RXNORM/" .
<http://purl.bioontology.org/ontology/RXNORM/856845> <http://purl.org/dc/terms/identifier> "856845" .
_:Nfb8a091e335948eaa37b176c61d1f602 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:Nfb8a091e335948eaa37b176c61d1f602 <http://smartplatforms.org/terms#value> "2" .
_:Nfb8a091e335948eaa37b176c61d1f602 <http://smartplatforms.org/terms#unit> "/d" .
_:N4a09863dd54645a89d5de672d7745823 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:N4a09863dd54645a89d5de672d7745823 <http://smartplatforms.org/terms#value> "2" .
_:N4a09863dd54645a89d5de672d7745823 <http://smartplatforms.org/terms#unit> "{tablet}" .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://smartplatforms.org/terms#instructions> "Take two tablets twice daily as needed for pain" .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://smartplatforms.org/terms#frequency> _:Nfb8a091e335948eaa37b176c61d1f602 .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Medication> .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://smartplatforms.org/terms#drugName> _:N0f7ffbf43a2f4fd8a44b0aafc232da5a .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://smartplatforms.org/terms#quantity> _:N4a09863dd54645a89d5de672d7745823 .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://smartplatforms.org/terms#startDate> "2007-03-14" .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> <http://smartplatforms.org/terms#endDate> "2007-08-14" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/medications/123> a sp:Medication;
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:drugName [ a sp:CodedValue;
dcterms:title "AMITRIPTYLINE HCL 50 MG TAB";
sp:code <http://purl.bioontology.org/ontology/RXNORM/856845> ];
sp:endDate "2007-08-14";
sp:frequency [ a sp:ValueAndUnit;
sp:unit "/d";
sp:value "2" ];
sp:instructions "Take two tablets twice daily as needed for pain";
sp:quantity [ a sp:ValueAndUnit;
sp:unit "{tablet}";
sp:value "2" ];
sp:startDate "2007-03-14" .
<http://purl.bioontology.org/ontology/RXNORM/856845> a sp:Code,
spcode:RxNorm_Semantic;
dcterms:identifier "856845";
dcterms:title "AMITRIPTYLINE HCL 50 MG TAB";
sp:system "http://purl.bioontology.org/ontology/RXNORM/" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/medications/123",
"@type": "Medication",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"drugName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/RXNORM/856845"
},
"dcterms__title": "AMITRIPTYLINE HCL 50 MG TAB"
},
"endDate": "2007-08-14",
"frequency": {
"@type": "ValueAndUnit",
"unit": "/d",
"value": "2"
},
"instructions": "Take two tablets twice daily as needed for pain",
"quantity": {
"@type": "ValueAndUnit",
"unit": "{tablet}",
"value": "2"
},
"startDate": "2007-03-14"
},
{
"@id": "http://purl.bioontology.org/ontology/RXNORM/856845",
"@type": [
"spcode__RxNorm_Semantic",
"Code"
],
"dcterms__identifier": "856845",
"dcterms__title": "AMITRIPTYLINE HCL 50 MG TAB",
"system": "http://purl.bioontology.org/ontology/RXNORM/"
}
]
}
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
drugName
Required: exactly 1 |
http://smartplatforms.org/terms#drugName
Coded Value where code comes from RxNorm_Semantic RxNorm Concept ID for this medication. Note: the RxNorm CUI for a SMART medication should have one of the following four types: SCD (Semantic Clinical Drug), SBD (Semantic Branded Drug), GPCK (Generic Pack), BPCK (Brand Name Pack). Restricting medications to these four RxNorm types can also be expressed as "TTY in ('SCD','SBD','GPCK','BPCK')" -- and this restriction ensures that SMART medications use concepts of the appropriate specificity: concepts like "650 mg generic acetaminophen" or "20 mg brand-name Claritin". Please note that SMART medications do not include explicit structured data about pill strength, concentration, or precise ingredients. These data are available through RxNorm, including through the free [http://rxnav.nlm.nih.gov/RxNormRestAPI.html RxNav REST API]. Code element with code drawn from http://purl.bioontology.org/ontology/RXNORM/{rxcui} |
|
endDate
Optional: 0 or 1 |
http://smartplatforms.org/terms#endDate
When the patient stopped taking a medication, as an ISO-8601 string. xsd:dateTime |
|
frequency
Optional: 0 or 1 |
http://smartplatforms.org/terms#frequency
ValueAndUnit For a medication with a simple dosing schedule, record how often to take the medication. The frequency should be recorded as a [http://www.unitsofmeasure.org/ UCUM] expression. In this case we use a restricted subset of UCUM that defines the following units only: "/d" (per day), "/wk" (per week), "/mo" (per month). For example, you would express the concept of "TID" or "three times daily" as a ValueAndUnit node with quantity="3", unit="/d". |
|
fulfillment
Optional: 0 or more |
http://smartplatforms.org/terms#fulfillment
Fulfillment A single fulfillment event (that is, the medication was dispensed to the patient by a pharmacy) |
|
instructions
Required: exactly 1 |
http://smartplatforms.org/terms#instructions
Clinician-supplied instructions from the prescription signature rdfs:Literal |
|
provenance
Optional: 0 or more |
http://smartplatforms.org/terms#provenance
Code |
|
quantity
Optional: 0 or 1 |
http://smartplatforms.org/terms#quantity
ValueAndUnit For a medication with a simple dosing schedule, record the amount to take with each administration. The quantity should be recorded as a [http://www.unitsofmeasure.org/ UCUM] expression. For some medications, the appoporiate quantity will be a volume (e.g. "5 mL" of an oral acetaminophen solution). For other medications, the appropriate quantity may be expresses in terms of tablets, puffs, or actuations: UCUM call these "non-units", and they should be written inside of curly braces to avoid confusion. For example, you would express "1 tablet" as a ValueAndUnit node with quantity="1", unit="{tablet}". |
|
startDate
Required: exactly 1 |
http://smartplatforms.org/terms#startDate
When the patient started taking a medication, as an ISO-8601 string. xsd:dateTime |
Panel
Panel is a subtype of and inherits properties from:
SMART Statement
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
Photograph
Photograph is a subtype of and inherits properties from:
Document, SMART Statement
Models specific image documents that represent the patient. This allows SMART applications to show a patient photo (if available) to support an even more personal clinician-patient interaction. The photographs are returned in the Documents model format. The intent of these photographs is to show a head shot of the patient.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:v="http://www.w3.org/2006/vcard/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/">
<sp:Document rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/documents/632678">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:fileName>photo.png</sp:fileName>
<dcterms:title>Head photograph of the patient</dcterms:title>
<dcterms:date>2010-05-12T04:00:00Z</dcterms:date>
<dcterms:format>
<dcterms:MediaTypeOrExtent rdf:about="http://purl.org/NET/mediatypes/image/png">
<rdfs:label>image/png</rdfs:label>
</dcterms:MediaTypeOrExtent>
</dcterms:format>
<sp:fileSize>
<sp:ValueAndUnit>
<sp:value>2917</sp:value>
<sp:unit>byte</sp:unit>
</sp:ValueAndUnit>
</sp:fileSize>
<sp:resource>
<sp:Resource>
<sp:location>http://sandbox-api.smartplatforms.org/records/2169591/documents/632678</sp:location>
<sp:hash>
<sp:Hash>
<sp:algorithm>SHA-256</sp:algorithm>
<sp:value>0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620</sp:value>
</sp:Hash>
</sp:hash>
<sp:content>
<sp:Content>
<sp:encoding>Base64</sp:encoding>
<sp:value>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</sp:value>
</sp:Content>
</sp:content>
</sp:Resource>
</sp:resource>
</sp:Document>
</rdf:RDF>
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Document> .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#fileSize> _:Nd29cf12fb91a4462be8eeb3dc4597aba .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://purl.org/dc/terms/title> "Head photograph of the patient" .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://purl.org/dc/terms/date> "2010-05-12T04:00:00Z" .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#resource> _:Ncc7810a69f2048c29d1a6c4af4e23ad6 .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://purl.org/dc/terms/format> <http://purl.org/NET/mediatypes/image/png> .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#fileName> "photo.png" .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
_:Nd29cf12fb91a4462be8eeb3dc4597aba <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#ValueAndUnit> .
_:Nd29cf12fb91a4462be8eeb3dc4597aba <http://smartplatforms.org/terms#value> "2917" .
_:Nd29cf12fb91a4462be8eeb3dc4597aba <http://smartplatforms.org/terms#unit> "byte" .
<http://purl.org/NET/mediatypes/image/png> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/terms/MediaTypeOrExtent> .
<http://purl.org/NET/mediatypes/image/png> <http://www.w3.org/2000/01/rdf-schema#label> "image/png" .
_:Nd18f44982ada4569b2676acd9b4d6395 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Hash> .
_:Nd18f44982ada4569b2676acd9b4d6395 <http://smartplatforms.org/terms#value> "0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620" .
_:Nd18f44982ada4569b2676acd9b4d6395 <http://smartplatforms.org/terms#algorithm> "SHA-256" .
_:N12b0300fa6344c9582848b25c6465e2d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Content> .
_:N12b0300fa6344c9582848b25c6465e2d <http://smartplatforms.org/terms#value> "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" .
_:N12b0300fa6344c9582848b25c6465e2d <http://smartplatforms.org/terms#encoding> "Base64" .
_:Ncc7810a69f2048c29d1a6c4af4e23ad6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Resource> .
_:Ncc7810a69f2048c29d1a6c4af4e23ad6 <http://smartplatforms.org/terms#content> _:N12b0300fa6344c9582848b25c6465e2d .
_:Ncc7810a69f2048c29d1a6c4af4e23ad6 <http://smartplatforms.org/terms#hash> _:Nd18f44982ada4569b2676acd9b4d6395 .
_:Ncc7810a69f2048c29d1a6c4af4e23ad6 <http://smartplatforms.org/terms#location> "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sp: <http://smartplatforms.org/terms#> .
<http://sandbox-api.smartplatforms.org/records/2169591/documents/632678> a sp:Document;
dcterms:date "2010-05-12T04:00:00Z";
dcterms:format <http://purl.org/NET/mediatypes/image/png>;
dcterms:title "Head photograph of the patient";
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:fileName "photo.png";
sp:fileSize [ a sp:ValueAndUnit;
sp:unit "byte";
sp:value "2917" ];
sp:resource [ a sp:Resource;
sp:content [ a sp:Content;
sp:encoding "Base64";
sp:value "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" ];
sp:hash [ a sp:Hash;
sp:algorithm "SHA-256";
sp:value "0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620" ];
sp:location "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678" ] .
<http://purl.org/NET/mediatypes/image/png> a dcterms:MediaTypeOrExtent;
rdfs:label "image/png" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://purl.org/NET/mediatypes/image/png",
"@type": "dcterms__MediaTypeOrExtent",
"rdfs__label": "image/png"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678",
"@type": "Document",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2010-05-12T04:00:00Z",
"dcterms__format": {
"@id": "http://purl.org/NET/mediatypes/image/png"
},
"dcterms__title": "Head photograph of the patient",
"fileName": "photo.png",
"fileSize": {
"@type": "ValueAndUnit",
"unit": "byte",
"value": "2917"
},
"resource": [
{
"@type": "Resource",
"content": {
"@type": "Content",
"encoding": "Base64",
"value": "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"
},
"hash": {
"@type": "Hash",
"algorithm": "SHA-256",
"value": "0e7981902c6c410d673771a3dd0a830712c15930bdec77701922138ea950c620"
},
"location": "http://sandbox-api.smartplatforms.org/records/2169591/documents/632678"
}
]
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Date of issue of the document as an ISO-8601 string rdfs:Literal |
|
format
Required: exactly 1 |
http://purl.org/dc/terms/format
MediaTypeOrExtent |
|
title
Optional: 0 or 1 |
http://purl.org/dc/terms/title
A descriptive title of the document (a string) rdfs:Literal |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
documentType
Optional: 0 or more |
http://smartplatforms.org/terms#documentType
Coded Value where code comes from DocumentType The type of the document |
|
fileName
Optional: 0 or 1 |
http://smartplatforms.org/terms#fileName
The file system name of the document rdfs:Literal |
|
fileSize
Optional: 0 or 1 |
http://smartplatforms.org/terms#fileSize
ValueAndUnit where unit has value: byte |
|
provider
Optional: 0 or 1 |
http://smartplatforms.org/terms#provider
Provider |
|
resource
Required: exactly 1 |
http://smartplatforms.org/terms#resource
Resource Provides a link to or the actual payload of the document |
Problem
Problem is a subtype of and inherits properties from:
SMART Statement
The SMART Problem model describes a problem that the patient has been diagnosed with or has reported (such as illness, pain, injury). More broadly, the model is used to capture clinical findings under SNOMED CT's findings hierarchy.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:Problem rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/problems/961237">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:problemName>
<sp:CodedValue>
<dcterms:title>Backache (finding)</dcterms:title>
<sp:code>
<spcode:SNOMED rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/161891005">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Backache (finding)</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>161891005</dcterms:identifier>
</spcode:SNOMED>
</sp:code>
</sp:CodedValue>
</sp:problemName>
<sp:startDate>2007-06-12</sp:startDate>
<sp:endDate>2007-08-01</sp:endDate>
<sp:notes>also suggested some home exercises</sp:notes>
</sp:Problem>
</rdf:RDF>
_:Ndb09ddd2c3f4492fb8a1a3929bf0b1de <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Ndb09ddd2c3f4492fb8a1a3929bf0b1de <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/161891005> .
_:Ndb09ddd2c3f4492fb8a1a3929bf0b1de <http://purl.org/dc/terms/title> "Backache (finding)" .
<http://purl.bioontology.org/ontology/SNOMEDCT/161891005> <http://purl.org/dc/terms/identifier> "161891005" .
<http://purl.bioontology.org/ontology/SNOMEDCT/161891005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/SNOMED> .
<http://purl.bioontology.org/ontology/SNOMEDCT/161891005> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/161891005> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/161891005> <http://purl.org/dc/terms/title> "Backache (finding)" .
<http://sandbox-api.smartplatforms.org/records/2169591/problems/961237> <http://smartplatforms.org/terms#endDate> "2007-08-01" .
<http://sandbox-api.smartplatforms.org/records/2169591/problems/961237> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Problem> .
<http://sandbox-api.smartplatforms.org/records/2169591/problems/961237> <http://smartplatforms.org/terms#problemName> _:Ndb09ddd2c3f4492fb8a1a3929bf0b1de .
<http://sandbox-api.smartplatforms.org/records/2169591/problems/961237> <http://smartplatforms.org/terms#notes> "also suggested some home exercises" .
<http://sandbox-api.smartplatforms.org/records/2169591/problems/961237> <http://smartplatforms.org/terms#startDate> "2007-06-12" .
<http://sandbox-api.smartplatforms.org/records/2169591/problems/961237> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/problems/961237> a sp:Problem;
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:endDate "2007-08-01";
sp:notes "also suggested some home exercises";
sp:problemName [ a sp:CodedValue;
dcterms:title "Backache (finding)";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/161891005> ];
sp:startDate "2007-06-12" .
<http://purl.bioontology.org/ontology/SNOMEDCT/161891005> a sp:Code,
spcode:SNOMED;
dcterms:identifier "161891005";
dcterms:title "Backache (finding)";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/161891005",
"@type": [
"spcode__SNOMED",
"Code"
],
"dcterms__identifier": "161891005",
"dcterms__title": "Backache (finding)",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/problems/961237",
"@type": "Problem",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"endDate": "2007-08-01",
"notes": "also suggested some home exercises",
"problemName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/161891005"
},
"dcterms__title": "Backache (finding)"
},
"startDate": "2007-06-12"
}
]
}
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
encounters
Optional: 0 or more |
http://smartplatforms.org/terms#encounters
Encounter Encounters at which this problem has been observed. |
|
endDate
Optional: 0 or 1 |
http://smartplatforms.org/terms#endDate
Date on which problem resolve (if any), as an ISO-8601 string. xsd:dateTime |
|
notes
Optional: 0 or 1 |
http://smartplatforms.org/terms#notes
Additional notes about the problem rdfs:Literal |
|
problemName
Required: exactly 1 |
http://smartplatforms.org/terms#problemName
Coded Value where code comes from SNOMED SNOMED-CT Concept for the problem |
|
problemStatus
Optional: 0 or 1 |
http://smartplatforms.org/terms#problemStatus
Coded Value where code comes from ProblemStatus Status of this problem, using a SNOMED code for Active, Inactive, or Resolved. |
|
startDate
Required: exactly 1 |
http://smartplatforms.org/terms#startDate
Date on which problem began, as an ISO-8601 string. xsd:dateTime |
Procedure
Procedure is a subtype of and inherits properties from:
SMART Statement
The SMART Procedure model describes a procedure that has been performed on a patient. Examples include surgical procedures (such as an appendectomy) and physical exam procedures (such as a diabetic foot exam). More broadly, the SMART procedure model is used to capture events under SNOMED CT's Procedure hierarchy.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:spcode="http://smartplatforms.org/terms/codes/"
xmlns:v="http://www.w3.org/2006/vcard/ns#">
<sp:Procedure rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<dcterms:date>2011-02-15</dcterms:date>
<sp:procedureName>
<sp:CodedValue>
<dcterms:title></dcterms:title>
<sp:code>
<spcode:Procedure rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/80146002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>80146002</dcterms:identifier>
<dcterms:title>Appendectomy</dcterms:title>
</spcode:Procedure>
</sp:code>
</sp:CodedValue>
</sp:procedureName>
<sp:provider>
<sp:Provider>
<v:n>
<v:Name>
<v:given-name>Joshua</v:given-name>
<v:family-name>Mandel</v:family-name>
</v:Name>
</v:n>
</sp:Provider>
</sp:provider>
<sp:notes>Patient claimed to have already had an appendectomy</sp:notes>
</sp:Procedure>
</rdf:RDF>
_:N25a1f16645f848f885a59a539e557daf <http://www.w3.org/2006/vcard/ns#n> _:Na52e624db1214927909734d85b86e7f1 .
_:N25a1f16645f848f885a59a539e557daf <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Provider> .
_:Na52e624db1214927909734d85b86e7f1 <http://www.w3.org/2006/vcard/ns#family-name> "Mandel" .
_:Na52e624db1214927909734d85b86e7f1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2006/vcard/ns#Name> .
_:Na52e624db1214927909734d85b86e7f1 <http://www.w3.org/2006/vcard/ns#given-name> "Joshua" .
<http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235> <http://smartplatforms.org/terms#notes> "Patient claimed to have already had an appendectomy" .
<http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235> <http://smartplatforms.org/terms#procedureName> _:Nd9acac4f12854462b8c08e642484e56a .
<http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235> <http://purl.org/dc/terms/date> "2011-02-15" .
<http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235> <http://smartplatforms.org/terms#provider> _:N25a1f16645f848f885a59a539e557daf .
<http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Procedure> .
<http://purl.bioontology.org/ontology/SNOMEDCT/80146002> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/80146002> <http://purl.org/dc/terms/title> "Appendectomy" .
<http://purl.bioontology.org/ontology/SNOMEDCT/80146002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/80146002> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/Procedure> .
<http://purl.bioontology.org/ontology/SNOMEDCT/80146002> <http://purl.org/dc/terms/identifier> "80146002" .
_:Nd9acac4f12854462b8c08e642484e56a <http://purl.org/dc/terms/title> "" .
_:Nd9acac4f12854462b8c08e642484e56a <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/80146002> .
_:Nd9acac4f12854462b8c08e642484e56a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
<http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235> a sp:Procedure;
dcterms:date "2011-02-15";
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:notes "Patient claimed to have already had an appendectomy";
sp:procedureName [ a sp:CodedValue;
dcterms:title "";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/80146002> ];
sp:provider [ a sp:Provider;
vcard:n [ a vcard:Name;
vcard:family-name "Mandel";
vcard:given-name "Joshua" ] ] .
<http://purl.bioontology.org/ontology/SNOMEDCT/80146002> a sp:Code,
spcode:Procedure;
dcterms:identifier "80146002";
dcterms:title "Appendectomy";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/procedures/5897235",
"@type": "Procedure",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"dcterms__date": "2011-02-15",
"notes": "Patient claimed to have already had an appendectomy",
"procedureName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/80146002"
},
"dcterms__title": ""
},
"provider": {
"@type": "Provider",
"vcard__n": {
"@type": "vcard__Name",
"vcard__family_name": "Mandel",
"vcard__given_name": "Joshua"
}
}
},
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/80146002",
"@type": [
"Code",
"spcode__Procedure"
],
"dcterms__identifier": "80146002",
"dcterms__title": "Appendectomy",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
When the proceduere was performed, encoded as an ISO-8601 string. rdfs:Literal |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
notes
Optional: 0 or 1 |
http://smartplatforms.org/terms#notes
Free-text notes about this procedure. rdfs:Literal |
|
procedureName
Required: exactly 1 |
http://smartplatforms.org/terms#procedureName
Coded Value where code comes from Procedure SNOMED CT concept ID (under the procedure hierarchy) for this procedure. Code element with code drawn from http://purl.bioontology.org/ontology/SNOMEDCT/{cui} |
|
procedureStatus
Optional: 0 or 1 |
http://smartplatforms.org/terms#procedureStatus
Coded Value where code comes from ProcedureStatus Status of procedure. (Active, complete, cancelled, aborted). |
|
provider
Optional: 0 or more |
http://smartplatforms.org/terms#provider
Provider Provider responsible for the procedure. |
SMART Statement
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
Scratchpad Data
Social History
Social History is a subtype of and inherits properties from:
SMART Statement
The SMART Social History model describes smoking status according to Meaningful Use classifications. This mode is expected to expand over time to accommodate additional aspects of the social history.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:SocialHistory rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/social_history">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:smokingStatus>
<sp:CodedValue>
<dcterms:title>Former smoker</dcterms:title>
<sp:code>
<spcode:SmokingStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/8517006">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Former smoker</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>8517006</dcterms:identifier>
</spcode:SmokingStatus>
</sp:code>
</sp:CodedValue>
</sp:smokingStatus>
</sp:SocialHistory>
</rdf:RDF>
<http://sandbox-api.smartplatforms.org/records/2169591/social_history> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#SocialHistory> .
<http://sandbox-api.smartplatforms.org/records/2169591/social_history> <http://smartplatforms.org/terms#smokingStatus> _:N19f66155b54d48e9b7bd52553137fb06 .
<http://sandbox-api.smartplatforms.org/records/2169591/social_history> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://purl.bioontology.org/ontology/SNOMEDCT/8517006> <http://purl.org/dc/terms/title> "Former smoker" .
<http://purl.bioontology.org/ontology/SNOMEDCT/8517006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/8517006> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/SmokingStatus> .
<http://purl.bioontology.org/ontology/SNOMEDCT/8517006> <http://purl.org/dc/terms/identifier> "8517006" .
<http://purl.bioontology.org/ontology/SNOMEDCT/8517006> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
_:N19f66155b54d48e9b7bd52553137fb06 <http://purl.org/dc/terms/title> "Former smoker" .
_:N19f66155b54d48e9b7bd52553137fb06 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N19f66155b54d48e9b7bd52553137fb06 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/8517006> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/social_history> a sp:SocialHistory;
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:smokingStatus [ a sp:CodedValue;
dcterms:title "Former smoker";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/8517006> ] .
<http://purl.bioontology.org/ontology/SNOMEDCT/8517006> a sp:Code,
spcode:SmokingStatus;
dcterms:identifier "8517006";
dcterms:title "Former smoker";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/8517006",
"@type": [
"Code",
"spcode__SmokingStatus"
],
"dcterms__identifier": "8517006",
"dcterms__title": "Former smoker",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/social_history",
"@type": "SocialHistory",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"smokingStatus": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/8517006"
},
"dcterms__title": "Former smoker"
}
}
]
}
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
smokingStatus
Optional: 0 or 1 |
http://smartplatforms.org/terms#smokingStatus
Coded Value A patient's smoking status according the Meaningful Use classification. This must be one of six prespecified LOINC codes: 449868002 230059006 8517006 266919005 266927001 405746006 |
Vital Sign Set
Vital Sign Set is a subtype of and inherits properties from:
SMART Statement
Each Vital Sign Set element represent a set of vital signs collected together.
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:sp="http://smartplatforms.org/terms#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:v="http://www.w3.org/2006/vcard/ns#"
xmlns:spcode="http://smartplatforms.org/terms/codes/">
<sp:VitalSignSet rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<dcterms:date>2010-05-12T04:00:00Z</dcterms:date>
<sp:encounter>
<sp:Encounter rdf:about="http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352">
<sp:belongsTo rdf:resource="http://sandbox-api.smartplatforms.org/records/2169591" />
<sp:startDate>2010-05-12T04:00:00Z</sp:startDate>
<sp:endDate>2010-05-12T04:20:00Z</sp:endDate>
<sp:encounterType>
<sp:CodedValue>
<dcterms:title>Ambulatory encounter</dcterms:title>
<sp:code>
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#ambulatory">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Ambulatory encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>ambulatory</dcterms:identifier>
</spcode:EncounterType>
</sp:code>
</sp:CodedValue>
</sp:encounterType>
</sp:Encounter>
</sp:encounter>
<sp:height>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Body height</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8302-2">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body height</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8302-2</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>180</sp:value>
<sp:unit>cm</sp:unit>
</sp:VitalSign>
</sp:height>
<sp:weight>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Body weight</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/3141-9">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body weight</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>3141-9</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>70.8</sp:value>
<sp:unit>kg</sp:unit>
</sp:VitalSign>
</sp:weight>
<sp:bodyMassIndex>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Body mass index</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/39156-5">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body mass index</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>39156-5</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>21.8</sp:value>
<sp:unit>kg/m2</sp:unit>
</sp:VitalSign>
</sp:bodyMassIndex>
<sp:respiratoryRate>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Respiration rate</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/9279-1">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Respiration rate</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>9279-1</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>16</sp:value>
<sp:unit>{breaths}/min</sp:unit>
</sp:VitalSign>
</sp:respiratoryRate>
<sp:heartRate>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Heart rate</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8867-4">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Heart rate</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8867-4</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>70</sp:value>
<sp:unit>{beats}/min</sp:unit>
</sp:VitalSign>
</sp:heartRate>
<sp:headCircumference>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Head circumference</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8287-5">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Head circumference</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8287-5</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>56.4</sp:value>
<sp:unit>cm</sp:unit>
</sp:VitalSign>
</sp:headCircumference>
<sp:oxygenSaturation>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Oxygen saturation</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/2710-2">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Oxygen saturation</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>2710-2</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>99</sp:value>
<sp:unit>%{HemoglobinSaturation}</sp:unit>
</sp:VitalSign>
</sp:oxygenSaturation>
<sp:temperature>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Body temperature</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8310-5">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body temperature</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8310-5</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>37</sp:value>
<sp:unit>Cel</sp:unit>
</sp:VitalSign>
</sp:temperature>
<sp:bloodPressure>
<sp:BloodPressure>
<sp:systolic>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Intravascular systolic</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8480-6">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Intravascular systolic</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8480-6</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>132</sp:value>
<sp:unit>mm[Hg]</sp:unit>
</sp:VitalSign>
</sp:systolic>
<sp:diastolic>
<sp:VitalSign>
<sp:vitalName>
<sp:CodedValue>
<dcterms:title>Intravascular diastolic</dcterms:title>
<sp:code>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8462-4">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Intravascular diastolic</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8462-4</dcterms:identifier>
</spcode:VitalSign>
</sp:code>
</sp:CodedValue>
</sp:vitalName>
<sp:value>82</sp:value>
<sp:unit>mm[Hg]</sp:unit>
</sp:VitalSign>
</sp:diastolic>
<sp:bodyPosition>
<sp:CodedValue>
<dcterms:title>Sitting</dcterms:title>
<sp:code>
<spcode:BloodPressureBodyPosition rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/33586001" >
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Sitting</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>33586001</dcterms:identifier>
</spcode:BloodPressureBodyPosition>
</sp:code>
</sp:CodedValue>
</sp:bodyPosition>
<sp:bodySite>
<sp:CodedValue>
<dcterms:title>Right arm</dcterms:title>
<sp:code>
<spcode:BloodPressureBodySite rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/368209003" >
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Right arm</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>368209003</dcterms:identifier>
</spcode:BloodPressureBodySite>
</sp:code>
</sp:CodedValue>
</sp:bodySite>
</sp:BloodPressure>
</sp:bloodPressure>
</sp:VitalSignSet>
</rdf:RDF>
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Encounter> .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#endDate> "2010-05-12T04:20:00Z" .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#encounterType> _:N2270970f174b4e4384a9ecbeda9d111a .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#startDate> "2010-05-12T04:00:00Z" .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
_:Na15ee35af0704aaab0387ffc43acf7e2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:Na15ee35af0704aaab0387ffc43acf7e2 <http://smartplatforms.org/terms#value> "21.8" .
_:Na15ee35af0704aaab0387ffc43acf7e2 <http://smartplatforms.org/terms#vitalName> _:Nb96e3f63c9d74dca91657452dd769446 .
_:Na15ee35af0704aaab0387ffc43acf7e2 <http://smartplatforms.org/terms#unit> "kg/m2" .
<http://purl.bioontology.org/ontology/SNOMEDCT/368209003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/368209003> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/BloodPressureBodySite> .
<http://purl.bioontology.org/ontology/SNOMEDCT/368209003> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/368209003> <http://purl.org/dc/terms/title> "Right arm" .
<http://purl.bioontology.org/ontology/SNOMEDCT/368209003> <http://purl.org/dc/terms/identifier> "368209003" .
_:N877c0f9914dc491eb44b76c05090d81b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N877c0f9914dc491eb44b76c05090d81b <http://purl.org/dc/terms/title> "Respiration rate" .
_:N877c0f9914dc491eb44b76c05090d81b <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/9279-1> .
_:Nbc835818176d493b962cbd1151350f81 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:Nbc835818176d493b962cbd1151350f81 <http://smartplatforms.org/terms#value> "180" .
_:Nbc835818176d493b962cbd1151350f81 <http://smartplatforms.org/terms#vitalName> _:N9694b228cc6f4fa1b7d9d9f8e5b169fa .
_:Nbc835818176d493b962cbd1151350f81 <http://smartplatforms.org/terms#unit> "cm" .
_:N03be89a87f9d413fa960232fa7c4f998 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:N03be89a87f9d413fa960232fa7c4f998 <http://smartplatforms.org/terms#value> "70.8" .
_:N03be89a87f9d413fa960232fa7c4f998 <http://smartplatforms.org/terms#vitalName> _:Nb340a12aad0c4d4ba05de7e327c5498e .
_:N03be89a87f9d413fa960232fa7c4f998 <http://smartplatforms.org/terms#unit> "kg" .
_:Nae55baf9174b480890d561426ff20d91 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nae55baf9174b480890d561426ff20d91 <http://purl.org/dc/terms/title> "Oxygen saturation" .
_:Nae55baf9174b480890d561426ff20d91 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/2710-2> .
_:N0a1b1020e86149cea450b36c12f444d3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:N0a1b1020e86149cea450b36c12f444d3 <http://smartplatforms.org/terms#value> "37" .
_:N0a1b1020e86149cea450b36c12f444d3 <http://smartplatforms.org/terms#vitalName> _:N12049a973a944953a3fe7ea4143f7d2c .
_:N0a1b1020e86149cea450b36c12f444d3 <http://smartplatforms.org/terms#unit> "Cel" .
_:N637594b6b73844248cab20b0c6220b32 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N637594b6b73844248cab20b0c6220b32 <http://purl.org/dc/terms/title> "Right arm" .
_:N637594b6b73844248cab20b0c6220b32 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/368209003> .
<http://purl.bioontology.org/ontology/LNC/39156-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/39156-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/39156-5> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/39156-5> <http://purl.org/dc/terms/title> "Body mass index" .
<http://purl.bioontology.org/ontology/LNC/39156-5> <http://purl.org/dc/terms/identifier> "39156-5" .
_:Nb96e3f63c9d74dca91657452dd769446 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nb96e3f63c9d74dca91657452dd769446 <http://purl.org/dc/terms/title> "Body mass index" .
_:Nb96e3f63c9d74dca91657452dd769446 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/39156-5> .
_:N9cde0ce5c9804d64869d43bf04dec2fb <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N9cde0ce5c9804d64869d43bf04dec2fb <http://purl.org/dc/terms/title> "Sitting" .
_:N9cde0ce5c9804d64869d43bf04dec2fb <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/SNOMEDCT/33586001> .
<http://purl.bioontology.org/ontology/LNC/8462-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/8462-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/8462-4> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8462-4> <http://purl.org/dc/terms/title> "Intravascular diastolic" .
<http://purl.bioontology.org/ontology/LNC/8462-4> <http://purl.org/dc/terms/identifier> "8462-4" .
_:Nbf1a9a32336d4ffa88228c364bca4a7d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nbf1a9a32336d4ffa88228c364bca4a7d <http://purl.org/dc/terms/title> "Intravascular diastolic" .
_:Nbf1a9a32336d4ffa88228c364bca4a7d <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/8462-4> .
<http://purl.bioontology.org/ontology/LNC/3141-9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/3141-9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/3141-9> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/3141-9> <http://purl.org/dc/terms/title> "Body weight" .
<http://purl.bioontology.org/ontology/LNC/3141-9> <http://purl.org/dc/terms/identifier> "3141-9" .
<http://purl.bioontology.org/ontology/LNC/8287-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/8287-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/8287-5> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8287-5> <http://purl.org/dc/terms/title> "Head circumference" .
<http://purl.bioontology.org/ontology/LNC/8287-5> <http://purl.org/dc/terms/identifier> "8287-5" .
_:N3e8f346497ec45bdbc444968926fff7f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:N3e8f346497ec45bdbc444968926fff7f <http://smartplatforms.org/terms#value> "82" .
_:N3e8f346497ec45bdbc444968926fff7f <http://smartplatforms.org/terms#vitalName> _:Nbf1a9a32336d4ffa88228c364bca4a7d .
_:N3e8f346497ec45bdbc444968926fff7f <http://smartplatforms.org/terms#unit> "mm[Hg]" .
_:N0dec3fd777614a008727490626a44c05 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N0dec3fd777614a008727490626a44c05 <http://purl.org/dc/terms/title> "Intravascular systolic" .
_:N0dec3fd777614a008727490626a44c05 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/8480-6> .
<http://purl.bioontology.org/ontology/LNC/8310-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/8310-5> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/8310-5> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8310-5> <http://purl.org/dc/terms/title> "Body temperature" .
<http://purl.bioontology.org/ontology/LNC/8310-5> <http://purl.org/dc/terms/identifier> "8310-5" .
_:N2270970f174b4e4384a9ecbeda9d111a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N2270970f174b4e4384a9ecbeda9d111a <http://purl.org/dc/terms/title> "Ambulatory encounter" .
_:N2270970f174b4e4384a9ecbeda9d111a <http://smartplatforms.org/terms#code> <http://smartplatforms.org/terms/codes/EncounterType#ambulatory> .
_:N67ee1a78c43a437ab10d9749351be26c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:N67ee1a78c43a437ab10d9749351be26c <http://smartplatforms.org/terms#value> "99" .
_:N67ee1a78c43a437ab10d9749351be26c <http://smartplatforms.org/terms#vitalName> _:Nae55baf9174b480890d561426ff20d91 .
_:N67ee1a78c43a437ab10d9749351be26c <http://smartplatforms.org/terms#unit> "%{HemoglobinSaturation}" .
<http://purl.bioontology.org/ontology/LNC/8480-6> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/8480-6> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/8480-6> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8480-6> <http://purl.org/dc/terms/title> "Intravascular systolic" .
<http://purl.bioontology.org/ontology/LNC/8480-6> <http://purl.org/dc/terms/identifier> "8480-6" .
_:N12049a973a944953a3fe7ea4143f7d2c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N12049a973a944953a3fe7ea4143f7d2c <http://purl.org/dc/terms/title> "Body temperature" .
_:N12049a973a944953a3fe7ea4143f7d2c <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/8310-5> .
_:N600861d02654495aa8fe9bb8e22de77f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:N600861d02654495aa8fe9bb8e22de77f <http://smartplatforms.org/terms#value> "56.4" .
_:N600861d02654495aa8fe9bb8e22de77f <http://smartplatforms.org/terms#vitalName> _:N9c6feccf619a4cd2b0b98ff3175cd46f .
_:N600861d02654495aa8fe9bb8e22de77f <http://smartplatforms.org/terms#unit> "cm" .
_:N21a09e13777d4739a9681649b46a84c7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:N21a09e13777d4739a9681649b46a84c7 <http://smartplatforms.org/terms#value> "70" .
_:N21a09e13777d4739a9681649b46a84c7 <http://smartplatforms.org/terms#vitalName> _:Nd7dbf856499345e8a43efb0ecfb6ea24 .
_:N21a09e13777d4739a9681649b46a84c7 <http://smartplatforms.org/terms#unit> "{beats}/min" .
_:Nb340a12aad0c4d4ba05de7e327c5498e <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nb340a12aad0c4d4ba05de7e327c5498e <http://purl.org/dc/terms/title> "Body weight" .
_:Nb340a12aad0c4d4ba05de7e327c5498e <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/3141-9> .
<http://purl.bioontology.org/ontology/LNC/2710-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/2710-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/2710-2> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/2710-2> <http://purl.org/dc/terms/title> "Oxygen saturation" .
<http://purl.bioontology.org/ontology/LNC/2710-2> <http://purl.org/dc/terms/identifier> "2710-2" .
_:N9c6feccf619a4cd2b0b98ff3175cd46f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N9c6feccf619a4cd2b0b98ff3175cd46f <http://purl.org/dc/terms/title> "Head circumference" .
_:N9c6feccf619a4cd2b0b98ff3175cd46f <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/8287-5> .
<http://purl.bioontology.org/ontology/SNOMEDCT/33586001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/SNOMEDCT/33586001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/BloodPressureBodyPosition> .
<http://purl.bioontology.org/ontology/SNOMEDCT/33586001> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/33586001> <http://purl.org/dc/terms/title> "Sitting" .
<http://purl.bioontology.org/ontology/SNOMEDCT/33586001> <http://purl.org/dc/terms/identifier> "33586001" .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://purl.org/dc/terms/title> "Body height" .
<http://purl.bioontology.org/ontology/LNC/8302-2> <http://purl.org/dc/terms/identifier> "8302-2" .
<http://purl.bioontology.org/ontology/LNC/8867-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/8867-4> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/8867-4> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8867-4> <http://purl.org/dc/terms/title> "Heart rate" .
<http://purl.bioontology.org/ontology/LNC/8867-4> <http://purl.org/dc/terms/identifier> "8867-4" .
_:Nb791f20f31904cb398ccf342c9f2ad6b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#BloodPressure> .
_:Nb791f20f31904cb398ccf342c9f2ad6b <http://smartplatforms.org/terms#bodyPosition> _:N9cde0ce5c9804d64869d43bf04dec2fb .
_:Nb791f20f31904cb398ccf342c9f2ad6b <http://smartplatforms.org/terms#systolic> _:N2a30044fa24e44ff92bdd9b6c8c7165d .
_:Nb791f20f31904cb398ccf342c9f2ad6b <http://smartplatforms.org/terms#diastolic> _:N3e8f346497ec45bdbc444968926fff7f .
_:Nb791f20f31904cb398ccf342c9f2ad6b <http://smartplatforms.org/terms#bodySite> _:N637594b6b73844248cab20b0c6220b32 .
<http://purl.bioontology.org/ontology/LNC/9279-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://purl.bioontology.org/ontology/LNC/9279-1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/VitalSign> .
<http://purl.bioontology.org/ontology/LNC/9279-1> <http://smartplatforms.org/terms#system> "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/9279-1> <http://purl.org/dc/terms/title> "Respiration rate" .
<http://purl.bioontology.org/ontology/LNC/9279-1> <http://purl.org/dc/terms/identifier> "9279-1" .
_:Nb0e3065f80454d26b43bfdd4e7a09554 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:Nb0e3065f80454d26b43bfdd4e7a09554 <http://smartplatforms.org/terms#value> "16" .
_:Nb0e3065f80454d26b43bfdd4e7a09554 <http://smartplatforms.org/terms#vitalName> _:N877c0f9914dc491eb44b76c05090d81b .
_:Nb0e3065f80454d26b43bfdd4e7a09554 <http://smartplatforms.org/terms#unit> "{breaths}/min" .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#respiratoryRate> _:Nb0e3065f80454d26b43bfdd4e7a09554 .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#encounter> <http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#height> _:Nbc835818176d493b962cbd1151350f81 .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#belongsTo> <http://sandbox-api.smartplatforms.org/records/2169591> .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSignSet> .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#bloodPressure> _:Nb791f20f31904cb398ccf342c9f2ad6b .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#bodyMassIndex> _:Na15ee35af0704aaab0387ffc43acf7e2 .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#oxygenSaturation> _:N67ee1a78c43a437ab10d9749351be26c .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#heartRate> _:N21a09e13777d4739a9681649b46a84c7 .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#temperature> _:N0a1b1020e86149cea450b36c12f444d3 .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#headCircumference> _:N600861d02654495aa8fe9bb8e22de77f .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://smartplatforms.org/terms#weight> _:N03be89a87f9d413fa960232fa7c4f998 .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> <http://purl.org/dc/terms/date> "2010-05-12T04:00:00Z" .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#Code> .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms/codes/EncounterType> .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://smartplatforms.org/terms#system> "http://smartplatforms.org/terms/codes/EncounterType#" .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://purl.org/dc/terms/title> "Ambulatory encounter" .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> <http://purl.org/dc/terms/identifier> "ambulatory" .
_:N9694b228cc6f4fa1b7d9d9f8e5b169fa <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:N9694b228cc6f4fa1b7d9d9f8e5b169fa <http://purl.org/dc/terms/title> "Body height" .
_:N9694b228cc6f4fa1b7d9d9f8e5b169fa <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/8302-2> .
_:Nd7dbf856499345e8a43efb0ecfb6ea24 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#CodedValue> .
_:Nd7dbf856499345e8a43efb0ecfb6ea24 <http://purl.org/dc/terms/title> "Heart rate" .
_:Nd7dbf856499345e8a43efb0ecfb6ea24 <http://smartplatforms.org/terms#code> <http://purl.bioontology.org/ontology/LNC/8867-4> .
_:N2a30044fa24e44ff92bdd9b6c8c7165d <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://smartplatforms.org/terms#VitalSign> .
_:N2a30044fa24e44ff92bdd9b6c8c7165d <http://smartplatforms.org/terms#value> "132" .
_:N2a30044fa24e44ff92bdd9b6c8c7165d <http://smartplatforms.org/terms#vitalName> _:N0dec3fd777614a008727490626a44c05 .
_:N2a30044fa24e44ff92bdd9b6c8c7165d <http://smartplatforms.org/terms#unit> "mm[Hg]" .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix sp: <http://smartplatforms.org/terms#> .
@prefix spcode: <http://smartplatforms.org/terms/codes/> .
<http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523> a sp:VitalSignSet;
dcterms:date "2010-05-12T04:00:00Z";
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:bloodPressure [ a sp:BloodPressure;
sp:bodyPosition [ a sp:CodedValue;
dcterms:title "Sitting";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/33586001> ];
sp:bodySite [ a sp:CodedValue;
dcterms:title "Right arm";
sp:code <http://purl.bioontology.org/ontology/SNOMEDCT/368209003> ];
sp:diastolic [ a sp:VitalSign;
sp:unit "mm[Hg]";
sp:value "82";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Intravascular diastolic";
sp:code <http://purl.bioontology.org/ontology/LNC/8462-4> ] ];
sp:systolic [ a sp:VitalSign;
sp:unit "mm[Hg]";
sp:value "132";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Intravascular systolic";
sp:code <http://purl.bioontology.org/ontology/LNC/8480-6> ] ] ];
sp:bodyMassIndex [ a sp:VitalSign;
sp:unit "kg/m2";
sp:value "21.8";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Body mass index";
sp:code <http://purl.bioontology.org/ontology/LNC/39156-5> ] ];
sp:encounter <http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352>;
sp:headCircumference [ a sp:VitalSign;
sp:unit "cm";
sp:value "56.4";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Head circumference";
sp:code <http://purl.bioontology.org/ontology/LNC/8287-5> ] ];
sp:heartRate [ a sp:VitalSign;
sp:unit "{beats}/min";
sp:value "70";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Heart rate";
sp:code <http://purl.bioontology.org/ontology/LNC/8867-4> ] ];
sp:height [ a sp:VitalSign;
sp:unit "cm";
sp:value "180";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Body height";
sp:code <http://purl.bioontology.org/ontology/LNC/8302-2> ] ];
sp:oxygenSaturation [ a sp:VitalSign;
sp:unit "%{HemoglobinSaturation}";
sp:value "99";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Oxygen saturation";
sp:code <http://purl.bioontology.org/ontology/LNC/2710-2> ] ];
sp:respiratoryRate [ a sp:VitalSign;
sp:unit "{breaths}/min";
sp:value "16";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Respiration rate";
sp:code <http://purl.bioontology.org/ontology/LNC/9279-1> ] ];
sp:temperature [ a sp:VitalSign;
sp:unit "Cel";
sp:value "37";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Body temperature";
sp:code <http://purl.bioontology.org/ontology/LNC/8310-5> ] ];
sp:weight [ a sp:VitalSign;
sp:unit "kg";
sp:value "70.8";
sp:vitalName [ a sp:CodedValue;
dcterms:title "Body weight";
sp:code <http://purl.bioontology.org/ontology/LNC/3141-9> ] ] .
<http://purl.bioontology.org/ontology/LNC/2710-2> a sp:Code,
spcode:VitalSign;
dcterms:identifier "2710-2";
dcterms:title "Oxygen saturation";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/3141-9> a sp:Code,
spcode:VitalSign;
dcterms:identifier "3141-9";
dcterms:title "Body weight";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/39156-5> a sp:Code,
spcode:VitalSign;
dcterms:identifier "39156-5";
dcterms:title "Body mass index";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8287-5> a sp:Code,
spcode:VitalSign;
dcterms:identifier "8287-5";
dcterms:title "Head circumference";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8302-2> a sp:Code,
spcode:VitalSign;
dcterms:identifier "8302-2";
dcterms:title "Body height";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8310-5> a sp:Code,
spcode:VitalSign;
dcterms:identifier "8310-5";
dcterms:title "Body temperature";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8462-4> a sp:Code,
spcode:VitalSign;
dcterms:identifier "8462-4";
dcterms:title "Intravascular diastolic";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8480-6> a sp:Code,
spcode:VitalSign;
dcterms:identifier "8480-6";
dcterms:title "Intravascular systolic";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/8867-4> a sp:Code,
spcode:VitalSign;
dcterms:identifier "8867-4";
dcterms:title "Heart rate";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/LNC/9279-1> a sp:Code,
spcode:VitalSign;
dcterms:identifier "9279-1";
dcterms:title "Respiration rate";
sp:system "http://purl.bioontology.org/ontology/LNC/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/33586001> a sp:Code,
spcode:BloodPressureBodyPosition;
dcterms:identifier "33586001";
dcterms:title "Sitting";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://purl.bioontology.org/ontology/SNOMEDCT/368209003> a sp:Code,
spcode:BloodPressureBodySite;
dcterms:identifier "368209003";
dcterms:title "Right arm";
sp:system "http://purl.bioontology.org/ontology/SNOMEDCT/" .
<http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352> a sp:Encounter;
sp:belongsTo <http://sandbox-api.smartplatforms.org/records/2169591>;
sp:encounterType [ a sp:CodedValue;
dcterms:title "Ambulatory encounter";
sp:code <http://smartplatforms.org/terms/codes/EncounterType#ambulatory> ];
sp:endDate "2010-05-12T04:20:00Z";
sp:startDate "2010-05-12T04:00:00Z" .
<http://smartplatforms.org/terms/codes/EncounterType#ambulatory> a sp:Code,
spcode:EncounterType;
dcterms:identifier "ambulatory";
dcterms:title "Ambulatory encounter";
sp:system "http://smartplatforms.org/terms/codes/EncounterType#" .
{
"@context": "http://dev.smartplatforms.org/reference/data_model/contexts/smart_context.jsonld",
"@graph": [
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/vital_sign_sets/823523",
"@type": "VitalSignSet",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"bloodPressure": {
"@type": "BloodPressure",
"bodyPosition": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/33586001"
},
"dcterms__title": "Sitting"
},
"bodySite": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/368209003"
},
"dcterms__title": "Right arm"
},
"diastolic": {
"@type": "VitalSign",
"unit": "mm[Hg]",
"value": "82",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/8462-4"
},
"dcterms__title": "Intravascular diastolic"
}
},
"systolic": {
"@type": "VitalSign",
"unit": "mm[Hg]",
"value": "132",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/8480-6"
},
"dcterms__title": "Intravascular systolic"
}
}
},
"bodyMassIndex": {
"@type": "VitalSign",
"unit": "kg/m2",
"value": "21.8",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/39156-5"
},
"dcterms__title": "Body mass index"
}
},
"dcterms__date": "2010-05-12T04:00:00Z",
"encounter": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352"
},
"headCircumference": {
"@type": "VitalSign",
"unit": "cm",
"value": "56.4",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/8287-5"
},
"dcterms__title": "Head circumference"
}
},
"heartRate": {
"@type": "VitalSign",
"unit": "{beats}/min",
"value": "70",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/8867-4"
},
"dcterms__title": "Heart rate"
}
},
"height": {
"@type": "VitalSign",
"unit": "cm",
"value": "180",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/8302-2"
},
"dcterms__title": "Body height"
}
},
"oxygenSaturation": {
"@type": "VitalSign",
"unit": "%{HemoglobinSaturation}",
"value": "99",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/2710-2"
},
"dcterms__title": "Oxygen saturation"
}
},
"respiratoryRate": {
"@type": "VitalSign",
"unit": "{breaths}/min",
"value": "16",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/9279-1"
},
"dcterms__title": "Respiration rate"
}
},
"temperature": {
"@type": "VitalSign",
"unit": "Cel",
"value": "37",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/8310-5"
},
"dcterms__title": "Body temperature"
}
},
"weight": {
"@type": "VitalSign",
"unit": "kg",
"value": "70.8",
"vitalName": {
"@type": "CodedValue",
"code": {
"@id": "http://purl.bioontology.org/ontology/LNC/3141-9"
},
"dcterms__title": "Body weight"
}
}
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/8462-4",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "8462-4",
"dcterms__title": "Intravascular diastolic",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/2710-2",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "2710-2",
"dcterms__title": "Oxygen saturation",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/8287-5",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "8287-5",
"dcterms__title": "Head circumference",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/8310-5",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "8310-5",
"dcterms__title": "Body temperature",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/8302-2",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "8302-2",
"dcterms__title": "Body height",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://sandbox-api.smartplatforms.org/records/2169591/encounters/252352",
"@type": "Encounter",
"belongsTo": {
"@id": "http://sandbox-api.smartplatforms.org/records/2169591"
},
"encounterType": {
"@type": "CodedValue",
"code": {
"@id": "http://smartplatforms.org/terms/codes/EncounterType#ambulatory"
},
"dcterms__title": "Ambulatory encounter"
},
"endDate": "2010-05-12T04:20:00Z",
"startDate": "2010-05-12T04:00:00Z"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/39156-5",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "39156-5",
"dcterms__title": "Body mass index",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://smartplatforms.org/terms/codes/EncounterType#ambulatory",
"@type": [
"Code",
"spcode__EncounterType"
],
"dcterms__identifier": "ambulatory",
"dcterms__title": "Ambulatory encounter",
"system": "http://smartplatforms.org/terms/codes/EncounterType#"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/8867-4",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "8867-4",
"dcterms__title": "Heart rate",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/368209003",
"@type": [
"Code",
"spcode__BloodPressureBodySite"
],
"dcterms__identifier": "368209003",
"dcterms__title": "Right arm",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/9279-1",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "9279-1",
"dcterms__title": "Respiration rate",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://purl.bioontology.org/ontology/SNOMEDCT/33586001",
"@type": [
"Code",
"spcode__BloodPressureBodyPosition"
],
"dcterms__identifier": "33586001",
"dcterms__title": "Sitting",
"system": "http://purl.bioontology.org/ontology/SNOMEDCT/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/8480-6",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "8480-6",
"dcterms__title": "Intravascular systolic",
"system": "http://purl.bioontology.org/ontology/LNC/"
},
{
"@id": "http://purl.bioontology.org/ontology/LNC/3141-9",
"@type": [
"Code",
"spcode__VitalSign"
],
"dcterms__identifier": "3141-9",
"dcterms__title": "Body weight",
"system": "http://purl.bioontology.org/ontology/LNC/"
}
]
}
|
date
Required: exactly 1 |
http://purl.org/dc/terms/date
Date + time when vital signs were recorded, as an ISO-8601 string. xsd:dateTime |
|
belongsTo
Required: exactly 1 |
http://smartplatforms.org/terms#belongsTo
Medical Record The medical record URI to which a clinical statement belongs. Each clinical statement points back to its medical record so that it can be treated in isolation. |
|
bloodPressure
Optional: 0 or 1 |
http://smartplatforms.org/terms#bloodPressure
BloodPressure Patient's systolic + diastolic Blood Pressure in mmHg, with optional position coding |
|
bodyMassIndex
Optional: 0 or 1 |
http://smartplatforms.org/terms#bodyMassIndex
VitalSign where unit has value: kg/m2 Patient's Body Mass Index. |
|
encounter
Required: exactly 1 |
http://smartplatforms.org/terms#encounter
Encounter Encounter at which vital signs were measured. This should specify a date and encounter type, at minimum. |
|
headCircumference
Optional: 0 or 1 |
http://smartplatforms.org/terms#headCircumference
VitalSign where unit has value: cm |
|
heartRate
Optional: 0 or 1 |
http://smartplatforms.org/terms#heartRate
VitalSign where unit has value: {beats}/min Patient's Heart Rate per minute. |
|
height
Optional: 0 or 1 |
http://smartplatforms.org/terms#height
VitalSign where unit has value: cm Patient's height in centimeters. |
|
oxygenSaturation
Optional: 0 or 1 |
http://smartplatforms.org/terms#oxygenSaturation
VitalSign where unit has value: %{HemoglobinSaturation} Patient's oxygen saturation in percent. |
|
respiratoryRate
Optional: 0 or 1 |
http://smartplatforms.org/terms#respiratoryRate
VitalSign where unit has value: {breaths}/min Patient's Respiratory Rate per minute. |
|
temperature
Optional: 0 or 1 |
http://smartplatforms.org/terms#temperature
VitalSign where unit has value: Cel Patient's Temperature in Celcius. |
|
weight
Optional: 0 or 1 |
http://smartplatforms.org/terms#weight
VitalSign where unit has value: kg Patient's weight in kg. |
Component Types
Address
Address is a subtype of and inherits properties from:
Component
|
country-name
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#country-name
Country name rdfs:Literal |
|
extended-address
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#extended-address
City Name rdfs:Literal |
|
locality
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#locality
City Name rdfs:Literal |
|
postal-code
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#postal-code
Postal code rdfs:Literal |
|
region
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#region
e.g. state abbreviation rdfs:Literal |
|
street-address
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#street-address
Street address rdfs:Literal |
Attribution
Attribution is a subtype of and inherits properties from:
Component
|
endDate
Optional: 0 or 1 |
http://smartplatforms.org/terms#endDate
End Time of attributed event (if instantaneous, this is not provided) xsd:dateTime |
|
participant
Optional: 0 or 1 |
http://smartplatforms.org/terms#participant
Participant Participant in Attribution |
|
startDate
Optional: 0 or 1 |
http://smartplatforms.org/terms#startDate
Start Time of attributed event (if instantaneous, this is the only time) xsd:dateTime |
BloodPressure
BloodPressure is a subtype of and inherits properties from:
Component
|
bodyPosition
Optional: 0 or 1 |
http://smartplatforms.org/terms#bodyPosition
Coded Value where code comes from BloodPressureBodyPosition Position of patient when blood pressure was recorded |
|
bodySite
Optional: 0 or 1 |
http://smartplatforms.org/terms#bodySite
Coded Value where code comes from BloodPressureBodySite Site on patient's body where blood pressure was recorded |
|
diastolic
Required: exactly 1 |
http://smartplatforms.org/terms#diastolic
VitalSign where unit has value: mm[Hg] diastolic blood pressure in mmHG. |
|
method
Optional: 0 or 1 |
http://smartplatforms.org/terms#method
Coded Value where code comes from BloodPressureMethod Method by which blood pressure was recorded. |
|
systolic
Required: exactly 1 |
http://smartplatforms.org/terms#systolic
VitalSign where unit has value: mm[Hg] systolic blood pressure in mmHG. |
Code
Code is a subtype of and inherits properties from:
Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
CodeProvenance
CodeProvenance is a subtype of and inherits properties from:
Component
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
sourceCode
Required: exactly 1 |
http://smartplatforms.org/terms#sourceCode
xsd:anyURI |
|
translationFidelity
Optional: 0 or 1 |
http://smartplatforms.org/terms#translationFidelity
TranslationFidelity code |
Coded Value
Coded Value is a subtype of and inherits properties from:
Component, DataType
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
code
Required: exactly 1 |
http://smartplatforms.org/terms#code
Code |
|
provenance
Optional: 0 or more |
http://smartplatforms.org/terms#provenance
CodeProvenance |
Content
Content is a subtype of and inherits properties from:
Component
Contains the content of a file resource
|
encoding
Required: exactly 1 |
http://smartplatforms.org/terms#encoding
The algorithm used for encoding of the content. Shoule be either "Base64" or "UTF-8" rdfs:Literal |
|
value
Required: exactly 1 |
http://smartplatforms.org/terms#value
The encoded value of the content rdfs:Literal |
DataType
DataType is a subtype of and inherits properties from:
Component
Hash
Hash is a subtype of and inherits properties from:
Component
Provides the checksum of a resource for verification purposes
|
algorithm
Required: exactly 1 |
http://smartplatforms.org/terms#algorithm
The hash algorithm used (a string). For example "SHA-256". rdfs:Literal |
|
value
Required: exactly 1 |
http://smartplatforms.org/terms#value
The hash value as a string rdfs:Literal |
MediaTypeOrExtent
MediaTypeOrExtent is a subtype of and inherits properties from:
Component, DataType
|
label
Required: exactly 1 |
http://www.w3.org/2000/01/rdf-schema#label
rdfs:Literal |
Name
Name is a subtype of and inherits properties from:
Component
|
additional-name
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#additional-name
rdfs:Literal |
|
family-name
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#family-name
rdfs:Literal |
|
given-name
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#given-name
rdfs:Literal |
|
honorific-prefix
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#honorific-prefix
rdfs:Literal |
|
honorific-suffix
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#honorific-suffix
rdfs:Literal |
NarrativeResult
NarrativeResult is a subtype of and inherits properties from:
Component
|
value
Required: exactly 1 |
http://smartplatforms.org/terms#value
Value of result (free text) rdfs:Literal |
Organization
Organization is a subtype of and inherits properties from:
Component
|
adr
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#adr
Address |
|
organization-name
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#organization-name
Name of the organization rdfs:Literal |
Participant
Participant is a subtype of and inherits properties from:
Component
|
organization
Optional: 0 or 1 |
http://smartplatforms.org/terms#organization
Organization Organization of participant |
|
person
Optional: 0 or 1 |
http://smartplatforms.org/terms#person
Person Person who participated |
|
role
Optional: 0 or 1 |
http://smartplatforms.org/terms#role
Role of participant (free text) rdfs:Literal |
Person
Person is a subtype of and inherits properties from:
Component, VCard
|
ethnicity
Optional: 0 or 1 |
http://smartplatforms.org/terms#ethnicity
rdfs:Literal |
|
preferredLanguage
Optional: 0 or 1 |
http://smartplatforms.org/terms#preferredLanguage
rdfs:Literal |
|
race
Optional: 0 or 1 |
http://smartplatforms.org/terms#race
rdfs:Literal |
|
adr
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#adr
Address |
|
bday
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#bday
Date of birth as an ISO-8601 string rdfs:Literal |
|
deathdate
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#deathdate
Date of death as an ISO-8601 string rdfs:Literal |
|
email
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#email
rdfs:Literal |
|
n
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#n
Name |
|
tel
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#tel
Tel |
|
gender
Optional: 0 or 1 |
http://xmlns.com/foaf/0.1/gender
A person's (administrative) gender. This should consist of the string "male" or "female". rdfs:Literal |
Pharmacy
Pharmacy is a subtype of and inherits properties from:
Component, Organization
|
ncpdpId
Optional: 0 or 1 |
http://smartplatforms.org/terms#ncpdpId
Pharmacy's National Council for Prescription Drug Programs ID Number (NCPDP ID) rdfs:Literal |
|
adr
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#adr
Address |
|
organization-name
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#organization-name
Name of the organization rdfs:Literal |
Provider
Provider is a subtype of and inherits properties from:
Component, Person, VCard
|
deaNumber
Optional: 0 or 1 |
http://smartplatforms.org/terms#deaNumber
Provider's Drug Enforcement Agency Number rdfs:Literal |
|
ethnicity
Optional: 0 or 1 |
http://smartplatforms.org/terms#ethnicity
rdfs:Literal |
|
npiNumber
Optional: 0 or 1 |
http://smartplatforms.org/terms#npiNumber
Provider's National Provider Identification Number rdfs:Literal |
|
preferredLanguage
Optional: 0 or 1 |
http://smartplatforms.org/terms#preferredLanguage
rdfs:Literal |
|
race
Optional: 0 or 1 |
http://smartplatforms.org/terms#race
rdfs:Literal |
|
adr
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#adr
Address |
|
bday
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#bday
Date of birth as an ISO-8601 string rdfs:Literal |
|
deathdate
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#deathdate
Date of death as an ISO-8601 string rdfs:Literal |
|
email
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#email
rdfs:Literal |
|
n
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#n
Name |
|
tel
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#tel
Tel |
|
gender
Optional: 0 or 1 |
http://xmlns.com/foaf/0.1/gender
A person's (administrative) gender. This should consist of the string "male" or "female". rdfs:Literal |
QuantitativeResult
QuantitativeResult is a subtype of and inherits properties from:
Component
|
nonCriticalRange
Optional: 0 or 1 |
http://smartplatforms.org/terms#nonCriticalRange
ValueRange Non-critical range for result. (Results outside this range are considered "critical.") |
|
normalRange
Optional: 0 or 1 |
http://smartplatforms.org/terms#normalRange
ValueRange Normal range for result. (Results outside this range are considered "abnormal".) |
|
valueAndUnit
Required: exactly 1 |
http://smartplatforms.org/terms#valueAndUnit
ValueAndUnit Value and unit |
Resource
Resource is a subtype of and inherits properties from:
Component
A data resource that contains either a link to a data document or the actual document content.
|
content
Optional: 0 or 1 |
http://smartplatforms.org/terms#content
Content The actual content of the resource |
|
hash
Optional: 0 or 1 |
http://smartplatforms.org/terms#hash
Hash The checksum of the resource that can be used for integrity verificiation purposes. |
|
location
Optional: 0 or 1 |
http://smartplatforms.org/terms#location
A URL from which the content of the resource can be retrieved. Could be the same as the Document URI or could be a URL external to the container. rdfs:Literal |
Tel
Tel is a subtype of and inherits properties from:
Component
|
value
Required: exactly 1 |
http://www.w3.org/1999/02/22-rdf-syntax-ns#value
rdfs:Literal |
VCard
VCard is a subtype of and inherits properties from:
Component
|
adr
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#adr
Address |
|
bday
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#bday
Date of birth as an ISO-8601 string rdfs:Literal |
|
deathdate
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#deathdate
Date of death as an ISO-8601 string rdfs:Literal |
|
email
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#email
rdfs:Literal |
|
n
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#n
Name |
|
tel
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#tel
Tel |
ValueAndUnit
ValueAndUnit is a subtype of and inherits properties from:
Component, DataType
|
unit
Required: exactly 1 |
http://smartplatforms.org/terms#unit
rdfs:Literal |
|
value
Required: exactly 1 |
http://smartplatforms.org/terms#value
rdfs:Literal |
ValueRange
ValueRange is a subtype of and inherits properties from:
Component, DataType
|
maximum
Required: exactly 1 |
http://smartplatforms.org/terms#maximum
ValueAndUnit Maximum value in range (not inclusive) |
|
minimum
Required: exactly 1 |
http://smartplatforms.org/terms#minimum
ValueAndUnit Minimum value in range (inclusive) |
ValueRatio
ValueRatio is a subtype of and inherits properties from:
Component, DataType
|
denominator
Required: exactly 1 |
http://smartplatforms.org/terms#denominator
ValueAndUnit Denominator of the ratio. |
|
numerator
Required: exactly 1 |
http://smartplatforms.org/terms#numerator
ValueAndUnit Numerator of the ratio. |
VitalSign
VitalSign is a subtype of and inherits properties from:
Component, DataType, ValueAndUnit
|
unit
Required: exactly 1 |
http://smartplatforms.org/terms#unit
rdfs:Literal |
|
value
Required: exactly 1 |
http://smartplatforms.org/terms#value
rdfs:Literal |
|
vitalName
Optional: 0 or 1 |
http://smartplatforms.org/terms#vitalName
Coded Value where code comes from VitalSign LOINC Coded Value for the vital sign type |
Container-level Types
App Manifest
ContainerManifest
{
smart_version: "0.5.0",
api_base: "http://sandbox-api.smartplatforms.org",
name: "SMART v0.5 Sandbox",
description: "Public sandbox to demonstrate the SMART API",
admin: "info@smartplatforms.org",
launch_urls: {
"authorize_token": "http://localhost:7001/oauth/authorize",
"exchange_token": "http://localhost:7000/oauth/access_token",
"request_token": "http://localhost:7000/oauth/request_token"
},
capabilities: {
"http://smartplatforms.org/terms#Demographics": {
"methods": [
"GET"
]
},
"http://smartplatforms.org/terms#Encounter": {
"methods": [
"GET"
]
},
"http://smartplatforms.org/terms#VitalSignSet": {
"methods": [
"GET"
]
}
}
}
Ontology
See: http://sandbox-api.smartplatforms.org/ontology
User
User is a subtype of and inherits properties from:
Component, Person, VCard
|
department
Optional: 0 or 1 |
http://smartplatforms.org/terms#department
A user's department rdfs:Literal |
|
ethnicity
Optional: 0 or 1 |
http://smartplatforms.org/terms#ethnicity
rdfs:Literal |
|
preferredLanguage
Optional: 0 or 1 |
http://smartplatforms.org/terms#preferredLanguage
rdfs:Literal |
|
race
Optional: 0 or 1 |
http://smartplatforms.org/terms#race
rdfs:Literal |
|
role
Optional: 0 or 1 |
http://smartplatforms.org/terms#role
A user's role rdfs:Literal |
|
adr
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#adr
Address |
|
bday
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#bday
Date of birth as an ISO-8601 string rdfs:Literal |
|
deathdate
Optional: 0 or 1 |
http://www.w3.org/2006/vcard/ns#deathdate
Date of death as an ISO-8601 string rdfs:Literal |
|
email
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#email
rdfs:Literal |
|
n
Required: exactly 1 |
http://www.w3.org/2006/vcard/ns#n
Name |
|
tel
Optional: 0 or more |
http://www.w3.org/2006/vcard/ns#tel
Tel |
|
gender
Optional: 0 or 1 |
http://xmlns.com/foaf/0.1/gender
A person's (administrative) gender. This should consist of the string "male" or "female". rdfs:Literal |
User Preferences
Data code Types
AllergyCategory code
AllergyCategory is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:AllergyCategory rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/414285001">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Food allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>414285001</dcterms:identifier>
</spcode:AllergyCategory>
<spcode:AllergyCategory rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/426232007">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Environmental allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>426232007</dcterms:identifier>
</spcode:AllergyCategory>
<spcode:AllergyCategory rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/416098002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Drug allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>416098002</dcterms:identifier>
</spcode:AllergyCategory>
<spcode:AllergyCategory rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/59037007">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Drug intolerance</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>59037007</dcterms:identifier>
</spcode:AllergyCategory>
<spcode:AllergyCategory rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/235719002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Food intolerance</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>235719002</dcterms:identifier>
</spcode:AllergyCategory>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
AllergyExclusion code
AllergyExclusion is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:AllergyExclusion rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/160244002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>No known allergies</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>160244002</dcterms:identifier>
</spcode:AllergyExclusion>
<spcode:AllergyExclusion rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/428607008">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>No known environmental allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>428607008</dcterms:identifier>
</spcode:AllergyExclusion>
<spcode:AllergyExclusion rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/429625007">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>No known food allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>429625007</dcterms:identifier>
</spcode:AllergyExclusion>
<spcode:AllergyExclusion rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/409137002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>No known history of drug allergy</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>409137002</dcterms:identifier>
</spcode:AllergyExclusion>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
AllergySeverity code
AllergySeverity is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:AllergySeverity rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/255604002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Mild</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>255604002</dcterms:identifier>
</spcode:AllergySeverity>
<spcode:AllergySeverity rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/442452003">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Life threatening</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>442452003</dcterms:identifier>
</spcode:AllergySeverity>
<spcode:AllergySeverity rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/6736007">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Moderate</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>6736007</dcterms:identifier>
</spcode:AllergySeverity>
<spcode:AllergySeverity rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/399166001">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Fatal</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>399166001</dcterms:identifier>
</spcode:AllergySeverity>
<spcode:AllergySeverity rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/24484000">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Severe</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>24484000</dcterms:identifier>
</spcode:AllergySeverity>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
BloodPressureBodyPosition code
BloodPressureBodyPosition is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:BloodPressureBodyPosition rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/40199007">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Supine</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>40199007</dcterms:identifier>
</spcode:BloodPressureBodyPosition>
<spcode:BloodPressureBodyPosition rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/33586001">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Sitting</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>33586001</dcterms:identifier>
</spcode:BloodPressureBodyPosition>
<spcode:BloodPressureBodyPosition rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/10904000">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Standing</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>10904000</dcterms:identifier>
</spcode:BloodPressureBodyPosition>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
BloodPressureBodySite code
BloodPressureBodySite is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:BloodPressureBodySite rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/61396006">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Left thigh</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>61396006</dcterms:identifier>
</spcode:BloodPressureBodySite>
<spcode:BloodPressureBodySite rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/368209003">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Right arm</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>368209003</dcterms:identifier>
</spcode:BloodPressureBodySite>
<spcode:BloodPressureBodySite rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/11207009">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Right thigh</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>11207009</dcterms:identifier>
</spcode:BloodPressureBodySite>
<spcode:BloodPressureBodySite rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/368208006">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Left arm</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>368208006</dcterms:identifier>
</spcode:BloodPressureBodySite>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
BloodPressureMethod code
BloodPressureMethod is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:BloodPressureMethod rdf:about="http://smartplatforms.org/terms/codes/BloodPressureMethod#invasive">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Invasive</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/BloodPressureMethod#</sp:system>
<dcterms:identifier>invasive</dcterms:identifier>
</spcode:BloodPressureMethod>
<spcode:BloodPressureMethod rdf:about="http://smartplatforms.org/terms/codes/BloodPressureMethod#palpation">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Palpation</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/BloodPressureMethod#</sp:system>
<dcterms:identifier>palpation</dcterms:identifier>
</spcode:BloodPressureMethod>
<spcode:BloodPressureMethod rdf:about="http://smartplatforms.org/terms/codes/BloodPressureMethod#machine">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Machine</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/BloodPressureMethod#</sp:system>
<dcterms:identifier>machine</dcterms:identifier>
</spcode:BloodPressureMethod>
<spcode:BloodPressureMethod rdf:about="http://smartplatforms.org/terms/codes/BloodPressureMethod#auscultation">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Auscultation</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/BloodPressureMethod#</sp:system>
<dcterms:identifier>auscultation</dcterms:identifier>
</spcode:BloodPressureMethod>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
DocumentType code
DocumentType is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#summary">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Summary about the patient</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>summary</dcterms:identifier>
</spcode:DocumentType>
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#image">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>A digital image pertaining to the patient record</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>image</dcterms:identifier>
</spcode:DocumentType>
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#letter">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Letter about the patient</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>letter</dcterms:identifier>
</spcode:DocumentType>
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#report">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>A report about the patient</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>report</dcterms:identifier>
</spcode:DocumentType>
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#note">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>A clinical note about the patient</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>note</dcterms:identifier>
</spcode:DocumentType>
<spcode:DocumentType rdf:about="http://smartplatforms.org/terms/codes/DocumentType#referral">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Patient referral note</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/DocumentType#</sp:system>
<dcterms:identifier>referral</dcterms:identifier>
</spcode:DocumentType>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
EncounterType code
EncounterType is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#home">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Home encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>home</dcterms:identifier>
</spcode:EncounterType>
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#emergency">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Emergency encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>emergency</dcterms:identifier>
</spcode:EncounterType>
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#ambulatory">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Ambulatory encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>ambulatory</dcterms:identifier>
</spcode:EncounterType>
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#inpatient">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Inpatient encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>inpatient</dcterms:identifier>
</spcode:EncounterType>
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#field">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Field encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>field</dcterms:identifier>
</spcode:EncounterType>
<spcode:EncounterType rdf:about="http://smartplatforms.org/terms/codes/EncounterType#virtual">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Virtual encounter</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/EncounterType#</sp:system>
<dcterms:identifier>virtual</dcterms:identifier>
</spcode:EncounterType>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
ImmunizationAdministrationStatus code
ImmunizationAdministrationStatus is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:ImmunizationAdministrationStatus rdf:about="http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#doseGiven">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Dose Given</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#</sp:system>
<dcterms:identifier>doseGiven</dcterms:identifier>
</spcode:ImmunizationAdministrationStatus>
<spcode:ImmunizationAdministrationStatus rdf:about="http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#notAdministered">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Not Administered</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#</sp:system>
<dcterms:identifier>notAdministered</dcterms:identifier>
</spcode:ImmunizationAdministrationStatus>
<spcode:ImmunizationAdministrationStatus rdf:about="http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#partialDose">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Dose Partially Administered</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationAdministrationStatus#</sp:system>
<dcterms:identifier>partialDose</dcterms:identifier>
</spcode:ImmunizationAdministrationStatus>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
ImmunizationClass code
ImmunizationClass is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
ImmunizationProduct code
ImmunizationProduct is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
ImmunizationRefusalReason code
ImmunizationRefusalReason is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#vaccineUnavailable">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Vaccine unavailable at visit</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>vaccineUnavailable</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#patientUndergoingDesensitizationTherapy">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Patient undergoing desensitization therapy</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>patientUndergoingDesensitizationTherapy</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#notIndicatedPerGuidelines">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Not indicated per guidelines</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>notIndicatedPerGuidelines</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#recentChemoOrRadiaton">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Recent chemotherapy/radiaton</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>recentChemoOrRadiaton</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#allergy">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Allergy to vaccine/vaccine components, or allergy to eggs</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>allergy</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#providerDeferred">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Provider deferred</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>providerDeferred</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#documentedImmunityOrPreviousDisease">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Documented immunity or previous disease</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>documentedImmunityOrPreviousDisease</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#previouslyVaccinated">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Previously vaccinated</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>previouslyVaccinated</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#contraindicated">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Contraindicated</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>contraindicated</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#patientOrParentRefused">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Patient/parent refused</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>patientOrParentRefused</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#comfortMeasuresOnly">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Comfort Measures Only</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>comfortMeasuresOnly</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#possiblePriorAllergyOrReaction">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Possible allergy/reaction to prior dose</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>possiblePriorAllergyOrReaction</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
<spcode:ImmunizationRefusalReason rdf:about="http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#recentOrganOrStemCellTransplant">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Recent organ/stem cell transplant</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/ImmunizationRefusalReason#</sp:system>
<dcterms:identifier>recentOrganOrStemCellTransplant</dcterms:identifier>
</spcode:ImmunizationRefusalReason>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
LOINC code
LOINC is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
LabResultInterpretation code
LabResultInterpretation is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:LabResultInterpretation rdf:about="http://smartplatforms.org/terms/codes/LabResultInterpretation#normal">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Normal</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabResultInterpretation#</sp:system>
<dcterms:identifier>normal</dcterms:identifier>
</spcode:LabResultInterpretation>
<spcode:LabResultInterpretation rdf:about="http://smartplatforms.org/terms/codes/LabResultInterpretation#critical">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Critical</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabResultInterpretation#</sp:system>
<dcterms:identifier>critical</dcterms:identifier>
</spcode:LabResultInterpretation>
<spcode:LabResultInterpretation rdf:about="http://smartplatforms.org/terms/codes/LabResultInterpretation#abnormal">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Abnormal</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabResultInterpretation#</sp:system>
<dcterms:identifier>abnormal</dcterms:identifier>
</spcode:LabResultInterpretation>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
LabResultStatus code
LabResultStatus is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:LabResultStatus rdf:about="http://smartplatforms.org/terms/codes/LabStatus#correction">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Correction</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabStatus#</sp:system>
<dcterms:identifier>correction</dcterms:identifier>
</spcode:LabResultStatus>
<spcode:LabResultStatus rdf:about="http://smartplatforms.org/terms/codes/LabStatus#preliminary">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Preliminary</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabStatus#</sp:system>
<dcterms:identifier>preliminary</dcterms:identifier>
</spcode:LabResultStatus>
<spcode:LabResultStatus rdf:about="http://smartplatforms.org/terms/codes/LabStatus#final">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Final</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/LabStatus#</sp:system>
<dcterms:identifier>final</dcterms:identifier>
</spcode:LabResultStatus>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
MedicalRecordNumber code
MedicalRecordNumber is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
NDFRT code
NDFRT is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
ProblemStatus code
ProblemStatus is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:ProblemStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/55561003">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Active</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>55561003</dcterms:identifier>
</spcode:ProblemStatus>
<spcode:ProblemStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/73425007">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Inactive</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>73425007</dcterms:identifier>
</spcode:ProblemStatus>
<spcode:ProblemStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/413322009">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Resolved</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>413322009</dcterms:identifier>
</spcode:ProblemStatus>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
Procedure code
Procedure is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
ProcedureStatus code
ProcedureStatus is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:ProcedureStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/385657008">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Aborted</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>385657008</dcterms:identifier>
</spcode:ProcedureStatus>
<spcode:ProcedureStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/89925002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Cancelled</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>89925002</dcterms:identifier>
</spcode:ProcedureStatus>
<spcode:ProcedureStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/410523001">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Active</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>410523001</dcterms:identifier>
</spcode:ProcedureStatus>
<spcode:ProcedureStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/385658003">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Complete</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>385658003</dcterms:identifier>
</spcode:ProcedureStatus>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
RxNorm code
RxNorm is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
RxNorm_Ingredient code
RxNorm_Ingredient is a subtype of and inherits properties from:
Code, Component, DataType, RxNorm
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
RxNorm_Semantic code
RxNorm_Semantic is a subtype of and inherits properties from:
Code, Component, DataType, RxNorm
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
SNOMED code
SNOMED is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
SmokingStatus code
SmokingStatus is a subtype of and inherits properties from:
Code, Component, DataType, SNOMED
Constrained to one of:
<spcode:SmokingStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/449868002">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Current every day smoker</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>449868002</dcterms:identifier>
</spcode:SmokingStatus>
<spcode:SmokingStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/266927001">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Unknown if ever smoked</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>266927001</dcterms:identifier>
</spcode:SmokingStatus>
<spcode:SmokingStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/8517006">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Former smoker</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>8517006</dcterms:identifier>
</spcode:SmokingStatus>
<spcode:SmokingStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/266919005">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Never smoker</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>266919005</dcterms:identifier>
</spcode:SmokingStatus>
<spcode:SmokingStatus rdf:about="http://purl.bioontology.org/ontology/SNOMEDCT/428041000124106">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Current some day smoker</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/SNOMEDCT/</sp:system>
<dcterms:identifier>428041000124106</dcterms:identifier>
</spcode:SmokingStatus>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
TranslationFidelity code
TranslationFidelity is a subtype of and inherits properties from:
Code, Component, DataType
Constrained to one of:
<spcode:TranslationFidelity rdf:about="http://smartplatforms.org/terms/codes/TranslationFidelity#automated">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Automated</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/TranslationFidelity#</sp:system>
<dcterms:identifier>automated</dcterms:identifier>
</spcode:TranslationFidelity>
<spcode:TranslationFidelity rdf:about="http://smartplatforms.org/terms/codes/TranslationFidelity#unmappable">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Unmappable</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/TranslationFidelity#</sp:system>
<dcterms:identifier>unmappable</dcterms:identifier>
</spcode:TranslationFidelity>
<spcode:TranslationFidelity rdf:about="http://smartplatforms.org/terms/codes/TranslationFidelity#verified">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Verified</dcterms:title>
<sp:system>http://smartplatforms.org/terms/codes/TranslationFidelity#</sp:system>
<dcterms:identifier>verified</dcterms:identifier>
</spcode:TranslationFidelity>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
UNII code
UNII is a subtype of and inherits properties from:
Code, Component, DataType
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |
VitalSign code
VitalSign is a subtype of and inherits properties from:
Code, Component, DataType, LOINC
Constrained to one of:
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8462-4">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Intravascular diastolic</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8462-4</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/9279-1">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Respiration rate</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>9279-1</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/39156-5">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body mass index</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>39156-5</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8310-5">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body temperature</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8310-5</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/2710-2">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Oxygen saturation</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>2710-2</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8302-2">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body height</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8302-2</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8867-4">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Heart rate</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8867-4</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8480-6">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Intravascular systolic</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8480-6</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/3141-9">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body weight</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>3141-9</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8287-5">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Head circumference</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8287-5</dcterms:identifier>
</spcode:VitalSign>
<spcode:VitalSign rdf:about="http://purl.bioontology.org/ontology/LNC/8306-3">
<rdf:type rdf:resource="http://smartplatforms.org/terms#Code" />
<dcterms:title>Body height (lying)</dcterms:title>
<sp:system>http://purl.bioontology.org/ontology/LNC/</sp:system>
<dcterms:identifier>8306-3</dcterms:identifier>
</spcode:VitalSign>
|
identifier
Required: exactly 1 |
http://purl.org/dc/terms/identifier
rdfs:Literal |
|
title
Required: exactly 1 |
http://purl.org/dc/terms/title
rdfs:Literal |
|
system
Required: exactly 1 |
http://smartplatforms.org/terms#system
rdfs:Literal |