{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-opensearch/refs/heads/main/json-schema/openapi-create-package-request-schema.json", "title": "CreatePackageRequest", "description": " Container for request parameters to CreatePackage operation. ", "type": "object", "properties": { "PackageName": { "allOf": [ { "$ref": "#/components/schemas/PackageName" }, { "description": "Unique identifier for the package." } ] }, "PackageType": { "allOf": [ { "$ref": "#/components/schemas/PackageType" }, { "description": "Type of package. Currently supports only TXT-DICTIONARY." } ] }, "PackageDescription": { "allOf": [ { "$ref": "#/components/schemas/PackageDescription" }, { "description": "Description of the package." } ] }, "PackageSource": { "allOf": [ { "$ref": "#/components/schemas/PackageSource" }, { "description": "The customer S3 location PackageSource for importing the package." } ] } }, "required": [ "PackageName", "PackageType", "PackageSource" ] }