JFrog · Schema

NodePoolRequest

ArtifactoryCI/CDContainer RegistryDevOpsMLOpsPackage ManagementSecuritySoftware Supply Chain

Properties

Name Type Description
name string
projectId integer
numberOfNodes integer
isOnDemand boolean
architecture string
operatingSystem string
View JSON Schema on GitHub

JSON Schema

jfrog-nodepoolrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NodePoolRequest",
  "title": "NodePoolRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "projectId": {
      "type": "integer"
    },
    "numberOfNodes": {
      "type": "integer"
    },
    "isOnDemand": {
      "type": "boolean"
    },
    "architecture": {
      "type": "string"
    },
    "operatingSystem": {
      "type": "string"
    }
  },
  "required": [
    "name"
  ]
}