{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://mememtech.com/content/schemas/handoff-envelope.schema.json",
  "title": "Mememtech Handoff Envelope",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "fromLane",
    "toLane",
    "source",
    "scope",
    "authorityState",
    "allowedUse",
    "constraints"
  ],
  "properties": {
    "fromLane": {
      "type": "string"
    },
    "toLane": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "scope": {
      "type": "string"
    },
    "authorityState": {
      "type": "string"
    },
    "allowedUse": {
      "type": "string"
    },
    "constraints": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}
