Science Sub Domains
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/science-sub-domains/ |
List Science Sub Domains |
| GET | /api/science-sub-domains/{uuid}/ |
Retrieve |
| POST | /api/science-sub-domains/ |
Create |
| PUT | /api/science-sub-domains/{uuid}/ |
Update |
| PATCH | /api/science-sub-domains/{uuid}/ |
Partial Update |
| DELETE | /api/science-sub-domains/{uuid}/ |
Delete |
List Science Sub Domains
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 | |
- Model Source:
ScienceSubDomainOEnum - API Source:
science_sub_domains_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
domain_name |
string | Domain name |
domain_uuid |
string (uuid) | Domain UUID |
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 | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. |
name |
string | |
domain |
string (uri) | |
domain_uuid |
string (uuid) | |
domain_name |
string | |
domain_code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
created |
string (date-time) | |
modified |
string (date-time) | |
projects_count |
integer | Number of active projects using this sub-domain |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
science_sub_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 | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. |
name |
string | |
domain |
string (uri) | |
domain_uuid |
string (uuid) | |
domain_name |
string | |
domain_code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
created |
string (date-time) | |
modified |
string (date-time) | |
projects_count |
integer | Number of active projects using this sub-domain |
Create
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
ScienceSubDomainRequest - API Source:
science_sub_domains_create
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | |
| Field | Type | Required | Description |
|---|---|---|---|
code |
string | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. | |
name |
string | ✓ | |
domain |
string (uri) | ✓ |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. |
name |
string | |
domain |
string (uri) | |
domain_uuid |
string (uuid) | |
domain_name |
string | |
domain_code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
created |
string (date-time) | |
modified |
string (date-time) | |
projects_count |
integer | Number of active projects using this sub-domain |
Update
1 2 3 4 5 6 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
- Model Source:
ScienceSubDomainRequest - API Source:
science_sub_domains_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
code |
string | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. | |
name |
string | ✓ | |
domain |
string (uri) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. |
name |
string | |
domain |
string (uri) | |
domain_uuid |
string (uuid) | |
domain_name |
string | |
domain_code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
created |
string (date-time) | |
modified |
string (date-time) | |
projects_count |
integer | Number of active projects using this sub-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:
PatchedScienceSubDomainRequest - API Source:
science_sub_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 | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. | |
name |
string | ||
domain |
string (uri) |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
url |
string (uri) | |
code |
string | Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank. |
name |
string | |
domain |
string (uri) | |
domain_uuid |
string (uuid) | |
domain_name |
string | |
domain_code |
string | Domain code (e.g. '1'). Auto-derived if left blank. |
created |
string (date-time) | |
modified |
string (date-time) | |
projects_count |
integer | Number of active projects using this sub-domain |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
science_sub_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