2: Create Schema
Only the Governance
role can create Schemas. Note the x-api-key
used in the
following request.
curl -X 'POST' \
'http://cloudapi.127.0.0.1.nip.io/governance/v1/definitions/schemas' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: governance.adminApiKey' \
-d '{
"name": "Person",
"version": "0.1.0",
"attribute_names": [
"Name","Surname","Age"
]
}'
Response:
{
"id": "QpSW24YVf61A3sAWxArfF6:2:Person:0.1.0",
"name": "Person",
"version": "0.1.0",
"attribute_names": ["Surname", "Age", "Name"]
}
Note down the schema id in the id
field.