action apptigent_collection_starts_with_string { label: "Collections - Starts with string" description: "Determine if any items in a collection start with a specific string" provider: apptigent method: POST path: "/CollectionStartsWithString" encoding: json input: { type: "object" required: ["input", "match"] properties: { ignorecase: { type: "string" description: "Ignore case when performing comparison" enum: [true, false] } input: { type: "array" description: "Collection of strings to search" items: { type: "string" } } match: { type: "string" description: "Text to match" } trim: { type: "string" description: "Trim white space from comparison string" enum: [true, false] } } } output: { type: "object" properties: { item: { type: "string" description: "First Value" } items: { type: "array" description: "All Values" items: { type: "string" } } status: { type: "boolean" description: "Success" } } } }