aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/json/schema/document.schema.json
blob: e2dd20473dff16093d8f0ab68b4b5e0672246e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Document Schema",
  "description": "Describes the structure of a document for storage in a document store.",
  "type": "object",
  "javaType": "org.openecomp.sa.rest.DocumentSchema",
  "properties": {
    "fields": {
      "type": "array",
      "items": {
        "$ref": "document-field.schema.json"
      }
    }
  }
}