Personality schema creation
2025-12-094 turns12,183 charsgpt-5-1
Summary
The user wanted to create a universal JSON schema for personality traits using weights between 0 and 1.
Messages
I want to create a schema which is a series of weights between 0 and 1 and attributes that make up a personality. Think of all the different ways you could describe a personality and create this schema, it should be universal and apply to any personality. Output the schema but also include a short description of each attribute
Below is a **universal, model-agnostic personality schema** built from **continuous weights (0–1)** and **pure attributes**—no archetypes, no entities, no cultural references. Each attribute is chosen so any personality, real or fictional, can be encoded precisely.
The schema captures:
- cognition
- emotion
- behavior
- social patterns
- values
- motivation
- stress responses
- communication style
- worldview orientation
---
# 🌐 **Universal Personality Attribute Schema (0–1 Scale)**
Each attribute uses **0 = minimal expression** and **1 = maximal expression**.
---
## **1. Cognitive Style**
### **1.1 Abstraction**
*Preference for conceptual, symbolic, high-level thinking vs concrete details.*
### **1.2 Divergent Thinking**
*Ability to generate many novel ideas and explore alternatives.*
### **1.3 Convergent Thinking**
*Ability to narrow options and identify a single best solution.*
### **1.4 Cognitive Flexibility**
*How easily the person shifts perspectives or adapts to new information.*
### **1.5 Predictive Orientation**
*Tendency to anticipate outcomes, think ahead, and model causal chains.*
### **1.6 Precision**
*Desire for exactness, accuracy, definitions, and structured reasoning.*
---
## **2. Emotional Profile**
### **2.1 Emotional Intensity**
*How strongly emotions are felt and expressed internally.*
### **2.2 Emotional Stability**
*Consistency of mood; low = volatility, high = steady affect.*
### **2.3 Sensitivity**
*Responsiveness to emotional cues, ambiance, tone.*
### **2.4 Optimism Bias**
*Tendency to expect positive outcomes.*
### **2.5 Threat Vigilance**
*Degree of alertness to danger, risk, or negative signals.*
---
## **3. Social Orientation**
### **3.1 Sociability**
*Desire for social interaction and energy gained from others.*
### **3.2 Assertiveness**
*Willingness to lead, dominate, or push goals socially.*
### **3.3 Empathic Resonance**
*Ability to feel and simulate others' emotional states.*
### **3.4 Social Adaptability**
*Skill at adjusting behavior to norms, context, groups.*
### **3.5 Boundaries**
*Strength of personal limits and ability to regulate access to self.*
---
## **4. Motivation & Drive**
### **4.1 Discipline**
*Consistency in pursuing tasks over time.*
### **4.2 Novelty-Seeking**
*Drive for new experiences, ideas, environments, and risks.*
### **4.3 Ambition**
*Intensity of long-term achievement motivation.*
### **4.4 Reward Sensitivity**
*Responsiveness to praise, success, status, or dopamine-type rewards.*
### **4.5 Duty Orientation**
*Internal pull toward responsibility, obligation, commitments.*
---
## **5. Behavioral Tendencies**
### **5.1 Spontaneity**
*Tendency to act impulsively or without planning.*
### **5.2 Orderliness**
*Preference for structure, organization, systems.*
### **5.3 Persistence**
*Ability to maintain effort after setbacks.*
### **5.4 Reactivity**
*Speed and magnitude of behavioral response to stimuli.*
### **5.5 Exploration vs Exploitation**
*Balance between trying new options vs perfecting known ones.*
---
## **6. Communication Style**
### **6.1 Directness**
*How straightforward, blunt, or unfiltered expression is.*
### **6.2 Elaborativeness**
*Level of detail, nuance, and expansion in communication.*
### **6.3 Rhythm & Tempo**
*Speed and pacing of communication.*
### **6.4 Emotional Transparency**
*How much inner emotion is expressed verbally.*
### **6.5 Symbolic Expression**
*Use of metaphor, imagery, analogy, abstraction in communication.*
---
## **7. Internal Values & Orientation**
### **7.1 Autonomy**
*Value placed on independence and self-direction.*
### **7.2 Communal Orientation**
*Value placed on belonging, cooperative goals, shared identity.*
### **7.3 Justice Sensitivity**
*Importance of fairness, balance, and moral consistency.*
### **7.4 Harm Sensitivity**
*Importance of avoiding suffering or causing distress.*
### **7.5 Tradition vs Innovation**
*Adherence to established structures vs pushing for change.*
---
## **8. Worldview Dimensions**
### **8.1 Systemizing**
*Tendency to understand phenomena as systems with rules and mechanisms.*
### **8.2 Humanizing**
*Tendency to interpret events through intentions, emotions, and narratives.*
### **8.3 Uncertainty Tolerance**
*Comfort with ambiguity, chaos, and incomplete information.*
### **8.4 Agency Attribution**
*Degree to which outcomes are seen as self-driven vs externally controlled.*
### **8.5 Temporal Orientation**
*Preference for past, present, or future focus (scaled by future-focus here).*
---
## **9. Stress Response Style**
### **9.1 Fight Activation**
*Tendency toward confrontation, aggression, or direct challenge.*
### **9.2 Flight Activation**
*Tendency toward avoidance, withdrawal, or retreat.*
### **9.3 Freeze Activation**
*Tendency to shut down or reduce activity under stress.*
### **9.4 Cognitive Overdrive**
*Stress triggers analytical loops or overthinking.*
### **9.5 Emotional Flooding**
*Stress triggers overwhelming emotional states.*
---
## **10. Identity & Self-Relation**
### **10.1 Self-Confidence**
*Belief in personal capability and value.*
### **10.2 Self-Coherence**
*Consistency of identity across situations.*
### **10.3 Self-Monitoring**
*Awareness of one’s own behaviors and internal states.*
### **10.4 Self-Expansion**
*Drive to grow, learn, improve, reinvent oneself.*
### **10.5 Self-Protection**
*Tendency to defend ego, avoid vulnerability, or maintain control.*
---
# ✔️ Total Attributes: **50**
This schema is large enough to encode any personality but neutral, universal, and scalable.
If you want, I can:
✅ generate a JSON schema
✅ generate random personalities
✅ encode your own persona
✅ integrate this into your journaling/LLM system
Just tell me which direction you want to go.
gpt-5-1
generate a json schema
Here is a **clean, implementation-ready JSON schema** representing the full universal personality framework.
All values are floats between **0 and 1**.
---
# ✅ **Universal Personality JSON Schema**
```json
{
"personality_schema": {
"cognitive_style": {
"abstraction": { "description": "Preference for conceptual vs concrete thinking", "value": 0.0 },
"divergent_thinking": { "description": "Generates many novel ideas", "value": 0.0 },
"convergent_thinking": { "description": "Narrows options to a single best solution", "value": 0.0 },
"cognitive_flexibility": { "description": "Ability to shift perspectives and adapt to new info", "value": 0.0 },
"predictive_orientation": { "description": "Thinks ahead, anticipates outcomes", "value": 0.0 },
"precision": { "description": "Desire for exactness, structure, and accuracy", "value": 0.0 }
},
"emotional_profile": {
"emotional_intensity": { "description": "Strength of felt emotions", "value": 0.0 },
"emotional_stability": { "description": "Consistency of mood", "value": 0.0 },
"sensitivity": { "description": "Responsiveness to emotional cues", "value": 0.0 },
"optimism_bias": { "description": "Expectation of positive outcomes", "value": 0.0 },
"threat_vigilance": { "description": "Alertness to risk or danger", "value": 0.0 }
},
"social_orientation": {
"sociability": { "description": "Desire for interaction and social energy", "value": 0.0 },
"assertiveness": { "description": "Willingness to lead or dominate socially", "value": 0.0 },
"empathic_resonance": { "description": "Ability to feel others' emotional states", "value": 0.0 },
"social_adaptability": { "description": "Adjusts behavior to social context", "value": 0.0 },
"boundaries": { "description": "Strength of personal limits", "value": 0.0 }
},
"motivation_drive": {
"discipline": { "description": "Consistency in pursuing tasks", "value": 0.0 },
"novelty_seeking": { "description": "Drive for new ideas, risks, and experiences", "value": 0.0 },
"ambition": { "description": "Intensity of long-term achievement motivation", "value": 0.0 },
"reward_sensitivity": { "description": "Responsiveness to success, praise, status", "value": 0.0 },
"duty_orientation": { "description": "Sense of responsibility and obligation", "value": 0.0 }
},
"behavioral_tendencies": {
"spontaneity": { "description": "Acts impulsively or without planning", "value": 0.0 },
"orderliness": { "description": "Preference for structure and organization", "value": 0.0 },
"persistence": { "description": "Maintains effort after setbacks", "value": 0.0 },
"reactivity": { "description": "Speed and magnitude of response to stimuli", "value": 0.0 },
"exploration_vs_exploitation": { "description": "Balance of new exploration vs refining known strategies", "value": 0.0 }
},
"communication_style": {
"directness": { "description": "Bluntness and straightforward expression", "value": 0.0 },
"elaborativeness": { "description": "Level of detail and nuance", "value": 0.0 },
"rhythm_tempo": { "description": "Speed and pacing of communication", "value": 0.0 },
"emotional_transparency": { "description": "Degree of emotional expression in speech", "value": 0.0 },
"symbolic_expression": { "description": "Use of metaphors, imagery, abstraction", "value": 0.0 }
},
"values_orientation": {
"autonomy": { "description": "Value placed on independence", "value": 0.0 },
"communal_orientation": { "description": "Value placed on belonging and cooperation", "value": 0.0 },
"justice_sensitivity": { "description": "Importance of fairness and moral consistency", "value": 0.0 },
"harm_sensitivity": { "description": "Importance of preventing suffering", "value": 0.0 },
"tradition_vs_innovation": { "description": "Preference for stability vs change", "value": 0.0 }
},
"worldview_dimensions": {
"systemizing": { "description": "Seeing the world as rule-based systems", "value": 0.0 },
"humanizing": { "description": "Seeing events through intentions and emotions", "value": 0.0 },
"uncertainty_tolerance": { "description": "Comfort with ambiguity and chaos", "value": 0.0 },
"agency_attribution": { "description": "Internal vs external control of events", "value": 0.0 },
"future_orientation": { "description": "Degree of focus on future consequences", "value": 0.0 }
},
"stress_response": {
"fight_activation": { "description": "Stress triggers confrontation or aggression", "value": 0.0 },
"flight_activation": { "description": "Stress triggers withdrawal or avoidance", "value": 0.0 },
"freeze_activation": { "description": "Stress triggers shutdown or immobility", "value": 0.0 },
"cognitive_overdrive": { "description": "Stress triggers analytical loops or overthinking", "value": 0.0 },
"emotional_flooding": { "description": "Stress triggers overwhelming emotion", "value": 0.0 }
},
"self_relation": {
"self_confidence": { "description": "Belief in one's capability and worth", "value": 0.0 },
"self_coherence": { "description": "Consistency of identity across contexts", "value": 0.0 },
"self_monitoring": { "description": "Awareness of one's own states and behaviors", "value": 0.0 },
"self_expansion": { "description": "Desire to grow, learn, and evolve", "value": 0.0 },
"self_protection": { "description": "Defensiveness, reluctance to be vulnerable", "value": 0.0 }
}
}
}
```
---
If you want, I can also generate:
✅ a **JSON Schema Definition (Draft-07)** suitable for validation
✅ a **compact version** without descriptions
✅ a **version optimized for embedding into an LLM persona prompt**
✅ a **random personality generator** based on this schema
Just tell me what you want next.
gpt-5-1