Science Domains
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/science-domains/ |
List Science Domains |
| GET | /api/science-domains/{uuid}/ |
Retrieve |
| POST | /api/science-domains/ |
Create |
| PUT | /api/science-domains/{uuid}/ |
Update |
| PATCH | /api/science-domains/{uuid}/ |
Partial Update |
| DELETE | /api/science-domains/{uuid}/ |
Delete |
| Other Actions | ||
| GET | /api/science-domains/presets/ |
List available science domain presets |
| POST | /api/science-domains/load_preset/ |
Load a science domain preset |
Core CRUD
List Science Domains
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 | |
- Model Source:
ScienceDomainOEnum - API Source:
science_domains_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
name |
string | Name |
name_exact |
string | Name (exact) |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
name |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
subdomains_count |
integer | Number of sub-domains in this domain |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
science_domains_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
name |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
subdomains_count |
integer | Number of sub-domains in this domain |
Create
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
ScienceDomainRequest - API Source:
science_domains_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. | |
name |
string | ✓ |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
name |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
subdomains_count |
integer | Number of sub-domains in this domain |
Update
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ScienceDomainRequest - API Source:
science_domains_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. | |
name |
string | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
name |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
subdomains_count |
integer | Number of sub-domains in this domain |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedScienceDomainRequest - API Source:
science_domains_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. | |
name |
string |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
name |
string | |
created |
string (date-time) | |
modified |
string (date-time) | |
subdomains_count |
integer | Number of sub-domains in this domain |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
science_domains_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body
Other Actions
List available science domain presets
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 | |
- Model Source:
ScienceDomainOEnum - API Source:
science_domains_presets_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
name |
string | Name |
name_exact |
string | Name (exact) |
o |
array | Ordering |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type |
|---|---|
name |
string |
label |
string |
description |
string |
Load a science domain preset
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
LoadScienceDomainPresetRequest - API Source:
science_domains_load_preset
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required |
|---|---|---|
preset |
string | ✓ |
200 -
| Field | Type |
|---|---|
created_domains |
integer |
created_subdomains |
integer |
skipped_domains |
integer |
skipped_subdomains |
integer |