Salesforce · Schema

CodeCoverageWarning

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
message string
name ['string', 'null']
namespace ['string', 'null']
View JSON Schema on GitHub

JSON Schema

salesforce-code-coverage-warning-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "message": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "['string', 'null']",
      "example": "Example Title"
    },
    "namespace": {
      "type": "['string', 'null']",
      "example": "example_value"
    }
  },
  "required": [
    "id",
    "message",
    "name",
    "namespace"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CodeCoverageWarning"
}