SigNoz · Capability

SigNoz — downtimeschedules

SigNoz — downtimeschedules. 5 operations. Lead operation: List downtime schedules. Self-contained Naftiko capability covering one Signoz business surface.

Run with Naftiko Signozdowntimeschedules

What You Can Do

GET
Listdowntimeschedules — List downtime schedules
/v1/api/v1/downtime-schedules
POST
Createdowntimeschedule — Create downtime schedule
/v1/api/v1/downtime-schedules
DELETE
Deletedowntimeschedulebyid — Delete downtime schedule
/v1/api/v1/downtime-schedules/{id}
GET
Getdowntimeschedulebyid — Get downtime schedule by ID
/v1/api/v1/downtime-schedules/{id}
PUT
Updatedowntimeschedulebyid — Update downtime schedule
/v1/api/v1/downtime-schedules/{id}

MCP Tools

list-downtime-schedules

List downtime schedules

read-only idempotent
create-downtime-schedule

Create downtime schedule

delete-downtime-schedule

Delete downtime schedule

idempotent
get-downtime-schedule-id

Get downtime schedule by ID

read-only idempotent
update-downtime-schedule

Update downtime schedule

idempotent

Capability Spec

signoz-downtimeschedules.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SigNoz — downtimeschedules
  description: 'SigNoz — downtimeschedules. 5 operations. Lead operation: List downtime schedules. Self-contained Naftiko
    capability covering one Signoz business surface.'
  tags:
  - Signoz
  - downtimeschedules
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SIGNOZ_API_KEY: SIGNOZ_API_KEY
capability:
  consumes:
  - type: http
    namespace: signoz-downtimeschedules
    baseUri: https://{host}:{port}{base_path}
    description: SigNoz — downtimeschedules business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-downtime_schedules
      path: /api/v1/downtime_schedules
      operations:
      - name: listdowntimeschedules
        method: GET
        description: List downtime schedules
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: active
          in: query
          type: boolean
        - name: recurring
          in: query
          type: boolean
      - name: createdowntimeschedule
        method: POST
        description: Create downtime schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: api-v1-downtime_schedules-id
      path: /api/v1/downtime_schedules/{id}
      operations:
      - name: deletedowntimeschedulebyid
        method: DELETE
        description: Delete downtime schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: getdowntimeschedulebyid
        method: GET
        description: Get downtime schedule by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
      - name: updatedowntimeschedulebyid
        method: PUT
        description: Update downtime schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.SIGNOZ_API_KEY}}'
  exposes:
  - type: rest
    namespace: signoz-downtimeschedules-rest
    port: 8080
    description: REST adapter for SigNoz — downtimeschedules. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/api/v1/downtime-schedules
      name: api-v1-downtime-schedules
      description: REST surface for api-v1-downtime_schedules.
      operations:
      - method: GET
        name: listdowntimeschedules
        description: List downtime schedules
        call: signoz-downtimeschedules.listdowntimeschedules
        with:
          active: rest.active
          recurring: rest.recurring
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdowntimeschedule
        description: Create downtime schedule
        call: signoz-downtimeschedules.createdowntimeschedule
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/downtime-schedules/{id}
      name: api-v1-downtime-schedules-id
      description: REST surface for api-v1-downtime_schedules-id.
      operations:
      - method: DELETE
        name: deletedowntimeschedulebyid
        description: Delete downtime schedule
        call: signoz-downtimeschedules.deletedowntimeschedulebyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getdowntimeschedulebyid
        description: Get downtime schedule by ID
        call: signoz-downtimeschedules.getdowntimeschedulebyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatedowntimeschedulebyid
        description: Update downtime schedule
        call: signoz-downtimeschedules.updatedowntimeschedulebyid
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: signoz-downtimeschedules-mcp
    port: 9090
    transport: http
    description: MCP adapter for SigNoz — downtimeschedules. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-downtime-schedules
      description: List downtime schedules
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-downtimeschedules.listdowntimeschedules
      with:
        active: tools.active
        recurring: tools.recurring
      outputParameters:
      - type: object
        mapping: $.
    - name: create-downtime-schedule
      description: Create downtime schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: signoz-downtimeschedules.createdowntimeschedule
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-downtime-schedule
      description: Delete downtime schedule
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: signoz-downtimeschedules.deletedowntimeschedulebyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: get-downtime-schedule-id
      description: Get downtime schedule by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signoz-downtimeschedules.getdowntimeschedulebyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-downtime-schedule
      description: Update downtime schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: signoz-downtimeschedules.updatedowntimeschedulebyid
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.