Entity Capabilities Format

NEW v2.0.1

Entity Capabilities is a revolutionary new component that enables AI agents to understand the exact functional capabilities of any business entity with 100% accuracy.

The world's first machine-readable business capability map. Entity Capabilities provides objective, verifiable information about what a business can actually do, eliminating guesswork for AI agents and enabling perfect understanding of business functionality.

⭐ Naming Rules & Standards

✅ Correct Format

acceptsReservations
hasDelivery
isWheelchairAccessible
supportsOnlinePayments

❌ Incorrect Format

accepts_reservations
delivery
wheelchair
online_payments
📝 Standard Rules:
  • camelCase format (hasDelivery, acceptsReservations)
  • • Use prefixes: has, is, accepts, supports
  • Boolean values only for objective verification
  • • Examples are expandable - no limitations on creativity
Properties & Structure

functionalFeatures

Required
object

Boolean values for objectively verifiable business features

camelCase naming
Boolean values only
has/is/accepts/supports prefixes

contentTypes

array

Types of content available on the website

String array
Content categories
What users can find

businessModel

string

Primary business model or category

Single string
Business type
Core model description

targetAudience

array

Target customer segments

String array
Audience categories
Customer demographics

paymentMethods

array

Accepted payment methods

String array
Payment types
Financial transaction methods

serviceTypes

array

Types of services provided

String array
Service categories
What business offers
JSON Schema Definition
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schemas.meta-aiml.org/components/entity-capabilities-format.json",
  "title": "Entity Capabilities Format",
  "description": "Objective capabilities and features of business entities for AIML v2.0.1",
  "version": "2.0.1",
  "$defs": {
    "EntityCapabilities": {
      "type": "object",
      "description": "Objective business capabilities and features",
      "properties": {
        "functionalFeatures": {
          "type": "object",
          "description": "Objective functional features of the entity (only boolean values)",
          "additionalProperties": { "type": "boolean" }
        },
        "contentTypes": {
          "type": "array",
          "description": "Types of content available on the site",
          "items": { "type": "string" }
        },
        "businessModel": {
          "type": "string",
          "description": "Primary business model"
        },
        "targetAudience": {
          "type": "array",
          "description": "Target audience segments",
          "items": { "type": "string" }
        },
        "paymentMethods": {
          "type": "array",
          "description": "Accepted payment methods",
          "items": { "type": "string" }
        },
        "serviceTypes": {
          "type": "array",
          "description": "Types of services provided",
          "items": { "type": "string" }
        }
      },
      "required": ["functionalFeatures"],
      "additionalProperties": false
    }
  }
}
Usage Example

Complete entity capabilities for a restaurant entity:

{
  "entityCapabilities": {
    "functionalFeatures": {
      "acceptsReservations": true,
      "hasDelivery": true,
      "hasTakeout": true,
      "hasOutdoorSeating": false,
      "hasVegetarianOptions": true,
      "hasVeganOptions": true,
      "acceptsCreditCards": true,
      "hasWifi": true,
      "hasParking": false,
      "isWheelchairAccessible": true
    },
    "contentTypes": ["menu", "photos", "reviews", "location", "hours", "contact"],
    "businessModel": "restaurant",
    "targetAudience": ["families", "young_adults", "tourists"],
    "paymentMethods": ["credit_card", "cash", "digital_wallet"],
    "serviceTypes": ["dine_in", "delivery", "takeout"],
    "cuisineTypes": ["italian", "mediterranean"]
  }
}
Key Benefits

🎯 Perfect AI Understanding

  • • 100% accurate capability detection
  • • No guesswork or uncertainty
  • • Objective, verifiable information
  • • Machine-readable business features

🚀 Extensible Framework

  • • Examples can be freely expanded
  • • No predefined limitations
  • • Industry-specific capabilities
  • • Future-proof design

Entity Capabilities component enables objective, machine-readable business feature detection for AI agents. NEW in v2.0.1.