Changeset 492 for Dev/trunk/src/server/config/couchdb-schema.json
- Timestamp:
- 03/09/14 14:23:42 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/src/server/config/couchdb-schema.json
r487 r492 36 36 "_rev": { "type": "string" }, 37 37 "categories": { "type": "array", "items": { "type": "string" } }, 38 "code": { "type": "string" },38 "code": { "type": "string", "minLength": 1 }, 39 39 "content": { "type": "array", "items": { "$ref": "#/definitions/content/any" } }, 40 40 "description": { "type": "string" }, … … 52 52 "_id": { "type": "string" }, 53 53 "_rev": { "type": "string" }, 54 "description": { "type": "string" }, 54 55 "publicationDate": { "type": "string", "format": "datetime" }, 55 56 "questions": { "type": "array", "items": { "$ref": "#/definitions/docs/Question" } }, … … 67 68 "description": { "type": "string" }, 68 69 "endDate": { "type": "string", "format": "datetime" }, 70 "liveName": { "type": "string" }, 69 71 "mode": { "type": "string", "enum": [ "open", "closed" ] }, 70 "secret": { "type": "string", "minLength": 8 }, 72 "respondentCanDeleteOwnResponse": { "type": "boolean" }, 73 "secret": { "type": "string", "minLength": 1 }, 71 74 "startDate": { "type": "string", "format": "datetime" }, 72 75 "survey": { "$ref": "#/definitions/docs/Survey" }, … … 83 86 "_rev": { "type": "string" }, 84 87 "answers": { "type": "object" }, 88 "email": { "type": "string", "format": "email" }, 85 89 "publicationDate": { "type": "string", "format": "datetime" }, 86 "secret": { "type": "string", "minLength": 8},90 "secret": { "type": "string", "minLength": 1 }, 87 91 "surveyRunId": { "type": "string" } 88 92 },
Note: See TracChangeset
for help on using the changeset viewer.