{
  "type": "object",
  "properties": {
    "outlooks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "character_id": {
            "type": "string"
          },
          "is_shared": {
            "type": "boolean",
            "default": false
          }
        },
        "required": [
          "name",
          "description",
          "character_id",
          "is_shared"
        ],
        "additionalProperties": false
      }
    },
    "non_humanoid_characters": {
      "type": "array",
      "description": "사람 형상이 아닌 캐릭터의 short_id 목록",
      "items": {
        "type": "string"
      }
    },
    "body_identity_characters": {
      "type": "array",
      "description": "몸 자체가 신원인 캐릭터의 short_id 목록 (로봇·사이보그·기계 몸·외계 생명 등). 옷을 입든 안 입든 해당한다.",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "outlooks",
    "non_humanoid_characters",
    "body_identity_characters"
  ],
  "additionalProperties": false
}
