Files
MindScope/questionairies/bigfive/neo300-zh.ts
T
2026-06-22 22:59:01 +02:00

53 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { Questionnaire } from '@/types';
import { ipipNeo300Items } from './neo-data';
const options = [
{ id: 1, content: '非常不符合', value: '1' },
{ id: 2, content: '比较不符合', value: '2' },
{ id: 3, content: '不确定', value: '3' },
{ id: 4, content: '比较符合', value: '4' },
{ id: 5, content: '非常符合', value: '5' },
];
export const bigfive300: Questionnaire = {
id: 'bigfive-300',
title: 'IPIP-NEO 五大人格量表(300题)',
description: '最完整的五大人格长版,耗时较长,适合需要详细结果时使用',
category: '人格',
tags: ['300题', '自评'],
time: '45-70分钟',
details: {
introduction:
'IPIP-NEO-300 使用 IPIP 的30个 NEO 对应面向,每个面向包含10个项目。它能提供比短版更细致的自我报告画像。本项目采用官方英文题键,并提供中文工作译本;该中文文本尚未进行独立的本土化信效度验证。',
questionCount: '300个项目',
evaluationTime: '通常为45-70分钟',
instructions:
'请根据长期、稳定的日常表现作答。题目较多,可以利用自动保存功能分段完成。',
scoringMethod: [
'每题1-5分,按照 IPIP 官方题键处理正向与反向项目。',
'每个面向包含10个项目;每个大维度由6个面向、共60个项目构成。',
'结果显示五大维度与30个面向的平均分。',
],
dimensions: [
{ name: '神经质', description: '情绪敏感、压力反应和负面情绪体验倾向。' },
{ name: '外向性', description: '社交投入、活跃度、自信表达和积极情绪。' },
{ name: '开放性', description: '想象力、审美、求知、尝新和价值开放。' },
{ name: '宜人性', description: '信任、真诚、合作、利他、谦逊和同情。' },
{ name: '尽责性', description: '效能、条理、责任、自律、成就追求和谨慎。' },
],
notes: [
'人格维度没有绝对好坏,高低分代表不同的行为和体验风格。',
'300题中文文本是工作译本,适合个人探索,不应视为标准化中文版。',
'本量表不用于临床诊断或单独作为人员筛选结论。',
],
references: [
{
text: 'IPIP300题 NEO 对应面向与计分键',
url: 'https://ipip.ori.org/newNEOFacetsKey.htm',
},
],
},
questions: ipipNeo300Items.map(({ id, content }) => ({ id, content })),
renderOptions: () => options,
};