如何从规范生成原型文件(如 google-fhir 原型是从 FHIR 规范生成的)?
How can proto files be generated from a specification(as in google-fhir protos are generated from FHIR Spec)?
我一直在查看 Google fhir 存储库 (https://github.com/google/fhir). The proto files within this repo are generated from the FHIR spec(something like this: http://hl7.org/fhir/account.html)。我想了解如何根据规范生成原型文件。我正在处理一个具有规范的项目(这可以是 JSON/ 电子表格任何其他数据表示),我想根据这些规范生成原型文件。任何其他生成原型的解决方法将不胜感激。
FHIR 原型生成代码包含在同一存储库中 - https://github.com/google/fhir/tree/master/java/src/main/java/com/google/fhir/protogen
通常有一个引导步骤,对于 FHIR 来说是 StructureDefinition 资源。一旦您可以解析 StructureDefinition,所有其他资源都将使用 StructureDefinition 的实例进行定义。
我一直在查看 Google fhir 存储库 (https://github.com/google/fhir). The proto files within this repo are generated from the FHIR spec(something like this: http://hl7.org/fhir/account.html)。我想了解如何根据规范生成原型文件。我正在处理一个具有规范的项目(这可以是 JSON/ 电子表格任何其他数据表示),我想根据这些规范生成原型文件。任何其他生成原型的解决方法将不胜感激。
FHIR 原型生成代码包含在同一存储库中 - https://github.com/google/fhir/tree/master/java/src/main/java/com/google/fhir/protogen
通常有一个引导步骤,对于 FHIR 来说是 StructureDefinition 资源。一旦您可以解析 StructureDefinition,所有其他资源都将使用 StructureDefinition 的实例进行定义。