Entity Capabilities Format
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.
✅ Correct Format
acceptsReservationshasDeliveryisWheelchairAccessiblesupportsOnlinePayments❌ Incorrect Format
accepts_reservationsdeliverywheelchaironline_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
functionalFeatures
Boolean values for objectively verifiable business features
contentTypes
Types of content available on the website
businessModel
Primary business model or category
targetAudience
Target customer segments
paymentMethods
Accepted payment methods
serviceTypes
Types of services provided
{
"$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
}
}
}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"]
}
}🎯 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.