{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "http://asyncapi.com/bindings/http/0.3.0/message.json",
  "title": "HTTP message bindings object",
  "description": "This object contains information about the message representation in HTTP.",
  "type": "object",
  "additionalProperties": false,
  "patternProperties": {
    "^x-[\\w\\d\\.\\x2d_]+$": {
      "$ref": "http://asyncapi.com/definitions/3.0.0/specificationExtension.json"
    }
  },
  "properties": {
    "headers": {
      "$ref": "http://asyncapi.com/definitions/3.0.0/schema.json",
      "description": "\tA Schema object containing the definitions for HTTP-specific headers. This schema MUST be of type 'object' and have a 'properties' key."
    },
    "statusCode": {
      "type": "number",
      "description": "The HTTP response status code according to [RFC 9110](https://httpwg.org/specs/rfc9110.html#overview.of.status.codes). `statusCode` is only relevant for messages referenced by the [Operation Reply Object](https://www.asyncapi.com/docs/reference/specification/v3.0.0#operationReplyObject), as it defines the status code for the response. In all other cases, this value can be safely ignored."
    },
    "bindingVersion": {
      "type": "string",
      "enum": [
        "0.3.0"
      ],
      "description": "The version of this binding. If omitted, \"latest\" MUST be assumed."
    }
  },
  "examples": [
    {
      "headers": {
        "type": "object",
        "properties": {
          "Content-Type": {
            "type": "string",
            "enum": [
              "application/json"
            ]
          }
        }
      },
      "bindingVersion": "0.3.0"
    }
  ]
}
