For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SupportDashboard
Getting StartedAPI ReferenceRoadmapBlog
Getting StartedAPI ReferenceRoadmapBlog
    • Resources
    • Authentication
    • Pagination
    • Rate limiting
  • API Keys
    • GETList api keys
    • GETGet api key
    • POSTCreate api key
    • PUTUpdate api key
    • DELDelete api key
  • Environments
    • POSTCreate environment
    • PUTUpdate environment
    • DELDelete environment
  • Plans
    • The Plan object
    • GETList plans
    • GETGet plan
    • POSTCreate plan
    • PUTUpdate plan
    • DELDelete plan
  • Companies
    • The Company object
    • GETList companies
    • POSTUpsert company
    • GETLookup company
    • DELDelete company
    • POSTDelete company by keys
    • GETList company memberships
    • POSTGet or create company membership
    • DELDelete company membership
    • POSTUpsert company trait
  • Users
    • The User object
    • GETList users
    • GETLookup user
    • POSTUpsert user
    • DELDelete user
    • POSTDelete user by keys
    • POSTUpsert user trait
  • Events
    • The Event object
    • GETList events
    • POSTCreate event
    • POSTCreate event batch
    • GETGet event
  • Features
    • The Feature object
    • GETList features
    • GETGet feature
    • POSTCreate feature
    • PUTUpdate feature
    • DELDelete feature
  • Flags
    • The Flag object
    • GETList flags
    • GETGet flag
    • POSTCreate flag
    • PUTUpdate flag
    • DELDelete flag
    • PUTUpdate flag rules
    • POSTCheck flag
    • POSTCheck flags
  • Entitlements
    • GETList company overrides
    • GETGet company override
    • POSTCreate company override
    • PUTUpdate company override
    • DELDelete company override
    • GETList plan entitlements
    • GETGet plan entitlement
    • POSTCreate plan entitlement
    • PUTUpdate plan entitlement
    • DELDelete plan entitlement
  • Feature Usage
    • GETList feature usage
  • Billing Credits
    • GETList credits
    • POSTCreate credit
    • GETGet credit
    • PUTUpdate credit
    • DELDelete credit
    • GETList credit bundles
    • POSTCreate credit bundle
    • GETGet credit bundle
    • PUTUpdate credit bundle
    • DELDelete credit bundle
    • POSTGrant credits to company
    • GETList company credit grants
    • GETList credit grants
    • PUTZero out credit grant
    • GETList plan credit grants
    • POSTCreate plan credit grant
    • DELDelete plan credit grant
    • GETGet credit ledger
  • Account Members
    • GETList account members
    • GETGet account member
LogoLogo
SupportDashboard
Features

The Feature object

Response
1{
2 "id": "feat_4W9xxx93pjj",
3 "name": "New Feature",
4 "description": "",
5 "feature_type": "boolean",
6 "created_at": "2024-01-30T16:19:10.064273Z",
7 "updated_at": "2024-01-30T16:19:10.064273Z",
8 "event_subtype": null,
9 "trait_id": null,
10 "flags": {},
11}
Was this page helpful?
Previous

List features

Next
Built with

The Feature object describes features within your application. A new Feature is created in the Schematic application or via the API.

A Feature can be associated with Plans via Entitlements to target Companies. A Feature may be boolean, or metered (trait-based or event-based).

Attributes

id
string

Unique id generated by Schematic for the object.

name
string

The features’s name, which is displayable to Schematic users.

description
string

The feature’s description, which is displayable to Schematic users.

feature_type
string

The feature’s type, which can be boolean (on/off), trait (metered against a trait) or event (metered against aggregated events).

created_at
datetime

Datetime when the feature was created. Format is ISO 8601.

updated_at
datetime

Datetime when the feature was updated. Format is ISO 8601.

event_subtype
string

If the feature’s type is event, the unique key of the event to meter against.

trait_id
string

If the feature’s type is trait, the unique id of the event to meter against.

flags
dictionary

Set of flags that the feature is associated with. Currently, features may only be associated with one flag.