snippets_rules

List of snippet rules

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-snippets-rules-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/snippets_rules",
  "title": "snippets_rules",
  "description": "List of snippet rules",
  "items": {
    "properties": {
      "description": {
        "example": "Rule description",
        "type": "string"
      },
      "enabled": {
        "example": true,
        "type": "boolean"
      },
      "expression": {
        "example": "http.cookie eq \"a=b\"",
        "type": "string"
      },
      "snippet_name": {
        "$ref": "#/components/schemas/snippets_snippet_name"
      }
    },
    "type": "object"
  },
  "type": "array"
}