Cleanup bad JSON files

- Add missing commas
- Replace single quote with double quote
- events field contains a list of events (event-create-req.json)
- Remove empty files
- Adds a JSON validation test to the docs pipeline

Co-Authored-By: Nicolas Simonds <nic@metacloud.com>
Change-Id: I9a4a9b6b8e2da73b5f25145be3b2faa44ebdb340
This commit is contained in:
Davanum Srinivas
2015-01-21 22:25:10 -05:00
committed by Nicolas Simonds
parent 31d0f5acc6
commit aff3e8699a
14 changed files with 23 additions and 22 deletions

View File

@@ -1,7 +1,6 @@
{
'dns_entry' :
{
'ip': '192.168.53.11',
'dns_type': 'A'
}
"dns_entry": {
"ip": "192.168.53.11",
"dns_type": "A"
}
}

View File

@@ -1,8 +1,7 @@
{
'domain_entry' :
{
'domain': 'domain1.example.org',
'scope': 'public',
'project': 'project1'
}
"domain_entry": {
"domain": "domain1.example.org",
"scope": "public",
"project": "project1"
}
}