Se agrega modificación de IDIME.

parent ab99a3e1
...@@ -170,7 +170,7 @@ ...@@ -170,7 +170,7 @@
"required": true, "required": true,
"schema": { "schema": {
"type": "string", "type": "string",
"format":"" "format": ""
} }
}, },
{ {
...@@ -575,16 +575,42 @@ ...@@ -575,16 +575,42 @@
} }
} }
}, },
"especialidad": {
"type": "object",
"properties": {
"codigo": {
"type": "string",
"description": "Codigo que identifica a la especialidad Ejm: 15215 -> RADIOLOGIA"
},
"descripcion": {
"type": "string",
"description": "Nombre y/o descripcion de la especialidad Ejm: RADIOLOGIA."
}
}
},
"prestador": { "prestador": {
"type": "object", "type": "object",
"properties": { "properties": {
"codigo": { "codigo": {
"type": "string", "type": "string",
"description": "" "description": "Codigo de identificacion del prestador del servicio Ejm: el Id de empleado o cedula de un Doctor."
}, },
"nombre": { "nombre": {
"type": "string", "type": "string",
"description": "" "description": "Nombre de la persona o empresa que presta el servicio."
},
"documento": {
"$ref": "#/components/schemas/documento"
},
"especialidad": {
"$ref": "#/components/schemas/especialidad"
},
"registroMedico": {
"type": "string",
"description": "Id de un registro medico"
},
"sede": {
"$ref": "#/components/schemas/sede"
} }
} }
}, },
...@@ -596,7 +622,7 @@ ...@@ -596,7 +622,7 @@
"items": { "items": {
"$ref": "#/components/schemas/ordenDetalle" "$ref": "#/components/schemas/ordenDetalle"
} }
}, }
} }
}, },
"ordenDetalle": { "ordenDetalle": {
...@@ -616,7 +642,7 @@ ...@@ -616,7 +642,7 @@
"items": { "items": {
"$ref": "#/components/schemas/orden" "$ref": "#/components/schemas/orden"
} }
}, }
} }
}, },
"orden": { "orden": {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment