Valence Security · Schema

Valence Security SaaS Integration

A SaaS application integration connected to the Valence Security platform

SaaS SecuritySSPMAI SecurityIdentity SecurityITDRPosture ManagementRisk Remediation

Properties

Name Type Description
id string Unique integration identifier
name string Integration name
application string SaaS application name (e.g., Salesforce, GitHub, Microsoft 365)
status string Integration connection status
type string Authentication method for the integration
permissions array Granted permissions for the integration
risk_score number Overall risk score for this integration
open_alerts integer Number of open security alerts
last_scanned string When the integration was last scanned
created_at string
View JSON Schema on GitHub

JSON Schema

valence-security-integration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://valencesecurity.com/schemas/integration",
  "title": "Valence Security SaaS Integration",
  "description": "A SaaS application integration connected to the Valence Security platform",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique integration identifier"
    },
    "name": {
      "type": "string",
      "description": "Integration name"
    },
    "application": {
      "type": "string",
      "description": "SaaS application name (e.g., Salesforce, GitHub, Microsoft 365)"
    },
    "status": {
      "type": "string",
      "enum": ["connected", "disconnected", "error", "pending"],
      "description": "Integration connection status"
    },
    "type": {
      "type": "string",
      "enum": ["oauth", "api_key", "service_account", "custom"],
      "description": "Authentication method for the integration"
    },
    "permissions": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Granted permissions for the integration"
    },
    "risk_score": {
      "type": "number",
      "minimum": 0,
      "maximum": 100,
      "description": "Overall risk score for this integration"
    },
    "open_alerts": {
      "type": "integer",
      "description": "Number of open security alerts"
    },
    "last_scanned": {
      "type": "string",
      "format": "date-time",
      "description": "When the integration was last scanned"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["id", "application", "status"]
}