Skip to content

Commit cef9daf

Browse files
committed
hiring intent user state as representation of the kanban
1 parent 1072ee0 commit cef9daf

File tree

4 files changed

+574
-127
lines changed

4 files changed

+574
-127
lines changed

reference/schema.json

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4476,5 +4476,63 @@
44764476
}
44774477
},
44784478
"x-collection": "hiring_intent_action"
4479+
},
4480+
"ItemsHiringIntentUserState": {
4481+
"type": "object",
4482+
"properties": {
4483+
"id": {
4484+
"nullable": false,
4485+
"type": "integer"
4486+
},
4487+
"user_created": {
4488+
"nullable": true,
4489+
"oneOf": [
4490+
{
4491+
"type": "string",
4492+
"format": "uuid"
4493+
},
4494+
{
4495+
"$ref": "#/components/schemas/Users"
4496+
}
4497+
]
4498+
},
4499+
"date_created": {
4500+
"nullable": true,
4501+
"type": "string",
4502+
"format": "timestamp"
4503+
},
4504+
"user_updated": {
4505+
"nullable": true,
4506+
"oneOf": [
4507+
{
4508+
"type": "string",
4509+
"format": "uuid"
4510+
},
4511+
{
4512+
"$ref": "#/components/schemas/Users"
4513+
}
4514+
]
4515+
},
4516+
"date_updated": {
4517+
"nullable": true,
4518+
"type": "string",
4519+
"format": "timestamp"
4520+
},
4521+
"intent": {
4522+
"nullable": true,
4523+
"oneOf": [
4524+
{
4525+
"type": "integer"
4526+
},
4527+
{
4528+
"$ref": "#/components/schemas/ItemsHiringIntent"
4529+
}
4530+
]
4531+
},
4532+
"status": {
4533+
"nullable": true
4534+
}
4535+
},
4536+
"x-collection": "hiring_intent_user_state"
44794537
}
44804538
}

0 commit comments

Comments
 (0)