Recurso JSON Paciente

Código del recurso paciente, el cual se debe utilizar en el ejercicio 12 del Track 1: Paciente.

{
    "name": [
      {
        "given": [
          "Barbara"
        ],
        "family": "Lara"
      }
    ],
    "active": true,
    "gender": "female",
    "address": [
      {
        "city": "Talca",
        "line": [
          "Carmen 626, dpto 35"
        ],
        "type": "physical",
        "country": "Chile",
        "state": "Región del Maule",
		"use" : "home"
      }
    ],
    "contact": [
      {
        "name": {
          "use": "official",
          "given": [
            "Fernanda"
          ],
          "family": "Lema"
        },
        "gender": "female",
           "address": [
      {
        "city": "Santiago",
        "line": [
          "Lira 85"
        ],
        "type": "physical",
        "country": "Chile",
        "state": "Región Metropolitana",
		"use" : "home"
      }
    ],
        "telecom": [
            {
              "use": "work",
              "value": "flara@tumail.cl",
              "system": "email"
            },
            {
              "use": "home",
              "value": "+56241414141",
              "system": "phone"
            },
            {
              "use": "mobile",
              "value": "+56910001000",
              "system": "phone"
            }
          ]
      }
    ],
    "telecom": [
      {
        "use": "home",
        "value": "+56223232323",
        "system": "phone"

      },
      {
        "use": "mobile",
        "value": "+56912312123",
        "system": "phone"

      },
      {
        "use": "work",
        "value": "blara@tumail.cl",
        "system": "phone"

      }
    ],
    "birthDate": "1990-07-01",
    "identifier": [
      {
        "value": "36.161.161-1",
        "system": "http://registrocivil.cl/RUN"
      }
    ],
    "resourceType": "Patient",
    "maritalStatus": {
      "coding": [
        {
          "code": "S",
          "system": "http://hl7.org/fhir/ValueSet/marital-status",
          "display": "Never Married"
        }
      ]
    }
  }