Salesforce · Schema

CodeCoverage

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
id string
locationsNotCovered array
name string
namespace ['string', 'null']
numLocations integer
numLocationsNotCovered integer
type string
View JSON Schema on GitHub

JSON Schema

salesforce-code-coverage-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "locationsNotCovered": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object"
      }
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "namespace": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "numLocations": {
      "type": "integer",
      "example": 10
    },
    "numLocationsNotCovered": {
      "type": "integer",
      "example": 10
    },
    "type": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "id",
    "locationsNotCovered",
    "name",
    "namespace",
    "numLocations",
    "numLocationsNotCovered",
    "type"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CodeCoverage"
}