Amazon Kendra · Schema
Faq
An Amazon Kendra FAQ list associated with a search index.
AIEnterprise SearchKnowledge ManagementMachine LearningNatural Language
Properties
| Name | Type | Description |
|---|---|---|
| Id | string | The identifier of the FAQ. |
| Name | string | The name of the FAQ. |
| Status | string | The status of the FAQ. |
| FileFormat | string | The format of the FAQ file. |
| CreatedAt | string | When the FAQ was created. |
| UpdatedAt | string | When the FAQ was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-kendra/refs/heads/main/json-schema/amazon-kendra-faq-schema.json",
"title": "Faq",
"description": "An Amazon Kendra FAQ list associated with a search index.",
"type": "object",
"properties": {
"Id": {
"type": "string",
"description": "The identifier of the FAQ.",
"example": "faq-abc12345"
},
"Name": {
"type": "string",
"description": "The name of the FAQ.",
"example": "product-faqs"
},
"Status": {
"type": "string",
"enum": [
"CREATING",
"UPDATING",
"ACTIVE",
"DELETING",
"FAILED"
],
"description": "The status of the FAQ.",
"example": "ACTIVE"
},
"FileFormat": {
"type": "string",
"enum": [
"CSV",
"CSV_WITH_HEADER",
"JSON"
],
"description": "The format of the FAQ file.",
"example": "CSV"
},
"CreatedAt": {
"type": "string",
"format": "date-time",
"description": "When the FAQ was created."
},
"UpdatedAt": {
"type": "string",
"format": "date-time",
"description": "When the FAQ was last updated."
}
}
}