action tsapi_get_surveys_survey_id_metadata { label: "Fetches the metadata for a specific survey" provider: tsapi method: GET path: "/Surveys/{surveyId}/Metadata" encoding: json input: { type: "object" properties: { surveyId: { type: "string" format: "uuid" } } required: ["surveyId"] additionalProperties: false } output: { type: "object" properties: { hierarchies: { type: "array" items: { type: "object" properties: { ident: { type: "string" } metadata: { type: "object" } parent: { type: "object" } } additionalProperties: false } } interviewCount: { type: "integer" format: "int32" } languages: { type: "array" items: { type: "object" properties: { ident: { type: "string" } name: { type: "string" } subLanguages: { type: "array" items: { type: "object" additionalProperties: true } } } additionalProperties: false } } name: { type: "string" } title: { type: "string" } variables: { type: "array" items: { type: "object" properties: { ident: { type: "string" } label: { type: "object" } maxResponses: { type: "integer" format: "int32" } name: { type: "string" } parentType: { type: "object" } questions: { type: "array" items: { type: "object" additionalProperties: true } } type: { type: "object" } use: { type: "object" } variableValues: { type: "object" } } additionalProperties: false } } } additionalProperties: false } }