create table imports ( uri text not null, namespace text not null, organization , application , version text not null, enums , interfaces , unions , models , annotations ); comment on table imports is ' An import is used to declare a dependency on another application. This allows you to reference the models and or enums from that application in your own app. '; comment on column imports.uri is ' Full URI to the service.json file of the service we are importing '; comment on column imports.namespace is ' the fully qualified namespace that we have imported '; comment on column imports.version is ' The version of the service that we are importing '; comment on column imports.enums is ' Enums made available by this import '; comment on column imports.interfaces is ' Interfaces made available by this import '; comment on column imports.unions is ' Unions made available by this import '; comment on column imports.models is ' Models made available by this import '; comment on column imports.annotations is ' Annotations made available by this import ';