Argo CD · Schema

projectProjectTokenCreateRequest

ProjectTokenCreateRequest defines project token creation parameters.

Continuous DeliveryContainersDeploymentGitOpsKubernetesCNCFOpen Source

Properties

Name Type Description
description string
expiresIn integer
id string
project string
role string
View JSON Schema on GitHub

JSON Schema

argo-cd-project-project-token-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/argo-cd/refs/heads/main/json-schema/argo-cd-project-project-token-create-request-schema.json",
  "title": "projectProjectTokenCreateRequest",
  "description": "ProjectTokenCreateRequest defines project token creation parameters.",
  "type": "object",
  "properties": {
    "description": {
      "type": "string"
    },
    "expiresIn": {
      "type": "integer",
      "format": "int64",
      "title": "expiresIn represents a duration in seconds"
    },
    "id": {
      "type": "string"
    },
    "project": {
      "type": "string"
    },
    "role": {
      "type": "string"
    }
  }
}