action botify_get_urls_datamodel { label: "Gets an Analysis datamodel" description: "Gets an Analysis datamodel" provider: botify method: GET path: "/analyses/{username}/{project_slug}/{analysis_slug}/urls/datamodel" encoding: json input: { type: "object" properties: { area: { type: "string" enum: ["current", "disappeared", "new", "search_engines_orphans"] } } additionalProperties: false } output: { type: "object" required: ["fields", "groups"] properties: { fields: { type: "array" items: { type: "object" required: ["multiple", "name", "subtype", "group", "type", "id", "permissions"] properties: { group: { type: "string" } id: { type: "string" } multiple: { type: "boolean" } name: { type: "string" } permissions: { type: "array" items: { type: "string" } } subtype: { type: "string" } type: { type: "string" } } } } groups: { type: "array" items: { type: "object" required: ["id", "name"] properties: { id: { type: "string" } name: { type: "string" } } } } } } }