secunit-capture 0.7.1

Native upstream capturers for secunit (gated behind cargo features).
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/Battle-Creek-LLC/secunit/schemas/capture-github-org-members.schema.json",
  "title": "CaptureGithubOrgMembers",
  "type": "object",
  "required": ["capturer", "version", "captured_at", "args", "result"],
  "additionalProperties": false,
  "properties": {
    "capturer": { "const": "github.org-members" },
    "version": { "type": "string" },
    "captured_at": {
      "type": "string",
      "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
    },
    "args": {
      "type": "object",
      "required": ["org"],
      "properties": { "org": { "type": "string" } }
    },
    "result": {
      "type": "object",
      "required": ["members"],
      "properties": {
        "members": {
          "type": "array",
          "items": {
            "type": "object",
            "required": ["login"],
            "properties": { "login": { "type": "string" } }
          }
        }
      }
    }
  }
}