{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/BundleEntryResponse",
  "definitions": {
    "BundleEntryResponse": {
      "type": "object",
      "properties": {
        "status": {
          "type": "string",
          "description": "The HTTP status code and phrase returned by the server.",
          "examples": [
            "200 OK",
            "201 Created"
          ]
        },
        "location": {
          "type": "string",
          "description": "The location header returned by the server (for created/updated resources).",
          "format": "uri"
        },
        "etag": {
          "type": "string",
          "description": "The ETag for the resource, as returned by the server"
        },
        "lastModified": {
          "type": "string",
          "description": "When the resource was last modified on the server.",
          "format": "date-time"
        }
      },
      "required": [
        "status"
      ],
      "additionalProperties": false,
      "description": "Response metadata for an entry in a transaction-response or batch-response bundle. Contains the outcome of the operation that was performed.",
      "examples": [
        {
          "status": "201 Created",
          "location": "Policy/pol-2025-1001/_history/1",
          "etag": "W/\"1\"",
          "lastModified": "2025-07-01T10:30:00Z"
        }
      ]
    }
  },
  "$id": "https://bind-standard.org/schema/BundleEntryResponse",
  "title": "BundleEntryResponse"
}
