وثائق بوابة القرار

تقييم بوابة حتمي وقابل لإعادة التشغيل مع قرارات قابلة للتدقيق.

وثائق Asset Core

قائمة السيناريوهات

قائمة السيناريوهات المسجلة لمستأجر وفضاء الأسماء.

ملاحظات رئيسية

  • يتطلب tenant_id و namespace_id.
  • يعيد معرفات السيناريو والتجزئات.

مدخلات

  • المؤشر (اختياري): أحد نوعي المخطط 2.
  • الحد (اختياري): الحد الأقصى لعدد السجلات التي سيتم إرجاعها.
  • namespace_id (مطلوب): معرف مساحة الاسم.
  • tenant_id (مطلوب): معرف المستأجر.

مخطط الإدخال

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "cursor": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "description": "Pagination cursor.",
          "type": "string"
        }
      ]
    },
    "limit": {
      "description": "Maximum number of records to return.",
      "maximum": 1000,
      "minimum": 1,
      "type": "integer"
    },
    "namespace_id": {
      "description": "Namespace identifier.",
      "minimum": 1,
      "type": "integer"
    },
    "tenant_id": {
      "description": "Tenant identifier.",
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "tenant_id",
    "namespace_id"
  ],
  "type": "object"
}

المخرجات

  • العناصر (مطلوب): النوع: array.
  • next_token (مطلوب): أحد نوعي المخطط 2.

مخطط الإخراج

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "properties": {
    "items": {
      "items": {
        "additionalProperties": false,
        "properties": {
          "namespace_id": {
            "description": "Namespace identifier.",
            "minimum": 1,
            "type": "integer"
          },
          "scenario_id": {
            "description": "Scenario identifier.",
            "type": "string"
          },
          "spec_hash": {
            "additionalProperties": false,
            "properties": {
              "algorithm": {
                "enum": [
                  "sha256"
                ],
                "type": "string"
              },
              "value": {
                "description": "Lowercase hex digest.",
                "type": "string"
              }
            },
            "required": [
              "algorithm",
              "value"
            ],
            "type": "object"
          }
        },
        "required": [
          "scenario_id",
          "namespace_id",
          "spec_hash"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "next_token": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "description": "Pagination token for the next page.",
          "type": "string"
        }
      ]
    }
  },
  "required": [
    "items",
    "next_token"
  ],
  "type": "object"
}

أمثلة

قائمة السيناريوهات لمساحة الأسماء.

مدخل:

{
  "cursor": null,
  "limit": 50,
  "namespace_id": 1,
  "tenant_id": 1
}

Output:

{
  "items": [
    {
      "namespace_id": 1,
      "scenario_id": "example-scenario",
      "spec_hash": {
        "algorithm": "sha256",
        "value": "5c3a5b6bce0f4a2c9e22c4fa6a1e6d8d90b0f2dfed1b7f1e9b3d3b3d1f0c9b21"
      }
    }
  ],
  "next_token": null
}