Stack Exchange · Schema

Filter

Filter schema from Stack Exchange API

Q And ADeveloper CommunityKnowledge GraphStack OverflowStack ExchangeReputationTagsCommunityMCPAI Grounding

Properties

Name Type Description
filter string
filter_type string
included_fields array
View JSON Schema on GitHub

JSON Schema

stackexchange-api-v2-3-filter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Filter",
  "description": "Filter schema from Stack Exchange API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/stackexchange/refs/heads/main/json-schema/stackexchange-api-v2-3-filter-schema.json",
  "type": "object",
  "properties": {
    "filter": {
      "type": "string"
    },
    "filter_type": {
      "type": "string",
      "enum": [
        "safe",
        "unsafe",
        "invalid"
      ]
    },
    "included_fields": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}