NpmAccess

Access to npm package

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
type object
registry string
package string
version string
View JSON Schema on GitHub

JSON Schema

application-research-npmaccess-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NpmAccess",
  "title": "NpmAccess",
  "type": "object",
  "description": "Access to npm package",
  "required": [
    "type",
    "registry",
    "package",
    "version"
  ],
  "properties": {
    "type": {
      "const": "npm"
    },
    "registry": {
      "type": "string"
    },
    "package": {
      "type": "string"
    },
    "version": {
      "type": "string"
    }
  }
}