Commit 13fac290 authored by Mark Chao's avatar Mark Chao

Refactor epic schema to use date as type

parent 141d7d11
...@@ -24,15 +24,15 @@ ...@@ -24,15 +24,15 @@
"type": "string" "type": "string"
} }
}, },
"start_date": { "type": ["string", "null"] }, "start_date": { "type": ["date", "null"] },
"start_date_fixed": { "type": ["string", "null"] }, "start_date_fixed": { "type": ["date", "null"] },
"start_date_from_milestones": { "type": ["string", "null"] }, "start_date_from_milestones": { "type": ["date", "null"] },
"start_date_is_fixed": { "type": ["boolean"] }, "start_date_is_fixed": { "type": "boolean" },
"end_date": { "type": ["string", "null"] }, "end_date": { "type": ["date", "null"] },
"due_date": { "type": ["string", "null"] }, "due_date": { "type": ["date", "null"] },
"due_date_fixed": { "type": ["string", "null"] }, "due_date_fixed": { "type": ["date", "null"] },
"due_date_from_milestones": { "type": ["string", "null"] }, "due_date_from_milestones": { "type": ["date", "null"] },
"due_date_is_fixed": { "type": ["boolean"] }, "due_date_is_fixed": { "type": "boolean" },
"created_at": { "type": ["string", "null"] }, "created_at": { "type": ["string", "null"] },
"updated_at": { "type": ["string", "null"] } "updated_at": { "type": ["string", "null"] }
}, },
......
...@@ -18,15 +18,15 @@ ...@@ -18,15 +18,15 @@
"group_id": { "type": "integer" }, "group_id": { "type": "integer" },
"description": { "type": ["string", "null"] }, "description": { "type": ["string", "null"] },
"author": { "type": ["object", "null"] }, "author": { "type": ["object", "null"] },
"start_date": { "type": ["string", "null"] }, "start_date": { "type": ["date", "null"] },
"start_date_fixed": { "type": ["string", "null"] }, "start_date_fixed": { "type": ["date", "null"] },
"start_date_from_milestones": { "type": ["string", "null"] }, "start_date_from_milestones": { "type": ["date", "null"] },
"start_date_is_fixed": { "type": ["boolean"] }, "start_date_is_fixed": { "type": "boolean" },
"end_date": { "type": ["string", "null"] }, "end_date": { "type": ["date", "null"] },
"due_date": { "type": ["string", "null"] }, "due_date": { "type": ["date", "null"] },
"due_date_fixed": { "type": ["string", "null"] }, "due_date_fixed": { "type": ["date", "null"] },
"due_date_from_milestones": { "type": ["string", "null"] }, "due_date_from_milestones": { "type": ["date", "null"] },
"due_date_is_fixed": { "type": ["boolean"] }, "due_date_is_fixed": { "type": "boolean" },
"created_at": { "type": ["string", "null"] }, "created_at": { "type": ["string", "null"] },
"updated_at": { "type": ["string", "null"] }, "updated_at": { "type": ["string", "null"] },
"labels": { "labels": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment