waroom_get_service_labels
Retrieve a list of labels for a specific service, specifying page number and items per page for precise results.
Instructions
特定のサービスのラベル一覧を取得します。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | 取得するページ番号(1以上の整数)。デフォルト: 1 | |
per_page | No | 1ページあたりの取得数(1-100)。デフォルト: 50 | |
service_name | Yes | サービス名 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "取得するページ番号(1以上の整数)。デフォルト: 1",
"minimum": 1,
"type": "integer"
},
"per_page": {
"description": "1ページあたりの取得数(1-100)。デフォルト: 50",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"service_name": {
"description": "サービス名",
"maxLength": 100,
"minLength": 1,
"type": "string"
}
},
"required": [
"service_name"
],
"type": "object"
}