-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.sql
3 lines (3 loc) · 1.3 KB
/
schema.sql
1
2
3
/* (Beta) Export of data model Citation of the subject dataModel.Hl7 for a PostgreSQL database. Pending translation of enumerations and multityped attributes */
CREATE TYPE resourceType_type AS ENUM ('Citation');CREATE TYPE Citation_type AS ENUM ('Citation');
CREATE TABLE Citation (_approvalDate JSON, _copyright JSON, _date JSON, _description JSON, _experimental JSON, _implicitRules JSON, _language JSON, _lastReviewDate JSON, _name JSON, _publisher JSON, _purpose JSON, _status JSON, _title JSON, _url JSON, _version JSON, address JSON, alternateName TEXT, approvalDate TEXT, areaServed TEXT, author JSON, citedArtifact JSON, classification JSON, contact JSON, contained JSON, copyright TEXT, currentState JSON, dataProvider TEXT, date TEXT, dateCreated TIMESTAMP, dateModified TIMESTAMP, description TEXT, editor JSON, effectivePeriod JSON, endorser JSON, experimental BOOLEAN, extension JSON, id TEXT PRIMARY KEY, identifier JSON, implicitRules TEXT, jurisdiction JSON, language TEXT, lastReviewDate TEXT, location JSON, meta JSON, modifierExtension JSON, name TEXT, note JSON, publisher TEXT, purpose TEXT, relatesTo JSON, resourceType resourceType_type, reviewer JSON, seeAlso JSON, source TEXT, status TEXT, statusDate JSON, summary JSON, text JSON, title TEXT, type Citation_type, url TEXT, useContext JSON, version TEXT);