Microsoft Azure · Schema

contentFilterResultsBase

Information about the content filtering results.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
sexual object
violence object
hate object
self_harm object
profanity object
custom_blocklists array
error object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-contentfilterresultsbase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/contentFilterResultsBase",
  "title": "contentFilterResultsBase",
  "type": "object",
  "description": "Information about the content filtering results.",
  "properties": {
    "sexual": {
      "$ref": "#/components/schemas/contentFilterSeverityResult"
    },
    "violence": {
      "$ref": "#/components/schemas/contentFilterSeverityResult"
    },
    "hate": {
      "$ref": "#/components/schemas/contentFilterSeverityResult"
    },
    "self_harm": {
      "$ref": "#/components/schemas/contentFilterSeverityResult"
    },
    "profanity": {
      "$ref": "#/components/schemas/contentFilterDetectedResult"
    },
    "custom_blocklists": {
      "items": {
        "$ref": "#/components/schemas/contentFilterIdResult"
      },
      "type": "array"
    },
    "error": {
      "$ref": "#/components/schemas/errorBase"
    }
  }
}