Skip to main content
GET
/
projects
/
{project}
/
{
  "$schema": "https://example.com/schemas/Project.json",
  "aliases": [
    "prom"
  ],
  "created_by": "<string>",
  "created_on": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "id": "proj_260fc3e8-1acb-4268-8a63-447792b0c2f4",
  "last_modified_by": "<string>",
  "last_modified_on": "2023-11-07T05:31:56Z",
  "title": "Prometheus",
  "type": "application-service",
  "versioning": {
    "release_cycle": "regular",
    "release_interval_days": 1,
    "scheme": "semantic",
    "support_model": "rolling"
  }
}

Response

OK

created_by
string
required

user who created the record.

created_on
string<date-time>
required

timestamp of when the record was created.

id
string
required

ID is the unique identifier for the Project

Examples:

"proj_260fc3e8-1acb-4268-8a63-447792b0c2f4"

last_modified_by
string
required

user who last modified the record.

last_modified_on
string<date-time>
required

timestamp of when the record was last modified.

title
string
required

Display name for the Project.

Examples:

"Prometheus"

type
enum<string>
required

Type is the type of Project.

Available options:
kube-addon,
kube-operator,
kube-control-plane-provider,
application-service,
platform,
application
Examples:

"application-service"

$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

"https://example.com/schemas/Project.json"

aliases
string[] | null

Optional set of string aliases for the Project. Must be globally unique.

Examples:
["prom"]
description
string

Optional long-form description of the Project.

versioning
object

An optional object containing information about the Project's versioning and release model.

I