> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.odr.io/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.odr.io/_mcp/server.

# /master/{template_uuid}

GET https://master/b7ee31b8466ff933265455487962

### Alias of

/template/\{template\_uuid}

/master/\{template\_uuid}

Retrieves the full template (datatype) definition for a given UUID. The UUID can be either a **template UUID** or a **dataset UUID** — the API accepts both interchangeably.

Returns the template's name, description, field definitions (including field types, render plugins, and radio options where applicable), render plugins, and database metadata.

## Authentication

A pre-request script automatically fetches a bearer token before each request:

1. POSTs to `{{url}}/token` with `{{apiuser}}` and `{{apipass}}` credentials

2. Stores the returned token in `{{token}}`

3. The token is then used as the `Authorization` header for the request

## Path Parameters

| Parameter       | Type   | Required | Description                                                                                                        |
| --------------- | ------ | -------- | ------------------------------------------------------------------------------------------------------------------ |
| `template_uuid` | string | Yes      | The UUID of the template (datatype) **or** the UUID of a dataset that uses that template. Both forms are accepted. |

## Example Requests

```
GET {{url}}/template/ddc5e9ba834ad596cc31aebb1225

```

Using a dataset UUID in place of the template UUID:

```
GET {{url}}/template/<dataset_uuid>

```

## Example Response (200 OK)

```json
{
  "internal_id": 738,
  "name": "RRUFF Samples",
  "description": null,
  "template_uuid": "ddc5e9ba834ad596cc31aebb1225",
  "updated_at": "2026-01-08 18:47:44",
  "metadata_for_uuid": "",
  "render_plugins": [
    { "render_plugin": "RRUFF Special Reference Plugin" },
    { "render_plugin": "RRUFF Sample Plugin" },
    { "render_plugin": "Linked Descendant Merger Plugin" },
    { "render_plugin": "File Updater Helper Plugin" },
    { "render_plugin": "RRUFF Sample Links Plugin" }
  ],
  "_database_metadata": {
    "_create_date": "2024-02-13 21:31:54",
    "_create_auth": "Alex Pires",
    "_public_date": "2024-02-13 21:32:00",
    "_master_published_version": "0",
    "_master_revision": "0",
    "_tracking_master_version": "0"
  },
  "fields": [
    {
      "internal_id": 7077,
      "name": "Sample Images",
      "description": null,
      "fieldtype": "Image",
      "field_uuid": "35a91c0ddd6a5ccf7681be7e9e4d",
      "template_field_uuid": "b571f4738325b415195f432f9625",
      "updated_at": "2025-01-14 18:59:25",
      "render_plugins": [{ "render_plugin": "File Renamer Addon" }],
      "_field_metadata": { "...": "..." }
    },
    {
      "internal_id": 7069,
      "name": "RRUFF ID",
      "description": "Sample IDs must be unique within your collection.",
      "fieldtype": "Short Text",
      "field_uuid": "ee88404d73886150b59dd07cbb12",
      "template_field_uuid": "d0e7a8e1e42d8159008116130e86",
      "is_unique": 1,
      "updated_at": "2026-02-10 22:03:48",
      "_field_metadata": { "...": "..." }
    },
    {
      "internal_id": 7070,
      "name": "Sample Status",
      "description": null,
      "fieldtype": "Single Select",
      "field_uuid": "e4bd3c7024d12f5c80da99fffd63",
      "radio_options": [
        { "name": "The identification of this mineral has been confirmed by single-crystal X-ray diffraction", "template_radio_option_uuid": "92456147cc47c8de892767367ff1" },
        { "name": "Unconfirmed", "template_radio_option_uuid": "2100da4a951510a9a455764d8404" }
      ],
      "_field_metadata": { "...": "..." }
    }
  ]
}

```

## Response Fields

### Top-level

| Field                | Type    | Description                                                        |
| -------------------- | ------- | ------------------------------------------------------------------ |
| `internal_id`        | integer | Internal numeric ID of the template                                |
| `name`               | string  | Human-readable name of the template                                |
| `description`        | string  | null                                                               |
| `template_uuid`      | string  | Canonical UUID of the template                                     |
| `updated_at`         | string  | Timestamp of the last update (UTC)                                 |
| `metadata_for_uuid`  | string  | UUID of a linked metadata record, if any                           |
| `render_plugins`     | array   | List of render plugins applied to this template                    |
| `_database_metadata` | object  | Audit metadata (creation date/author, publish date, revision info) |
| `fields`             | array   | List of field definitions belonging to this template               |

### Field Object (`fields[]`)

| Field                 | Type    | Description                                                                                                               |
| --------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------- |
| `internal_id`         | integer | Internal numeric ID of the field                                                                                          |
| `name`                | string  | Human-readable field name                                                                                                 |
| `description`         | string  | null                                                                                                                      |
| `fieldtype`           | string  | Data type of the field (e.g. `Short Text`, `Paragraph Text`, `Long Text`, `Integer`, `Boolean`, `Image`, `Single Select`) |
| `field_uuid`          | string  | UUID of this specific field instance                                                                                      |
| `template_field_uuid` | string  | null                                                                                                                      |
| `updated_at`          | string  | Timestamp of the last update (UTC)                                                                                        |
| `is_unique`           | integer | `1` if values must be unique across records; omitted otherwise                                                            |
| `render_plugins`      | array   | Render plugins applied to this field (omitted if none)                                                                    |
| `radio_options`       | array   | Available options for `Single Select` fields (omitted for other field types)                                              |
| `_field_metadata`     | object  | Audit metadata for the field                                                                                              |

### Radio Option Object (`fields[].radio_options[]`)

| Field                        | Type   | Description                        |
| ---------------------------- | ------ | ---------------------------------- |
| `name`                       | string | Display label for the option       |
| `template_radio_option_uuid` | string | UUID of the radio option           |
| `updated_at`                 | string | Timestamp of the last update (UTC) |

## Query Parameters

| Parameter              | Type   | Required | Description                                                           |
| ---------------------- | ------ | -------- | --------------------------------------------------------------------- |
| `XDEBUG_SESSION_START` | string | No       | Debug parameter for PhpStorm Xdebug integration. Disabled by default. |

Reference: https://docs.odr.io/odr-search-api-v-4/master-template-uuid

## Response

### 200

OK

- `internal_id` (integer, required)
- `name` (string, required)
- `description` (string, required)
- `template_uuid` (string, required)
- `updated_at` (string, required)
- `metadata_for_uuid` (string, required)
- `_database_metadata` (object, required)
  - `_create_date` (string, required)
  - `_create_auth` (string, required)
  - `_public_date` (string, required)
  - `_master_published_version` (string, required)
  - `_master_revision` (string, required)
  - `_tracking_master_version` (string, required)
- `fields` (list of object, required)
  - `internal_id` (integer, required)
  - `name` (string, required)
  - `description` (string, required)
  - `fieldtype` (string, required)
  - `field_uuid` (string, required)
  - `updated_at` (string, required)
  - `is_unique` (integer, required)
  - `_field_metadata` (object, required)
    - `_create_date` (string, required)
    - `_create_auth` (string, required)
    - `_public_date` (string, required)
    - `_master_published_version` (string, required)
    - `_master_revision` (string, required)
    - `_tracking_master_version` (string, required)
  - `template_field_uuid` (any, optional)
- `related_databases` (list of object, required)
  - `internal_id` (integer, required)
  - `name` (string, required)
  - `description` (string, required)
  - `template_uuid` (string, required)
  - `updated_at` (string, required)
  - `metadata_for_uuid` (string, required)
  - `_database_metadata` (object, required)
    - `_create_date` (string, required)
    - `_create_auth` (string, required)
    - `_public_date` (string, required)
    - `_master_published_version` (string, required)
    - `_master_revision` (string, required)
    - `_tracking_master_version` (string, required)
  - `fields` (list of object, required)
    - `internal_id` (integer, required)
    - `name` (string, required)
    - `description` (string, required)
    - `fieldtype` (string, required)
    - `field_uuid` (string, required)
    - `updated_at` (string, required)
    - `_field_metadata` (object, required)
      - `_create_date` (string, required)
      - `_create_auth` (string, required)
      - `_public_date` (string, required)
      - `_master_published_version` (string, required)
      - `_master_revision` (string, required)
      - `_tracking_master_version` (string, required)
    - `template_field_uuid` (any, optional)
  - `related_databases` (list of object, required)
    - `internal_id` (integer, required)
    - `name` (string, required)
    - `template_uuid` (string, required)
    - `updated_at` (string, required)
    - `render_plugins` (list of object, required)
      - `render_plugin` (string, required)
    - `metadata_for_uuid` (string, required)
    - `_database_metadata` (object, required)
      - `_create_date` (string, required)
      - `_create_auth` (string, required)
      - `_public_date` (string, required)
      - `_master_published_version` (string, required)
      - `_master_revision` (string, required)
      - `_tracking_master_version` (string, required)
    - `fields` (list of object, required)
      - `internal_id` (integer, required)
      - `name` (string, required)
      - `description` (string, required)
      - `fieldtype` (string, required)
      - `field_uuid` (string, required)
      - `template_field_uuid` (string, required)
      - `updated_at` (string, required)
      - `_field_metadata` (object, required)
        - `_create_date` (string, required)
        - `_create_auth` (string, required)
        - `_public_date` (string, required)
        - `_master_published_version` (string, required)
        - `_master_revision` (string, required)
        - `_tracking_master_version` (string, required)
    - `related_databases` (list of any, required)
    - `description` (any, optional)

## Examples

**Response**

```json
{
  "internal_id": 780,
  "name": "Statistical Classification for Biosignature Identification - SCOBI database",
  "description": "Statistical Classification for Biosignature Identification",
  "template_uuid": "8e63e9815aa164ed71cb83a1b1de",
  "updated_at": "2024-05-16 18:44:24",
  "metadata_for_uuid": "",
  "_database_metadata": {
    "_create_date": "2024-05-01 20:29:11",
    "_create_auth": "Barbara Lafuente",
    "_public_date": "2024-05-16 18:52:44",
    "_master_published_version": "0",
    "_master_revision": "0",
    "_tracking_master_version": "0"
  },
  "fields": [
    {
      "internal_id": 7241,
      "name": "Sample name",
      "description": "Field description.",
      "fieldtype": "Short Text",
      "field_uuid": "d51398d6ffacc4972ce06b44e4eb",
      "updated_at": "2024-05-16 18:53:10",
      "is_unique": 1,
      "_field_metadata": {
        "_create_date": "2024-05-01 20:29:48",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:53:10",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      }
    },
    {
      "internal_id": 7244,
      "name": "Sample Description",
      "description": "Field description.",
      "fieldtype": "Paragraph Text",
      "field_uuid": "1b933a24bdebadb9a70c4ac9c079",
      "updated_at": "2024-05-16 18:53:10",
      "is_unique": 1,
      "_field_metadata": {
        "_create_date": "2024-05-01 21:49:59",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:53:10",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      }
    },
    {
      "internal_id": 7335,
      "name": "Caveats",
      "description": "Field description.",
      "fieldtype": "Paragraph Text",
      "field_uuid": "8ba1d47ab153c74e8cdc93f628da",
      "updated_at": "2024-05-16 18:53:10",
      "is_unique": 1,
      "_field_metadata": {
        "_create_date": "2024-05-01 22:50:28",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:53:10",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      }
    },
    {
      "internal_id": 7346,
      "name": "Download Dataset record",
      "description": "Field description.",
      "fieldtype": "File",
      "field_uuid": "6ed72c4a39d5dbd87bed879aefd0",
      "updated_at": "2024-05-16 18:22:07",
      "is_unique": 1,
      "_field_metadata": {
        "_create_date": "2024-05-16 18:22:07",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:53:10",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      }
    }
  ],
  "related_databases": [
    {
      "internal_id": 789,
      "name": "Elemental Data",
      "description": "",
      "template_uuid": "9c74ec735029b4c4803cfd5db0ac",
      "updated_at": "2024-05-16 18:24:14",
      "metadata_for_uuid": "",
      "_database_metadata": {
        "_create_date": "2024-05-02 00:16:52",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:53:46",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      },
      "fields": [
        {
          "internal_id": 7347,
          "name": "Description",
          "description": "Field description.",
          "fieldtype": "Long Text",
          "field_uuid": "7f4db46b9cc1869a1fdb0b3d4018",
          "updated_at": "2024-05-16 18:24:33",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:24:33",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:33",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7348,
          "name": "Metadata file",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "a3518bcdbafdcdfa3f70961c1229",
          "updated_at": "2024-05-16 18:25:51",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:25:51",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:33",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7345,
          "name": "Elemental data",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "dd288a3ad184ab1e3aa3e33c37b9",
          "updated_at": "2024-05-16 18:25:29",
          "_field_metadata": {
            "_create_date": "2024-05-02 00:17:14",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:33",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        }
      ],
      "related_databases": [
        {
          "internal_id": 809,
          "name": "SCOBI References",
          "template_uuid": "9c9366fd8f2e4c7a93924e94f302",
          "updated_at": "2024-10-15 16:38:00",
          "render_plugins": [
            {
              "render_plugin": "RRUFF References Plugin"
            }
          ],
          "metadata_for_uuid": "",
          "_database_metadata": {
            "_create_date": "2024-08-19 15:59:46",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-08-19 16:24:38",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          },
          "fields": [
            {
              "internal_id": 7581,
              "name": "Authors",
              "description": "The authors of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "99a0f0b8f3cf4f6e77c943161963",
              "template_field_uuid": "af88b9e5d2680ac5bf6dc4fc34cd",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7582,
              "name": "Article Title",
              "description": "The title of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "081c83f8ae2dbe23fde68e83499f",
              "template_field_uuid": "dbf1b342812f12c1b750b036b201",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7583,
              "name": "Journal",
              "description": "The name of the journal in which this article was published.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "631d487e1cc233e0d33b63113f6d",
              "template_field_uuid": "b1e0f7899c4fe89fe3813251c8e0",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7584,
              "name": "Year",
              "description": "What year the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "29bdd40d14e4560a61e13e729d63",
              "template_field_uuid": "889ce6e0f61474112e1fe8adf9da",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7585,
              "name": "Month",
              "description": "What month the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "232721dfd181b858a8b81648aa3a",
              "template_field_uuid": "8477f82c647fc82cd71b332214ac",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7586,
              "name": "Volume",
              "description": "The volume number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6211c3ea1d9db4279ce1ec9ff86b",
              "template_field_uuid": "5efacf0643a1e8fda456e9b87e10",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7587,
              "name": "Issue",
              "description": "The issue number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6955964dab28d4fe14e1c30f0134",
              "template_field_uuid": "838729a4a4756e46b7ae3cc97320",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7588,
              "name": "Book Title",
              "description": "The title of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "1977358156a82eb49467ff6e39b3",
              "template_field_uuid": "a853d10124bb44e3757c4e3c9978",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7589,
              "name": "Publisher",
              "description": "The publisher of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "8f2ea18055db55a3e4ecc49db8a6",
              "template_field_uuid": "fd3e32ec256281aabe46ec62a6a9",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7590,
              "name": "Publisher Location",
              "description": "Where the publisher of this book is located.",
              "fieldtype": "Long Text",
              "field_uuid": "6b7dee544f85274de0ef9fd25e68",
              "template_field_uuid": "cf2c1300f439680ab97f9a37e364",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7591,
              "name": "Keywords",
              "description": "?",
              "fieldtype": "Long Text",
              "field_uuid": "0c69ee119e5b39ce3b054016a55d",
              "template_field_uuid": "64b6b1d9bc29f24d47ebb7bd8dd0",
              "updated_at": "2025-10-14 15:34:02",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7592,
              "name": "Pages",
              "description": "The pages the article takes up in the journal.",
              "fieldtype": "Short Text",
              "field_uuid": "093d77c805ce765b83d4f3e086e6",
              "template_field_uuid": "98d09e2bcc2de65a4025a1eed271",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7593,
              "name": "File",
              "description": "A file containing a scan of the physical reference.",
              "fieldtype": "File",
              "field_uuid": "48fa6473f115c80d442fc5527c66",
              "template_field_uuid": "24f66484dac4d59f6b6048b0ced2",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7594,
              "name": "URL",
              "description": "A URL that points to an online copy of the reference.",
              "fieldtype": "Long Text",
              "field_uuid": "a2e3ae3202c649e611e48de93bf4",
              "template_field_uuid": "af2b881823aef6560ac667ce2222",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7595,
              "name": "Reference ID",
              "description": "An external ID used for the data",
              "fieldtype": "Integer",
              "field_uuid": "2d2194733b0d650c4fc7b965915d",
              "template_field_uuid": "72a950a4705a83547020834a1ce8",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            }
          ],
          "related_databases": []
        }
      ]
    },
    {
      "internal_id": 782,
      "name": "UV/VIS reflectance Data",
      "description": "",
      "template_uuid": "35aaabe2863829808588da3e0d40",
      "updated_at": "2024-05-16 18:27:51",
      "metadata_for_uuid": "",
      "_database_metadata": {
        "_create_date": "2024-05-01 21:51:49",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:53:43",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      },
      "fields": [
        {
          "internal_id": 7349,
          "name": "Description",
          "description": "Field description.",
          "fieldtype": "Long Text",
          "field_uuid": "8e31976efbb13bfe4c6ac48069a5",
          "updated_at": "2024-05-16 18:26:19",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:26:19",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:38",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7350,
          "name": "Metadata file",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "b101d9cdb57a9b724a94fb23abea",
          "updated_at": "2024-05-16 18:26:22",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:26:22",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:38",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7351,
          "name": "UV/VIS reflectance spectra data",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "e85f488a3f76dcfd1c05daea84a3",
          "updated_at": "2024-05-16 18:26:23",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:26:23",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:38",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        }
      ],
      "related_databases": [
        {
          "internal_id": 809,
          "name": "SCOBI References",
          "template_uuid": "9c9366fd8f2e4c7a93924e94f302",
          "updated_at": "2024-10-15 16:38:00",
          "render_plugins": [
            {
              "render_plugin": "RRUFF References Plugin"
            }
          ],
          "metadata_for_uuid": "",
          "_database_metadata": {
            "_create_date": "2024-08-19 15:59:46",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-08-19 16:24:38",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          },
          "fields": [
            {
              "internal_id": 7581,
              "name": "Authors",
              "description": "The authors of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "99a0f0b8f3cf4f6e77c943161963",
              "template_field_uuid": "af88b9e5d2680ac5bf6dc4fc34cd",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7582,
              "name": "Article Title",
              "description": "The title of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "081c83f8ae2dbe23fde68e83499f",
              "template_field_uuid": "dbf1b342812f12c1b750b036b201",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7583,
              "name": "Journal",
              "description": "The name of the journal in which this article was published.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "631d487e1cc233e0d33b63113f6d",
              "template_field_uuid": "b1e0f7899c4fe89fe3813251c8e0",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7584,
              "name": "Year",
              "description": "What year the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "29bdd40d14e4560a61e13e729d63",
              "template_field_uuid": "889ce6e0f61474112e1fe8adf9da",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7585,
              "name": "Month",
              "description": "What month the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "232721dfd181b858a8b81648aa3a",
              "template_field_uuid": "8477f82c647fc82cd71b332214ac",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7586,
              "name": "Volume",
              "description": "The volume number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6211c3ea1d9db4279ce1ec9ff86b",
              "template_field_uuid": "5efacf0643a1e8fda456e9b87e10",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7587,
              "name": "Issue",
              "description": "The issue number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6955964dab28d4fe14e1c30f0134",
              "template_field_uuid": "838729a4a4756e46b7ae3cc97320",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7588,
              "name": "Book Title",
              "description": "The title of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "1977358156a82eb49467ff6e39b3",
              "template_field_uuid": "a853d10124bb44e3757c4e3c9978",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7589,
              "name": "Publisher",
              "description": "The publisher of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "8f2ea18055db55a3e4ecc49db8a6",
              "template_field_uuid": "fd3e32ec256281aabe46ec62a6a9",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7590,
              "name": "Publisher Location",
              "description": "Where the publisher of this book is located.",
              "fieldtype": "Long Text",
              "field_uuid": "6b7dee544f85274de0ef9fd25e68",
              "template_field_uuid": "cf2c1300f439680ab97f9a37e364",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7591,
              "name": "Keywords",
              "description": "?",
              "fieldtype": "Long Text",
              "field_uuid": "0c69ee119e5b39ce3b054016a55d",
              "template_field_uuid": "64b6b1d9bc29f24d47ebb7bd8dd0",
              "updated_at": "2025-10-14 15:34:02",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7592,
              "name": "Pages",
              "description": "The pages the article takes up in the journal.",
              "fieldtype": "Short Text",
              "field_uuid": "093d77c805ce765b83d4f3e086e6",
              "template_field_uuid": "98d09e2bcc2de65a4025a1eed271",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7593,
              "name": "File",
              "description": "A file containing a scan of the physical reference.",
              "fieldtype": "File",
              "field_uuid": "48fa6473f115c80d442fc5527c66",
              "template_field_uuid": "24f66484dac4d59f6b6048b0ced2",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7594,
              "name": "URL",
              "description": "A URL that points to an online copy of the reference.",
              "fieldtype": "Long Text",
              "field_uuid": "a2e3ae3202c649e611e48de93bf4",
              "template_field_uuid": "af2b881823aef6560ac667ce2222",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7595,
              "name": "Reference ID",
              "description": "An external ID used for the data",
              "fieldtype": "Integer",
              "field_uuid": "2d2194733b0d650c4fc7b965915d",
              "template_field_uuid": "72a950a4705a83547020834a1ce8",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            }
          ],
          "related_databases": []
        }
      ]
    },
    {
      "internal_id": 783,
      "name": "Raman Data",
      "description": "",
      "template_uuid": "89f8ababf5b9030c9749a4c79eda",
      "updated_at": "2024-05-16 18:53:53",
      "metadata_for_uuid": "",
      "_database_metadata": {
        "_create_date": "2024-05-01 21:52:06",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:53:53",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      },
      "fields": [
        {
          "internal_id": 7352,
          "name": "Description",
          "description": "Field description.",
          "fieldtype": "Long Text",
          "field_uuid": "173d1dc3a5e406f27ecbb23057a8",
          "updated_at": "2024-05-16 18:28:43",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:28:43",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:58",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7353,
          "name": "Metadata file",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "67c655bc8c93fc6f637ada6c288a",
          "updated_at": "2024-05-16 18:28:46",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:28:46",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:58",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7354,
          "name": "Raman data",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "5e293700d76e3734143ea7f4d0d7",
          "updated_at": "2024-05-16 18:28:48",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:28:48",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:53:58",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        }
      ],
      "related_databases": [
        {
          "internal_id": 809,
          "name": "SCOBI References",
          "template_uuid": "9c9366fd8f2e4c7a93924e94f302",
          "updated_at": "2024-10-15 16:38:00",
          "render_plugins": [
            {
              "render_plugin": "RRUFF References Plugin"
            }
          ],
          "metadata_for_uuid": "",
          "_database_metadata": {
            "_create_date": "2024-08-19 15:59:46",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-08-19 16:24:38",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          },
          "fields": [
            {
              "internal_id": 7581,
              "name": "Authors",
              "description": "The authors of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "99a0f0b8f3cf4f6e77c943161963",
              "template_field_uuid": "af88b9e5d2680ac5bf6dc4fc34cd",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7582,
              "name": "Article Title",
              "description": "The title of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "081c83f8ae2dbe23fde68e83499f",
              "template_field_uuid": "dbf1b342812f12c1b750b036b201",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7583,
              "name": "Journal",
              "description": "The name of the journal in which this article was published.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "631d487e1cc233e0d33b63113f6d",
              "template_field_uuid": "b1e0f7899c4fe89fe3813251c8e0",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7584,
              "name": "Year",
              "description": "What year the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "29bdd40d14e4560a61e13e729d63",
              "template_field_uuid": "889ce6e0f61474112e1fe8adf9da",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7585,
              "name": "Month",
              "description": "What month the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "232721dfd181b858a8b81648aa3a",
              "template_field_uuid": "8477f82c647fc82cd71b332214ac",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7586,
              "name": "Volume",
              "description": "The volume number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6211c3ea1d9db4279ce1ec9ff86b",
              "template_field_uuid": "5efacf0643a1e8fda456e9b87e10",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7587,
              "name": "Issue",
              "description": "The issue number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6955964dab28d4fe14e1c30f0134",
              "template_field_uuid": "838729a4a4756e46b7ae3cc97320",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7588,
              "name": "Book Title",
              "description": "The title of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "1977358156a82eb49467ff6e39b3",
              "template_field_uuid": "a853d10124bb44e3757c4e3c9978",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7589,
              "name": "Publisher",
              "description": "The publisher of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "8f2ea18055db55a3e4ecc49db8a6",
              "template_field_uuid": "fd3e32ec256281aabe46ec62a6a9",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7590,
              "name": "Publisher Location",
              "description": "Where the publisher of this book is located.",
              "fieldtype": "Long Text",
              "field_uuid": "6b7dee544f85274de0ef9fd25e68",
              "template_field_uuid": "cf2c1300f439680ab97f9a37e364",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7591,
              "name": "Keywords",
              "description": "?",
              "fieldtype": "Long Text",
              "field_uuid": "0c69ee119e5b39ce3b054016a55d",
              "template_field_uuid": "64b6b1d9bc29f24d47ebb7bd8dd0",
              "updated_at": "2025-10-14 15:34:02",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7592,
              "name": "Pages",
              "description": "The pages the article takes up in the journal.",
              "fieldtype": "Short Text",
              "field_uuid": "093d77c805ce765b83d4f3e086e6",
              "template_field_uuid": "98d09e2bcc2de65a4025a1eed271",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7593,
              "name": "File",
              "description": "A file containing a scan of the physical reference.",
              "fieldtype": "File",
              "field_uuid": "48fa6473f115c80d442fc5527c66",
              "template_field_uuid": "24f66484dac4d59f6b6048b0ced2",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7594,
              "name": "URL",
              "description": "A URL that points to an online copy of the reference.",
              "fieldtype": "Long Text",
              "field_uuid": "a2e3ae3202c649e611e48de93bf4",
              "template_field_uuid": "af2b881823aef6560ac667ce2222",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7595,
              "name": "Reference ID",
              "description": "An external ID used for the data",
              "fieldtype": "Integer",
              "field_uuid": "2d2194733b0d650c4fc7b965915d",
              "template_field_uuid": "72a950a4705a83547020834a1ce8",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            }
          ],
          "related_databases": []
        }
      ]
    },
    {
      "internal_id": 784,
      "name": "Isotopic Data",
      "description": "",
      "template_uuid": "6c7beb5c20a05cd3dced8c683dc8",
      "updated_at": "2024-05-16 18:54:01",
      "metadata_for_uuid": "",
      "_database_metadata": {
        "_create_date": "2024-05-01 21:52:30",
        "_create_auth": "Barbara Lafuente",
        "_public_date": "2024-05-16 18:54:01",
        "_master_published_version": "0",
        "_master_revision": "0",
        "_tracking_master_version": "0"
      },
      "fields": [
        {
          "internal_id": 7355,
          "name": "Description",
          "description": "Field description.",
          "fieldtype": "Long Text",
          "field_uuid": "9e287eb57be34431e9d203d372f7",
          "updated_at": "2024-05-16 18:30:56",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:30:56",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:54:11",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7356,
          "name": "Metadata file",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "b473a1b19b7d95acb5024005098a",
          "updated_at": "2024-05-16 18:30:59",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:30:59",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:54:11",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        },
        {
          "internal_id": 7357,
          "name": "Isotopic data",
          "description": "Field description.",
          "fieldtype": "File",
          "field_uuid": "e4e7223af6766b3445f1053423c2",
          "updated_at": "2024-05-16 18:31:02",
          "_field_metadata": {
            "_create_date": "2024-05-16 18:31:02",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-05-16 18:54:11",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          }
        }
      ],
      "related_databases": [
        {
          "internal_id": 809,
          "name": "SCOBI References",
          "template_uuid": "9c9366fd8f2e4c7a93924e94f302",
          "updated_at": "2024-10-15 16:38:00",
          "render_plugins": [
            {
              "render_plugin": "RRUFF References Plugin"
            }
          ],
          "metadata_for_uuid": "",
          "_database_metadata": {
            "_create_date": "2024-08-19 15:59:46",
            "_create_auth": "Barbara Lafuente",
            "_public_date": "2024-08-19 16:24:38",
            "_master_published_version": "0",
            "_master_revision": "0",
            "_tracking_master_version": "0"
          },
          "fields": [
            {
              "internal_id": 7581,
              "name": "Authors",
              "description": "The authors of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "99a0f0b8f3cf4f6e77c943161963",
              "template_field_uuid": "af88b9e5d2680ac5bf6dc4fc34cd",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7582,
              "name": "Article Title",
              "description": "The title of this article.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "081c83f8ae2dbe23fde68e83499f",
              "template_field_uuid": "dbf1b342812f12c1b750b036b201",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7583,
              "name": "Journal",
              "description": "The name of the journal in which this article was published.",
              "fieldtype": "Paragraph Text",
              "field_uuid": "631d487e1cc233e0d33b63113f6d",
              "template_field_uuid": "b1e0f7899c4fe89fe3813251c8e0",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7584,
              "name": "Year",
              "description": "What year the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "29bdd40d14e4560a61e13e729d63",
              "template_field_uuid": "889ce6e0f61474112e1fe8adf9da",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7585,
              "name": "Month",
              "description": "What month the article was published.",
              "fieldtype": "Short Text",
              "field_uuid": "232721dfd181b858a8b81648aa3a",
              "template_field_uuid": "8477f82c647fc82cd71b332214ac",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7586,
              "name": "Volume",
              "description": "The volume number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6211c3ea1d9db4279ce1ec9ff86b",
              "template_field_uuid": "5efacf0643a1e8fda456e9b87e10",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7587,
              "name": "Issue",
              "description": "The issue number of the journal the article was published in.",
              "fieldtype": "Short Text",
              "field_uuid": "6955964dab28d4fe14e1c30f0134",
              "template_field_uuid": "838729a4a4756e46b7ae3cc97320",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7588,
              "name": "Book Title",
              "description": "The title of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "1977358156a82eb49467ff6e39b3",
              "template_field_uuid": "a853d10124bb44e3757c4e3c9978",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7589,
              "name": "Publisher",
              "description": "The publisher of this book.",
              "fieldtype": "Long Text",
              "field_uuid": "8f2ea18055db55a3e4ecc49db8a6",
              "template_field_uuid": "fd3e32ec256281aabe46ec62a6a9",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7590,
              "name": "Publisher Location",
              "description": "Where the publisher of this book is located.",
              "fieldtype": "Long Text",
              "field_uuid": "6b7dee544f85274de0ef9fd25e68",
              "template_field_uuid": "cf2c1300f439680ab97f9a37e364",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7591,
              "name": "Keywords",
              "description": "?",
              "fieldtype": "Long Text",
              "field_uuid": "0c69ee119e5b39ce3b054016a55d",
              "template_field_uuid": "64b6b1d9bc29f24d47ebb7bd8dd0",
              "updated_at": "2025-10-14 15:34:02",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7592,
              "name": "Pages",
              "description": "The pages the article takes up in the journal.",
              "fieldtype": "Short Text",
              "field_uuid": "093d77c805ce765b83d4f3e086e6",
              "template_field_uuid": "98d09e2bcc2de65a4025a1eed271",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7593,
              "name": "File",
              "description": "A file containing a scan of the physical reference.",
              "fieldtype": "File",
              "field_uuid": "48fa6473f115c80d442fc5527c66",
              "template_field_uuid": "24f66484dac4d59f6b6048b0ced2",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7594,
              "name": "URL",
              "description": "A URL that points to an online copy of the reference.",
              "fieldtype": "Long Text",
              "field_uuid": "a2e3ae3202c649e611e48de93bf4",
              "template_field_uuid": "af2b881823aef6560ac667ce2222",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            },
            {
              "internal_id": 7595,
              "name": "Reference ID",
              "description": "An external ID used for the data",
              "fieldtype": "Integer",
              "field_uuid": "2d2194733b0d650c4fc7b965915d",
              "template_field_uuid": "72a950a4705a83547020834a1ce8",
              "updated_at": "2024-08-19 15:59:46",
              "_field_metadata": {
                "_create_date": "2024-08-19 15:59:46",
                "_create_auth": "Barbara Lafuente",
                "_public_date": "2024-02-07 16:12:52",
                "_master_published_version": "0",
                "_master_revision": "0",
                "_tracking_master_version": "0"
              }
            }
          ],
          "related_databases": []
        }
      ]
    }
  ]
}
```

**SDK Code**

```python /master/{template_uuid}_example
import requests

url = "https://https/master/b7ee31b8466ff933265455487962"

response = requests.get(url)

print(response.json())
```

```javascript /master/{template_uuid}_example
const url = 'https://https/master/b7ee31b8466ff933265455487962';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go /master/{template_uuid}_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://https/master/b7ee31b8466ff933265455487962"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby /master/{template_uuid}_example
require 'uri'
require 'net/http'

url = URI("https://https/master/b7ee31b8466ff933265455487962")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java /master/{template_uuid}_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/master/b7ee31b8466ff933265455487962")
  .asString();
```

```php /master/{template_uuid}_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/master/b7ee31b8466ff933265455487962');

echo $response->getBody();
```

```csharp /master/{template_uuid}_example
using RestSharp;

var client = new RestClient("https://https/master/b7ee31b8466ff933265455487962");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift /master/{template_uuid}_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/master/b7ee31b8466ff933265455487962")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```