A namespace that can be used to group DataProducts.

Writable Fields:

name: The Namespace name

full_name (optional): The full name of the Namespace

website (optional): Website URL associated with the Namespace

Read-only Fields:

url: Reference to the instance of the Namespace, final integer is the Namespace id

last_updated: Datetime that this record was last updated

updated_by: Reference to the user that updated this record

GET /api/namespace/?format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "url": "https://data.fairdatapipeline.org/api/namespace/3/?format=api",
            "last_updated": "2024-02-09T15:38:17.027349Z",
            "name": "ryanjfield",
            "full_name": null,
            "website": null,
            "updated_by": "https://data.fairdatapipeline.org/api/users/2/?format=api"
        },
        {
            "url": "https://data.fairdatapipeline.org/api/namespace/1/?format=api",
            "last_updated": "2024-02-09T15:36:25.843702Z",
            "name": "PSU",
            "full_name": "Pennsylvania State University",
            "website": "https://ror.org/04p491231",
            "updated_by": "https://data.fairdatapipeline.org/api/users/2/?format=api"
        }
    ]
}