Projectオブジェクト

翻訳依頼注文の情報を格納するオブジェクト

属性

  • id
    オーダを一意に示すユニークなID。数字
  • organization_id
    オーダーのひもづくグループ名。数字
  • user_id
    オーダーを作成したユーザID。数字
  • point
    このオーダーで使用されたポイント。数字
  • created_at
    登録日時
  • updated_at
    最終更新日時
  • url
    オーダー詳細取得APIのURL
  • html_url
    ユーザ画面上の詳細URL
  • question_count
    依頼数。数字
  • questions
    Questionオブジェクトの配列。
  • language_id
    翻訳元言語のID。文字列
  • translated_language_id
    翻訳先言語のID。文字列

Optional

  • language
    翻訳元言語のLanguageオブジェクト
  • translated_language
    翻訳先言語のLanguageオブジェクト

Example

{
  "id": 3,
  "organization_id": 4,
  "user_id": 107,
  "point": 7088,
  "created_at": "2014-06-10T10:32:50.000+09:00",
  "updated_at": "2014-06-10T10:32:50.000+09:00",
  "language_id": "ja",
  "translated_language_id": "en",
  "individual": false,
  "url": "https://biz.conyac.cc/api/v1/projects/3",
  "html_url": "https://conyac.cc/b/projects/3",
  "question_count": 2,
  "organization": {
    "id": 4,
    "name": "test10",
    "plan_id": 1,
    "user_id": 107,
    "default": 1,
    "description": null,
    "created_at": "2014-06-10T10:32:38.000+09:00",
    "updated_at": "2014-06-10T10:32:50.000+09:00",
    "url": "https://biz.conyac.cc/api/v1/organizations/4",
    "html_url": "https://conyac.cc/b/organizations/4",
    "point": 78986,
    "available_point": 78986
  },
  "questions": [
    {
      "id": 5,
      "project_id": 3,
      "question_source_id": 1,
      "user_id": 107,
      "title": "Test Request",
      "letter_count": 1764,
      "language_id": "ja",
      "translated_language_id": "en",
      "status": 0,
      "status_text": "pending",
      "total_point": 7056,
      "created_at": "2014-06-10T10:32:50.000+09:00",
      "updated_at": "2014-06-10T10:32:50.000+09:00",
      "custom_field": "test1",
      "description": "intoroduction etc..",
      "ended_at": null,
      "grab_expires_at": null,
      "translated_at": null,
      "individual": false,
      "double_check": false,
      "escape_text": false,
      "url": "https://biz.conyac.cc/api/v1/questions/5",
      "html_url": "https://conyac.cc/b/projects/3/questions/5",
      "cancelable": true,
      "organization_id": 4,
      "file_type": "pptx"
    },
    {
      "id": 6,
      "project_id": 3,
      "question_source_id": 7,
      "user_id": 107,
      "title": "body2<hoge>ddd</hoge>",
      "letter_count": 8,
      "language_id": "ja",
      "translated_language_id": "en",
      "status": 0,
      "status_text": "pending",
      "total_point": 32,
      "created_at": "2014-06-10T10:32:50.000+09:00",
      "updated_at": "2014-06-10T10:32:50.000+09:00",
      "custom_field": null,
      "description": "",
      "ended_at": null,
      "grab_expires_at": null,
      "translated_at": null,
      "individual": false,
      "double_check": false,
      "escape_text": false,
      "url": "https://biz.conyac.cc/api/v1/questions/6",
      "html_url": "https://conyac.cc/b/projects/3/questions/6",
      "cancelable": true,
      "organization_id": 4,
      "file_type": "html_text"
    }
  ],
  "language": {
    "id": "ja",
    "localized_name": "Japanese"
  },
  "translated_language": {
    "id": "en",
    "localized_name": "English"
  }
}