Decision Gate Docs

Deterministic, replayable gate evaluation with auditable decisions.

Asset Core docs

providers_list

List registered evidence providers and capabilities summary.

Key notes

  • Returns provider identifiers and transport metadata.
  • Results are scoped by auth policy.

Inputs

No fields.

Input Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {},
  "required": [],
  "type": "object"
}

Outputs

  • providers (required): Type: array.

Output Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "providers": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "checks": {
            "items": {
              "description": "Check identifier.",
              "type": "string"
            },
            "type": "array"
          },
          "provider_id": {
            "description": "Provider identifier.",
            "type": "string"
          },
          "transport": {
            "description": "Provider transport type.",
            "enum": [
              "builtin",
              "mcp"
            ],
            "type": "string"
          }
        },
        "required": [
          "provider_id",
          "transport",
          "checks"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "providers"
  ],
  "type": "object"
}

Examples

List registered evidence providers.

Input:

{}

Output:

{
  "providers": [
    {
      "checks": [
        "get"
      ],
      "provider_id": "env",
      "transport": "builtin"
    }
  ]
}