{
  "openapi": "3.0.0",
  "info": {
    "title": "IMDb贡献问题 API (V1)",
    "version": "1.0.0",
    "description": "获取IMDb标题贡献问题数据，包括特定IMDb标题，用于数据维护工作流和标题元数据审查。"
  },
  "paths": {
    "/api/imdb/title-contribution-questions/v1": {
      "get": {
        "tags": [
          "IMDb"
        ],
        "summary": "贡献问题",
        "description": "获取IMDb标题贡献问题数据，包括特定IMDb标题，用于数据维护工作流和标题元数据审查。",
        "operationId": "titleContributionQuestions",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "用户的鉴权令牌。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "id",
            "in": "query",
            "description": "该标题的唯一IMDb ID（例如：tt12037194）。",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "languageCountry",
            "in": "query",
            "description": "语言与国家/地区偏好。\n\n可用值：\n- `en_US`: 英语（美国）\n- `fr_CA`: 法语（加拿大）\n- `fr_FR`: 法语（法国）\n- `de_DE`: 德语（德国）\n- `hi_IN`: 印地语（印度）\n- `it_IT`: 意大利语（意大利）\n- `pt_BR`: 葡萄牙语（巴西）\n- `es_ES`: 西班牙语（西班牙）\n- `es_US`: 西班牙语（美国）\n- `es_MX`: 西班牙语（墨西哥）",
            "required": false,
            "schema": {
              "type": "string",
              "default": "en_US",
              "description": "Language and country options for IMDb data.",
              "enum": [
                "en_US",
                "fr_CA",
                "fr_FR",
                "de_DE",
                "hi_IN",
                "it_IT",
                "pt_BR",
                "es_ES",
                "es_US",
                "es_MX"
              ]
            }
          }
        ],
        "responses": {
          "default": {
            "description": "默认响应",
            "content": {
              "application/json": {
                "example": {
                  "code": 0,
                  "data": {
                    "title": {
                      "__typename": "Title",
                      "id": "tt12037194",
                      "titleText": {
                        "text": "Furiosa: A Mad Max Saga",
                        "isOriginalTitle": true
                      },
                      "originalTitleText": {
                        "text": "Furiosa: A Mad Max Saga",
                        "isOriginalTitle": true
                      },
                      "releaseYear": {
                        "__typename": "YearRange",
                        "year": 2024,
                        "endYear": null
                      },
                      "releaseDate": {
                        "__typename": "ReleaseDate",
                        "month": 5,
                        "day": 24,
                        "year": 2024,
                        "country": {
                          "id": "US"
                        },
                        "restriction": null,
                        "attributes": [],
                        "displayableProperty": {
                          "qualifiersInMarkdownList": null
                        }
                      },
                      "titleType": {
                        "__typename": "TitleType",
                        "id": "movie",
                        "text": "Movie",
                        "categories": [
                          {
                            "id": "movie",
                            "text": "Movie",
                            "value": "movie"
                          }
                        ],
                        "canHaveEpisodes": false,
                        "isEpisode": false,
                        "isSeries": false,
                        "displayableProperty": {
                          "value": {
                            "plainText": ""
                          }
                        }
                      },
                      "primaryImage": {
                        "__typename": "Image",
                        "id": "rm645622785",
                        "url": "https://m.media-amazon.com/images/M/MV5BNTcwYWE1NTYtOWNiYy00NzY3LWIwY2MtNjJmZDkxNDNmOWE1XkEyXkFqcGc@._V1_.jpg",
                        "height": 4096,
                        "width": 2764
                      },
                      "contributionQuestions": null
                    }
                  }
                }
              }
            }
          }
        },
        "x-order": 34002000
      }
    }
  },
  "components": {}
}