Can I import fields from an JSON schema?

Having trouble importing fields from a JSON schema, is this a known issue?

{
“title”: “Person”,
“type”: “object”,
“properties”: {
“firstName”: {
“type”: “string”
},
“lastName”: {
“type”: “string”
},
“age”: {
“description”: “Age in years”,
“type”: “integer”,
“minimum”: 0
}
},
“required”: [“firstName”, “lastName”]
}