action vimeo_get_project_alt1 { label: "Get a specific project" description: "This method gets a single project that belongs to the specified user." provider: vimeo method: GET path: "/me/projects/{project_id}" encoding: json input: { type: "object" properties: { project_id: { type: "number" } } required: ["project_id"] additionalProperties: false } output: { type: "object" required: ["created_time", "metadata", "modified_time", "name", "resource_key", "uri", "user"] properties: { created_time: { type: "string" description: "The time in ISO 8601 format when the project was created." } metadata: { type: "object" description: "The project's metadata." required: ["connections"] properties: { connections: { type: "object" description: "A list of resource URIs related to the project." required: ["videos"] properties: { videos: { type: "object" description: "A standard connection object indicating how to get all the videos in this project." required: ["options", "total", "uri"] properties: { options: { type: "array" description: "An array of HTTP methods permitted on this URI." items: { type: "string" } } total: { type: "number" description: "The total number of videos on this connection." } uri: { type: "string" description: "The API URI that resolves to the connection data." } } } } } } } modified_time: { type: "string" description: "The time in ISO 8601 format when the project was last modified." } name: { type: "string" description: "The name of the folder." } resource_key: { type: "string" description: "The resource key string of the project." } uri: { type: "string" description: "The URI of the project." } user: { description: "The owner of the project." type: "object" } } } }