Fixed issues in invalid JSON file

Issues like, using single quotes for double quotes(string),
incorrect use of comma when only one field is present etc were
fixed. Linted to make sure the JSON is valid.

Change-Id: Ifbc611940f8a78b8c4432fc50711245caa2750b8
Closes-Bug: #1554051
This commit is contained in:
Rahul Nair 2016-03-07 17:20:37 +00:00
parent b80d64703c
commit 3da649d714
1 changed files with 24 additions and 24 deletions

View File

@ -1,32 +1,32 @@
{
'files': {},
'status': 'COMPLETE',
'name': 'my_stack',
'tags': None,
'stack_user_project_id': '123456',
'environment': {},
'template': {
'heat_template_version': '2016-04-08',
'resources': {
'thing': {
'type': 'OS::Heat::TestResource'
"files": {},
"status": "COMPLETE",
"name": "my_stack",
"tags": null,
"stack_user_project_id": "123456",
"environment": {},
"template": {
"heat_template_version": "2016-04-08",
"resources": {
"thing": {
"type": "OS::Heat::TestResource"
}
}
},
'action': 'CREATE',
'project_id': '56789',
'id': '2468',
'resources': {
'thing': {
'status': 'COMPLETE',
'name': 'thing',
'resource_data': {
'value': 'test_string',
"action": "CREATE",
"project_id": "56789",
"id": "2468",
"resources": {
"thing": {
"status": "COMPLETE",
"name": "thing",
"resource_data": {
"value": "test_string"
},
'resource_id': 'my_stack-thing-1234',
'action': 'CREATE',
'type': 'OS::Heat::TestResource',
'metadata': {}
"resource_id": "my_stack-thing-1234",
"action": "CREATE",
"type": "OS::Heat::TestResource",
"metadata": {}
}
}
}