lenso-capability-http-client 0.2.0

Portable outbound HTTP Client Capability contract for Lenso vNext Modules.
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "required": ["method", "url", "headers", "body"],
  "properties": {
    "method": {"type": "string", "minLength": 1, "maxLength": 32},
    "url": {"type": "string", "minLength": 1, "maxLength": 4096},
    "headers": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["name", "value"],
        "properties": {
          "name": {"type": "string", "minLength": 1},
          "value": {"type": "string"}
        },
        "additionalProperties": false
      }
    },
    "body": {"type": "string", "format": "byte"}
  },
  "additionalProperties": false
}