# $Id: drugs.ttl,v 1.6 2014/07/21 16:12:39 eric Exp $
#
# ericP at the keyboard

@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

@prefix core: <http://www.w3.org/2013/12/FDA-TA/core#> .
@prefix : <http://www.w3.org/2013/12/FDA-TA/drugs#> .

# The psuedo-drugs below provide example substances to test example trial data.
# Actual deployment of such a registry will require some governance decisions.

<http://www.w3.org/2013/12/FDA-TA/drugs> a owl:Ontology ;
    owl:imports <http://www.w3.org/2013/12/FDA-TA/core> .

:ImmunosuppressantA a core:Medication ; core:hasActiveIngredient :ActiveIngredientA . :ActiveIngredientA a core:ActiveIngredient .
:ImmunosuppressantB a core:Medication ; core:hasActiveIngredient :ActiveIngredientB . :ActiveIngredientB a core:ActiveIngredient .
:AntibioticC        a core:Medication ; core:hasActiveIngredient :ActiveIngredientC . :ActiveIngredientC a core:ActiveIngredient .
:AntibioticD        a core:Medication ; core:hasActiveIngredient :ActiveIngredientD . :ActiveIngredientD a core:ActiveIngredient .

