graphdb-workbench
Version:
The web application for GraphDB APIs
16 lines (15 loc) • 367 B
TypeScript
export type RepositoryListResponse = Record<string, RepositoryResponse[]>;
export interface RepositoryResponse {
id: string;
title: string;
uri: string;
externalUrl: string;
local: boolean;
type: string;
sesameType: string;
location: string;
readable: boolean;
writable: boolean;
unsupported: boolean;
state: string;
}