---
title: AI Style Group Object
description: An object that represents an AI style group object
url: https://storyblok.com/docs/api/management/ai-style-groups/ai-style-group-object
---

# AI Style Group Object

An object that represents an AI style group object associated with a space or an organization.

## Properties

-   `id` (number)
    
    The numeric ID of the AI style group
    
-   `name` (string)
    
    The name of the AI style group (max 100 characters)
    
-   `description` (string)
    
    Description of the AI style group (max 400 characters)
    
-   `source` (string)
    
    Either “Space” or “Org”
    
-   `author` (string)
    
    Name of the user who created the AI style group
    
-   `rules_count` (number)
    
    Number of AI output rules associated with this group
    
-   `ai_output_rule_ids` (number\[\])
    
    Array of AI output rule IDs that belong to this group
    

## Example Object

AI style group Object

```json
{
"id": 67499417567240,
"name": "Marketing Style Guide",
"description": "Brand guidelines for marketing content creation",
"source": "Space",
"author": "John Doe",
"rules_count": 2,
"ai_output_rule_ids": [123456789012345, 123456789012346]
}
```

## Pagination

-   [Previous: Introduction](/docs/api/management/ai-style-groups)
-   [Next: Create an AI Style Group in a Space](/docs/api/management/ai-style-groups/spaces/create-ai-style-group-space)
