action api2cart_attribute_info { label: "AttributeInfo" description: "Get attribute info" provider: api2cart method: GET path: "/attribute.info.json" encoding: json input: { type: "object" properties: { exclude: { type: "string" } id: { type: "string" } lang_id: { type: "string" } params: { type: "string" } response_fields: { type: "string" } store_id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { result: { type: "object" properties: { additional_fields: { type: "object" } code: { type: "string" } custom_fields: { type: "object" } default_values: { type: "array" items: { type: "string" } } id: { type: "string" } lang_id: { type: "string" } name: { type: "string" } position: { type: "integer" } required: { type: "boolean" } store_id: { type: "string" } system: { type: "boolean" } type: { type: "string" } values: { type: "array" items: { type: "string" } } visible: { type: "boolean" } } } return_code: { type: "integer" } return_message: { type: "string" } } } }