JFrog · Schema

PlatformGroup

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
name string
description string
auto_join boolean
admin_privileges boolean
realm string
external_id string
members array
View JSON Schema on GitHub

JSON Schema

jfrog-platformgroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlatformGroup",
  "title": "PlatformGroup",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "auto_join": {
      "type": "boolean"
    },
    "admin_privileges": {
      "type": "boolean"
    },
    "realm": {
      "type": "string"
    },
    "external_id": {
      "type": "string"
    },
    "members": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "name"
  ]
}