-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathinstitution-json-api.model.ts
More file actions
68 lines (62 loc) · 1.49 KB
/
institution-json-api.model.ts
File metadata and controls
68 lines (62 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { ApiData, JsonApiResponse, ResponseJsonApi } from '../common/json-api.model';
import { InstitutionAssets } from './institutions.models';
export type InstitutionsJsonApiResponse = JsonApiResponse<InstitutionDataJsonApi[], null>;
export type InstitutionsWithMetaJsonApiResponse = ResponseJsonApi<InstitutionDataJsonApi[]>;
export type InstitutionJsonApiResponse = JsonApiResponse<InstitutionDataJsonApi, null>;
export type InstitutionDataJsonApi = ApiData<
InstitutionAttributesJsonApi,
null,
InstitutionRelationshipsJsonApi,
InstitutionLinksJsonApi
>;
interface InstitutionAttributesJsonApi {
name: string;
description: string;
iri: string;
ror_iri: string | null;
iris: string[];
assets: InstitutionAssets;
institutional_request_access_enabled: boolean;
logo_path: string;
link_to_external_reports_archive: string;
sso_availability: string;
}
interface InstitutionLinksJsonApi {
self: string;
html: string;
iri: string;
}
interface InstitutionRelationshipsJsonApi {
nodes: {
links: {
related: {
href: string;
meta: Record<string, unknown>;
};
};
};
registrations: {
links: {
related: {
href: string;
meta: Record<string, unknown>;
};
};
};
users: {
links: {
related: {
href: string;
meta: Record<string, unknown>;
};
};
};
user_metrics: {
links: {
related: {
href: string;
meta: Record<string, unknown>;
};
};
};
}