{
  "description": "Subscription describes an pub/sub event subscription.",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
      "type": [
        "string",
        "null"
      ]
    },
    "kind": {
      "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": [
        "string",
        "null"
      ]
    },
    "metadata": {
      "type": [
        "object",
        "null"
      ]
    },
    "scopes": {
      "items": {
        "type": "string"
      },
      "type": [
        "array",
        "null"
      ]
    },
    "spec": {
      "additionalProperties": false,
      "description": "SubscriptionSpec is the spec for an event subscription.",
      "properties": {
        "bulkSubscribe": {
          "additionalProperties": false,
          "description": "Represents bulk subscribe properties",
          "properties": {
            "enabled": {
              "type": "boolean"
            },
            "maxAwaitDurationMs": {
              "type": [
                "integer",
                "null"
              ]
            },
            "maxMessagesCount": {
              "type": [
                "integer",
                "null"
              ]
            }
          },
          "required": [
            "enabled"
          ],
          "type": [
            "object",
            "null"
          ]
        },
        "deadLetterTopic": {
          "type": [
            "string",
            "null"
          ]
        },
        "metadata": {
          "additionalProperties": {
            "type": "string"
          },
          "type": [
            "object",
            "null"
          ]
        },
        "pubsubname": {
          "type": "string"
        },
        "route": {
          "type": "string"
        },
        "topic": {
          "type": "string"
        }
      },
      "required": [
        "pubsubname",
        "route",
        "topic"
      ],
      "type": [
        "object",
        "null"
      ]
    }
  },
  "type": "object"
}