Tines · Schema

Tines Story

A Tines story (automated workflow) resource

Security AutomationNo-CodeWorkflow AutomationSecurity OperationsSOARIncident ResponseREST APIWebhooks

Properties

Name Type Description
id integer Unique story identifier
name string Story name
description string User-defined description
team_id integer ID of the team that owns the story
folder_id integernull ID of the folder containing the story
guid string Globally unique story identifier
slug string URL-friendly story identifier
published boolean Whether the story is published
disabled boolean Whether the story is disabled
priority boolean Whether the story is flagged as high priority
keep_events_for integer Event retention period in seconds
tags array Tags associated with the story
mode string Story execution mode
owners array
created_at string
updated_at string
edited_at string
View JSON Schema on GitHub

JSON Schema

tines-story-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tines/main/json-schema/tines-story-schema.json",
  "title": "Tines Story",
  "description": "A Tines story (automated workflow) resource",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique story identifier"
    },
    "name": {
      "type": "string",
      "description": "Story name"
    },
    "description": {
      "type": "string",
      "description": "User-defined description"
    },
    "team_id": {
      "type": "integer",
      "description": "ID of the team that owns the story"
    },
    "folder_id": {
      "type": ["integer", "null"],
      "description": "ID of the folder containing the story"
    },
    "guid": {
      "type": "string",
      "description": "Globally unique story identifier"
    },
    "slug": {
      "type": "string",
      "description": "URL-friendly story identifier"
    },
    "published": {
      "type": "boolean",
      "description": "Whether the story is published"
    },
    "disabled": {
      "type": "boolean",
      "description": "Whether the story is disabled",
      "default": false
    },
    "priority": {
      "type": "boolean",
      "description": "Whether the story is flagged as high priority",
      "default": false
    },
    "keep_events_for": {
      "type": "integer",
      "description": "Event retention period in seconds",
      "minimum": 3600,
      "maximum": 31536000
    },
    "tags": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Tags associated with the story"
    },
    "mode": {
      "type": "string",
      "description": "Story execution mode"
    },
    "owners": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "user_id": { "type": "integer" },
          "email": { "type": "string", "format": "email" },
          "name": { "type": "string" }
        }
      }
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "edited_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["id", "team_id"],
  "additionalProperties": true
}