Add missing distributionManagement section to poms
[aai/search-data-service.git] / search-data-service / src / main / resources / json / schema / document.schema.json
1 {
2   "$schema": "http://json-schema.org/draft-04/schema#",
3   "title": "Document Schema",
4   "description": "Describes the structure of a document for storage in a document store.",
5   "type": "object",
6   "javaType": "org.onap.aai.sa.rest.DocumentSchema",
7   "properties": {
8     "fields": {
9       "type": "array",
10       "items": {
11         "$ref": "document-field.schema.json"
12       }
13     }
14   }
15 }