├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── csdl-to-json-convertor ├── LICENSE.md ├── README.md ├── csdl-to-json.py └── dmtf-config.json ├── doc-generator ├── .travis │ ├── after_script │ ├── before_script │ └── script ├── CHANGES_v2_to_v3.md ├── LICENSE.md ├── Pipfile ├── README.md ├── README_Property_Index.md ├── README_config_files.md ├── TABLE_NUMBER_README.md ├── dev_requirements.txt ├── doc_formatter │ ├── __init__.py │ ├── csv_generator.py │ ├── doc_formatter.py │ ├── html_generator.py │ ├── markdown_generator.py │ ├── property_index_generator.py │ └── toc_parser.py ├── doc_gen_util │ ├── __init__.py │ └── doc_gen_util.py ├── doc_generator.py ├── example_fragments │ └── Status.json ├── format_utils │ ├── __init__.py │ ├── format_utils.py │ └── html_utils.py ├── locale │ ├── TEST │ │ └── LC_MESSAGES │ │ │ ├── doc_generator.mo │ │ │ └── doc_generator.po │ ├── doc_generator.pot │ └── en │ │ └── LC_MESSAGES │ │ ├── doc_generator.mo │ │ └── doc_generator.po ├── make_translation_strings.sh ├── parse_md_supplement.py ├── requirements.txt ├── sample_inputs │ ├── OCPBasicServer.v1_0_0.json │ ├── OCPManagedDevice.v1_0_0.json │ ├── OCPRackManagerController.2019.1.json │ ├── csv │ │ └── config.json │ ├── excerpt │ │ ├── NetworkAdapter.v1_9_9.json │ │ ├── PCIeDevice.json │ │ └── PCIeDevice.v1_9_9.json │ ├── profile_mode │ │ ├── config.json │ │ ├── content_supplement.json │ │ └── intro.md │ ├── property_index │ │ └── config.json │ ├── standard_html │ │ ├── config.json │ │ ├── config_normative.json │ │ ├── content_supplement.json │ │ ├── intro.md │ │ └── postscript.md │ ├── subset │ │ ├── config.json │ │ └── docgen-subset.json │ ├── subset_html │ │ ├── config.json │ │ ├── content_supplement.json │ │ └── subset.json │ ├── subset_markdown │ │ ├── config.json │ │ ├── content_supplement.json │ │ └── subset.json │ └── subset_old │ │ ├── content_supplement.json │ │ └── intro.md ├── schema_traverser.py ├── table_number.awk └── tests │ ├── __init__.py │ ├── conftest.py │ ├── discrepancy_list.py │ ├── samples │ ├── action_payloads │ │ ├── expected_output │ │ │ ├── markdown.md │ │ │ ├── output.html │ │ │ └── slate.md │ │ └── input │ │ │ ├── json-schema │ │ │ ├── CertificateService.json │ │ │ ├── CertificateService.v1_0_4.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_9_5.json │ │ │ └── odata-v4.json │ │ │ └── mockups │ │ │ ├── CertificateService-v1-GenerateCSR-request-example.json │ │ │ └── CertificateService-v1-GenerateCSR-response-example.json │ ├── action_response │ │ └── certificate │ │ │ ├── Certificate.json │ │ │ ├── Certificate.v1_2_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_9_1.json │ │ │ └── odata-v4.json │ ├── actions_with_versions │ │ └── processor │ │ │ ├── Processor.json │ │ │ ├── Processor.v1_8_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_9_1.json │ │ │ └── odata-v4.json │ ├── combine_multiple │ │ └── sensor │ │ │ ├── PhysicalContext.json │ │ │ ├── PhysicalContext.v1_3_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_8_1.json │ │ │ ├── Sensor.json │ │ │ ├── Sensor.v1_1_0.json │ │ │ └── odata-v4.json │ ├── csv_mode │ │ └── input │ │ │ ├── RequiredTest.json │ │ │ ├── RequiredTest.v1_0_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_6_0.json │ │ │ └── odata.v4_0_3.json │ ├── deprecated_schema │ │ ├── earlier_deprecated │ │ │ └── input │ │ │ │ ├── Power.json │ │ │ │ ├── Power.v1_0_11.json │ │ │ │ ├── Power.v1_1_9.json │ │ │ │ ├── Power.v1_2_9.json │ │ │ │ ├── Power.v1_3_7.json │ │ │ │ ├── Power.v1_4_6.json │ │ │ │ ├── Power.v1_5_5.json │ │ │ │ ├── Power.v1_6_0.json │ │ │ │ ├── Resource.json │ │ │ │ ├── Resource.v1_0_0.json │ │ │ │ ├── Resource.v1_7_0.json │ │ │ │ ├── odata-v4.json │ │ │ │ └── odata.v4_0_4.json │ │ └── latest_deprecated │ │ │ └── input │ │ │ ├── Power.json │ │ │ ├── Power.v1_0_11.json │ │ │ ├── Power.v1_1_9.json │ │ │ ├── Power.v1_2_9.json │ │ │ ├── Power.v1_3_7.json │ │ │ ├── Power.v1_4_6.json │ │ │ ├── Power.v1_5_5.json │ │ │ ├── Power.v1_6_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_7_0.json │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_4.json │ ├── excerpt │ │ ├── circuit │ │ │ ├── Circuit.json │ │ │ ├── Circuit.v0_9_0.json │ │ │ ├── CircuitCollection.json │ │ │ ├── Outlet.json │ │ │ ├── Outlet.v0_9_0.json │ │ │ ├── PhysicalContext.json │ │ │ ├── PhysicalContext.v1_3_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_8_0.json │ │ │ ├── Sensor.json │ │ │ ├── Sensor.v0_1_0.json │ │ │ ├── Sensor.v1_0_0.json │ │ │ └── odata.v4_0_3.json │ │ └── power_distribution_metrics │ │ │ ├── PhysicalContext.json │ │ │ ├── PhysicalContext.v1_3_0.json │ │ │ ├── PowerDistributionMetrics.json │ │ │ ├── PowerDistributionMetrics.v0_9_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_8_0.json │ │ │ ├── Sensor.json │ │ │ ├── Sensor.v0_1_0.json │ │ │ ├── Sensor.v1_0_0.json │ │ │ └── odata.v4_0_3.json │ ├── fragments │ │ ├── CommonPropertySchema.json │ │ ├── expected_output.html │ │ ├── expected_output.md │ │ ├── expected_slate_output.md │ │ └── json-schema │ │ │ ├── IntegerTest.json │ │ │ ├── IntegerTest.v1_0_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── odata.v4_0_1.json │ │ │ ├── odata.v4_0_2.json │ │ │ └── odata.v4_0_3.json │ ├── generate_docs_cases │ │ ├── general │ │ │ ├── README.txt │ │ │ ├── expected_output │ │ │ │ ├── index.html │ │ │ │ ├── markdown_output.md │ │ │ │ ├── markdown_with_table_numbering_output.md │ │ │ │ ├── output.csv │ │ │ │ └── slate_output.md │ │ │ └── input │ │ │ │ ├── NetworkDeviceFunction.json │ │ │ │ ├── NetworkDeviceFunction.v1_3_2.json │ │ │ │ ├── NetworkDeviceFunctionCollection.json │ │ │ │ ├── NetworkPort.json │ │ │ │ ├── NetworkPort.v1_1_0.json │ │ │ │ ├── Resource.json │ │ │ │ ├── Resource.v1_0_0.json │ │ │ │ ├── Resource.v1_6_0.json │ │ │ │ ├── odata-v4.json │ │ │ │ └── odata.v4_0_2.json │ │ ├── integer │ │ │ ├── expected_output │ │ │ │ ├── index.html │ │ │ │ ├── markdown_output.md │ │ │ │ └── slate_output.md │ │ │ └── input │ │ │ │ ├── IntegerTest.json │ │ │ │ ├── IntegerTest.v1_0_0.json │ │ │ │ ├── Resource.json │ │ │ │ ├── Resource.v1_6_0.json │ │ │ │ └── odata.v4_0_3.json │ │ ├── normative │ │ │ ├── README.txt │ │ │ ├── expected_output │ │ │ │ └── index.html │ │ │ └── input │ │ │ │ ├── NetworkDeviceFunction.json │ │ │ │ ├── NetworkDeviceFunction.v1_3_2.json │ │ │ │ ├── NetworkDeviceFunctionCollection.json │ │ │ │ ├── NetworkPort.json │ │ │ │ ├── NetworkPort.v1_1_0.json │ │ │ │ ├── Resource.json │ │ │ │ ├── Resource.v1_6_0.json │ │ │ │ ├── odata-v4.json │ │ │ │ └── odata.v4_0_2.json │ │ └── required │ │ │ ├── README.txt │ │ │ ├── expected_output │ │ │ ├── index.html │ │ │ ├── markdown_output.md │ │ │ └── slate_output.md │ │ │ └── input │ │ │ ├── RequiredTest.json │ │ │ ├── RequiredTest.v1_0_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_6_0.json │ │ │ └── odata.v4_0_3.json │ ├── json │ │ ├── 1.json │ │ └── badjson.json │ ├── localized_schemas │ │ └── general │ │ │ └── input │ │ │ ├── Bios.json │ │ │ ├── Bios.v1_1_1.json │ │ │ ├── Certificate.json │ │ │ ├── Certificate.v1_2_1.json │ │ │ ├── CertificateCollection.json │ │ │ ├── ComputerSystem.json │ │ │ ├── ComputerSystem.v1_13_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── ResourceBlock.json │ │ │ ├── ResourceBlock.v1_3_3.json │ │ │ ├── TEST │ │ │ ├── ComputerSystem.json │ │ │ └── ComputerSystem.v1_13_0.json │ │ │ ├── en │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_2.json │ ├── markdown_toc │ │ └── input_blob.md │ ├── openapi │ │ ├── README.txt │ │ ├── actions │ │ │ ├── Bios.json │ │ │ ├── Bios.v1_0_0.json │ │ │ ├── Bios.v1_0_1.json │ │ │ ├── Bios.v1_0_2.json │ │ │ ├── Bios.v1_0_3.json │ │ │ ├── Bios.v1_0_4.json │ │ │ ├── Bios.v1_0_5.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_0_2.json │ │ │ ├── Resource.v1_0_3.json │ │ │ ├── Resource.v1_0_4.json │ │ │ ├── Resource.v1_0_5.json │ │ │ ├── Resource.v1_1_0.json │ │ │ ├── Resource.v1_1_1.json │ │ │ ├── Resource.v1_1_2.json │ │ │ ├── Resource.v1_1_3.json │ │ │ ├── Resource.v1_1_4.json │ │ │ ├── Resource.v1_1_5.json │ │ │ ├── Resource.v1_1_6.json │ │ │ ├── Resource.v1_2_0.json │ │ │ ├── Resource.v1_2_1.json │ │ │ ├── Resource.v1_2_2.json │ │ │ ├── Resource.v1_2_3.json │ │ │ ├── Resource.v1_2_4.json │ │ │ ├── Resource.v1_2_5.json │ │ │ ├── Resource.v1_3_0.json │ │ │ ├── Resource.v1_3_1.json │ │ │ ├── Resource.v1_3_2.json │ │ │ ├── Resource.v1_3_3.json │ │ │ ├── Resource.v1_3_4.json │ │ │ ├── Resource.v1_4_0.json │ │ │ ├── Resource.v1_4_1.json │ │ │ ├── Resource.v1_4_2.json │ │ │ ├── Resource.v1_4_3.json │ │ │ ├── Resource.v1_5_0.json │ │ │ ├── Resource.v1_5_1.json │ │ │ ├── Resource.v1_5_2.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── Resource.v1_6_1.json │ │ │ ├── Resource.v1_7_0.json │ │ │ └── odata.v4_0_3.json │ │ └── input │ │ │ ├── Event.json │ │ │ ├── Event.v1_3_0.json │ │ │ ├── LogEntry.json │ │ │ ├── LogEntry.v1_4_0.json │ │ │ ├── LogEntryCollection.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_7_0.json │ │ │ └── odata.v4_0_3.json │ ├── pattern_properties │ │ ├── README.txt │ │ ├── expected_output │ │ │ ├── MessagesProperty.html │ │ │ ├── MessagesProperty.md │ │ │ ├── MessagesPropertyDetails.html │ │ │ └── MessagesPropertyDetails.md │ │ └── input │ │ │ ├── MessageRegistry.json │ │ │ ├── MessageRegistry.v1_2_0.json │ │ │ ├── MessageRegistryCollection.json │ │ │ ├── MessageRegistryFile.json │ │ │ ├── MessageRegistryFile.v1_1_1.json │ │ │ ├── MessageRegistryFileCollection.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_7_0.json │ │ │ └── odata.v4_0_3.json │ ├── payloads │ │ ├── ActionInfo-v1-example.json │ │ ├── LogService-v1-example.json │ │ ├── Memory-v1-example.json │ │ └── SomeOtherFile.txt │ ├── profile_mode │ │ ├── basic │ │ │ ├── NetworkPort │ │ │ │ ├── NetworkDeviceFunction.json │ │ │ │ ├── NetworkDeviceFunction.v1_2_0.json │ │ │ │ ├── NetworkDeviceFunction.v1_2_1.json │ │ │ │ ├── NetworkDeviceFunctionCollection.json │ │ │ │ ├── NetworkPort.json │ │ │ │ ├── NetworkPort.v1_1_0.json │ │ │ │ ├── Resource.json │ │ │ │ ├── Resource.v1_0_0.json │ │ │ │ ├── Resource.v1_6_0.json │ │ │ │ └── odata.v4_0_2.json │ │ │ ├── README.txt │ │ │ └── profiles │ │ │ │ ├── BasicClassProfile.v1_0_0.json │ │ │ │ └── BasicInstanceProfile.v1_0_0.json │ │ ├── full │ │ │ ├── OCPBasicServer.v1_0_0.json │ │ │ ├── OCPManagedDevice.v1_0_0.json │ │ │ ├── README.txt │ │ │ └── SampleProfileInput.md │ │ └── registry_mapping │ │ │ ├── NetworkPort │ │ │ └── README.txt │ │ │ ├── README.txt │ │ │ ├── profiles │ │ │ ├── BasicClassProfile.v1_0_0.json │ │ │ ├── BasicInstanceProfile.v1_0_0.json │ │ │ └── ProfileWithFakeRegistry.v1_0_0.json │ │ │ └── registries │ │ │ └── ContosoPizzaMessages.1.0.3.json │ ├── properties_with_same_name │ │ └── manager │ │ │ ├── Manager.json │ │ │ ├── Manager.v1_8_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_9_1.json │ │ │ ├── notes.txt │ │ │ └── odata-v4.json │ ├── property_index │ │ ├── general │ │ │ ├── README.txt │ │ │ └── input │ │ │ │ ├── NetworkDeviceFunction.json │ │ │ │ ├── NetworkDeviceFunction.v1_2_0.json │ │ │ │ ├── NetworkDeviceFunction.v1_2_1.json │ │ │ │ ├── NetworkDeviceFunctionCollection.json │ │ │ │ ├── NetworkPort.json │ │ │ │ ├── NetworkPort.v1_1_0.json │ │ │ │ ├── Resource.json │ │ │ │ ├── Resource.v1_0_0.json │ │ │ │ ├── Resource.v1_6_0.json │ │ │ │ └── odata.v4_0_2.json │ │ └── thermal_plus │ │ │ ├── README.txt │ │ │ └── input │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── Thermal.json │ │ │ ├── Thermal.v1_5_0.json │ │ │ └── odata.v4_0_3.json │ ├── readwrite_links │ │ └── Facility │ │ │ ├── Facility.json │ │ │ ├── Facility.v1_0_1.json │ │ │ ├── FacilityCollection.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_2.json │ ├── referenced_objects │ │ ├── ipaddresses │ │ │ ├── Endpoint.json │ │ │ ├── Endpoint.v1_1_0.json │ │ │ ├── EndpointCollection.json │ │ │ ├── IPAddresses.json │ │ │ ├── IPAddresses.v1_0_6.json │ │ │ ├── Protocol.json │ │ │ ├── README.txt │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_8_1.json │ │ │ ├── odata.v4_0_1.json │ │ │ └── odata.v4_0_2.json │ │ ├── network_sample │ │ │ ├── NetworkDeviceFunction.json │ │ │ ├── NetworkDeviceFunction.v1_2_0.json │ │ │ ├── NetworkDeviceFunction.v1_2_1.json │ │ │ ├── NetworkDeviceFunctionCollection.json │ │ │ ├── NetworkPort.json │ │ │ ├── NetworkPort.v1_1_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_8_1.json │ │ │ └── odata.v4_0_2.json │ │ └── network_sample_output │ │ │ ├── index.html │ │ │ └── output.md │ ├── release_history │ │ └── input │ │ │ ├── Storage.json │ │ │ ├── Storage.v1_0_0.json │ │ │ ├── Storage.v1_0_1.json │ │ │ ├── Storage.v1_0_2.json │ │ │ ├── Storage.v1_0_3.json │ │ │ ├── Storage.v1_0_4.json │ │ │ ├── Storage.v1_0_5.json │ │ │ ├── Storage.v1_0_6.json │ │ │ ├── Storage.v1_1_0.json │ │ │ ├── Storage.v1_1_1.json │ │ │ ├── Storage.v1_1_2.json │ │ │ ├── Storage.v1_1_3.json │ │ │ ├── Storage.v1_1_4.json │ │ │ ├── Storage.v1_1_5.json │ │ │ ├── Storage.v1_2_0.json │ │ │ ├── Storage.v1_2_1.json │ │ │ ├── Storage.v1_2_2.json │ │ │ ├── Storage.v1_2_3.json │ │ │ ├── Storage.v1_3_0.json │ │ │ ├── Storage.v1_3_1.json │ │ │ ├── Storage.v1_3_2.json │ │ │ ├── Storage.v1_3_3.json │ │ │ ├── Storage.v1_4_0.json │ │ │ ├── Storage.v1_4_1.json │ │ │ ├── Storage.v1_4_2.json │ │ │ ├── Storage.v1_5_0.json │ │ │ ├── Storage.v1_5_1.json │ │ │ └── Storage.v1_6_0.json │ ├── required_attributes │ │ └── input │ │ │ ├── Event.json │ │ │ └── Event.v1_3_1.json │ ├── schema_index_sample.html │ ├── subset_mode │ │ ├── bad_spec.json │ │ ├── config.json │ │ ├── json-schema │ │ │ ├── Chassis.json │ │ │ ├── Chassis.v1_7_3.json │ │ │ ├── EthernetInterface.json │ │ │ ├── EthernetInterface.v1_6_2.json │ │ │ ├── IPAddresses.json │ │ │ ├── IPAddresses.v1_0_6.json │ │ │ ├── IntegerTest.json │ │ │ ├── IntegerTest.v1_0_0.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_1_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_2.json │ │ └── subset_spec.json │ ├── supplement_tests │ │ ├── certificate_service │ │ │ ├── CertificateService.json │ │ │ ├── CertificateService.v1_0_4.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_9_5.json │ │ │ └── odata-v4.json │ │ ├── ipaddresses │ │ │ ├── Endpoint.json │ │ │ ├── Endpoint.v1_1_0.json │ │ │ ├── EndpointCollection.json │ │ │ ├── IPAddresses.json │ │ │ ├── IPAddresses.v1_0_6.json │ │ │ ├── Protocol.json │ │ │ ├── README.txt │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── odata.v4_0_1.json │ │ │ └── odata.v4_0_2.json │ │ └── md_supplements │ │ │ ├── CertificateService.md │ │ │ └── Endpoint.md │ ├── version_added │ │ ├── AccountService │ │ │ ├── AccountService.json │ │ │ ├── AccountService.v1_3_2.json │ │ │ ├── ExternalAccountProvider.json │ │ │ ├── ExternalAccountProvider.v1_0_0.json │ │ │ ├── ExternalAccountProviderCollection.json │ │ │ ├── ManagerAccount.json │ │ │ ├── ManagerAccount.v1_1_2.json │ │ │ ├── ManagerAccountCollection.json │ │ │ ├── PrivilegeRegistry.json │ │ │ ├── PrivilegeRegistry.v1_1_1.json │ │ │ ├── Privileges.json │ │ │ ├── Privileges.v1_0_4.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── Role.json │ │ │ ├── Role.v1_2_1.json │ │ │ ├── RoleCollection.json │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_2.json │ │ └── Chassis │ │ │ ├── Chassis.json │ │ │ ├── Chassis.v1_7_3.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_1_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_2.json │ ├── version_deprecated │ │ ├── Chassis │ │ │ ├── Chassis.json │ │ │ ├── Chassis.v1_7_3.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_1_0.json │ │ │ ├── Resource.v1_6_0.json │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_2.json │ │ └── Event │ │ │ ├── Event.json │ │ │ ├── Event.v1_3_2.json │ │ │ ├── LogEntry.json │ │ │ ├── LogEntry.v1_4_0.json │ │ │ ├── LogEntryCollection.json │ │ │ ├── Resource.json │ │ │ ├── Resource.v1_0_0.json │ │ │ ├── Resource.v1_7_0.json │ │ │ ├── odata-v4.json │ │ │ └── odata.v4_0_3.json │ └── version_order │ │ ├── ClassOfService.json │ │ ├── ClassOfService.v1_0_0.json │ │ ├── ClassOfService.v1_0_1.json │ │ ├── ClassOfService.v1_0_2.json │ │ ├── ClassOfService.v1_1_0.json │ │ ├── ClassOfService.v1_1_1.json │ │ ├── Resource.json │ │ ├── Resource.v1_0_0.json │ │ ├── Resource.v1_6_0.json │ │ └── odata.4.0.0.json │ ├── simple_schema.py │ ├── test_action_payloads.py │ ├── test_action_response.py │ ├── test_actions_with_versions.py │ ├── test_combine_multiple_refs.py │ ├── test_config_handling.py │ ├── test_csv_mode.py │ ├── test_doc_gen_util.py │ ├── test_excerpt.py │ ├── test_fragments.py │ ├── test_generate_docs.py │ ├── test_ipaddresses.py │ ├── test_locale_python.py │ ├── test_localized_schemas.py │ ├── test_markdown_toc.py │ ├── test_openapi.py │ ├── test_pattern_properties.py │ ├── test_payload_directory.py │ ├── test_profile_mode.py │ ├── test_properties_with_same_name.py │ ├── test_property_index.py │ ├── test_readwrite_links.py │ ├── test_referenced_objects.py │ ├── test_release_history.py │ ├── test_required_attributes.py │ ├── test_schema_deprecated.py │ ├── test_schema_traverser.py │ ├── test_supplement_output.py │ ├── test_version_added.py │ ├── test_version_deprecated.py │ └── test_version_order.py ├── json-to-openapi-converter ├── LICENSE.md ├── README.md ├── dmtf-config.json └── json-to-yaml.py ├── odata-csdl-validator ├── AUTHORS.md ├── LICENSE.md ├── README.md ├── odata_validator.py └── redfish-rules.json ├── redfish-oem-integrator ├── LICENSE.md ├── README.md ├── contoso-example-config.json ├── contoso-oem-annotation-bindings.json ├── contoso-oem-extensions.json └── redfish-oem-integrator.py ├── redfish-repo-test ├── csdl-syntax-test.js ├── dsp2046-test.js ├── fixtures │ ├── Org.OData.Capabilities.V1.xml │ ├── Org.OData.Core.V1.xml │ ├── Org.OData.Measures.V1.xml │ ├── offlineUCUMParse.js │ └── units.js ├── helpers │ ├── deprecated.js │ ├── fixjson.js │ ├── install.js │ ├── published_schema.js │ ├── spellcheck.js │ ├── updatemockups.js │ ├── updatetables.js │ └── utils.js ├── json-schema-test.js ├── markdown-tests.js ├── message-registy-test.js ├── openapi-test.js └── package.json └── registry-doc-generator ├── LICENSE.md ├── README.md ├── registry-doc-generator.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/README.md -------------------------------------------------------------------------------- /csdl-to-json-convertor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/csdl-to-json-convertor/LICENSE.md -------------------------------------------------------------------------------- /csdl-to-json-convertor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/csdl-to-json-convertor/README.md -------------------------------------------------------------------------------- /csdl-to-json-convertor/csdl-to-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/csdl-to-json-convertor/csdl-to-json.py -------------------------------------------------------------------------------- /csdl-to-json-convertor/dmtf-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/csdl-to-json-convertor/dmtf-config.json -------------------------------------------------------------------------------- /doc-generator/.travis/after_script: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc-generator/.travis/before_script: -------------------------------------------------------------------------------- 1 | pip install -r requirements.txt 2 | -------------------------------------------------------------------------------- /doc-generator/.travis/script: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /doc-generator/CHANGES_v2_to_v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/CHANGES_v2_to_v3.md -------------------------------------------------------------------------------- /doc-generator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/LICENSE.md -------------------------------------------------------------------------------- /doc-generator/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/Pipfile -------------------------------------------------------------------------------- /doc-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/README.md -------------------------------------------------------------------------------- /doc-generator/README_Property_Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/README_Property_Index.md -------------------------------------------------------------------------------- /doc-generator/README_config_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/README_config_files.md -------------------------------------------------------------------------------- /doc-generator/TABLE_NUMBER_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/TABLE_NUMBER_README.md -------------------------------------------------------------------------------- /doc-generator/dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/dev_requirements.txt -------------------------------------------------------------------------------- /doc-generator/doc_formatter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_formatter/__init__.py -------------------------------------------------------------------------------- /doc-generator/doc_formatter/csv_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_formatter/csv_generator.py -------------------------------------------------------------------------------- /doc-generator/doc_formatter/doc_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_formatter/doc_formatter.py -------------------------------------------------------------------------------- /doc-generator/doc_formatter/html_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_formatter/html_generator.py -------------------------------------------------------------------------------- /doc-generator/doc_formatter/markdown_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_formatter/markdown_generator.py -------------------------------------------------------------------------------- /doc-generator/doc_formatter/property_index_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_formatter/property_index_generator.py -------------------------------------------------------------------------------- /doc-generator/doc_formatter/toc_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_formatter/toc_parser.py -------------------------------------------------------------------------------- /doc-generator/doc_gen_util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_gen_util/__init__.py -------------------------------------------------------------------------------- /doc-generator/doc_gen_util/doc_gen_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_gen_util/doc_gen_util.py -------------------------------------------------------------------------------- /doc-generator/doc_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/doc_generator.py -------------------------------------------------------------------------------- /doc-generator/example_fragments/Status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/example_fragments/Status.json -------------------------------------------------------------------------------- /doc-generator/format_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/format_utils/__init__.py -------------------------------------------------------------------------------- /doc-generator/format_utils/format_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/format_utils/format_utils.py -------------------------------------------------------------------------------- /doc-generator/format_utils/html_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/format_utils/html_utils.py -------------------------------------------------------------------------------- /doc-generator/locale/TEST/LC_MESSAGES/doc_generator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/locale/TEST/LC_MESSAGES/doc_generator.mo -------------------------------------------------------------------------------- /doc-generator/locale/TEST/LC_MESSAGES/doc_generator.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/locale/TEST/LC_MESSAGES/doc_generator.po -------------------------------------------------------------------------------- /doc-generator/locale/doc_generator.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/locale/doc_generator.pot -------------------------------------------------------------------------------- /doc-generator/locale/en/LC_MESSAGES/doc_generator.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/locale/en/LC_MESSAGES/doc_generator.mo -------------------------------------------------------------------------------- /doc-generator/locale/en/LC_MESSAGES/doc_generator.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/locale/en/LC_MESSAGES/doc_generator.po -------------------------------------------------------------------------------- /doc-generator/make_translation_strings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/make_translation_strings.sh -------------------------------------------------------------------------------- /doc-generator/parse_md_supplement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/parse_md_supplement.py -------------------------------------------------------------------------------- /doc-generator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/requirements.txt -------------------------------------------------------------------------------- /doc-generator/sample_inputs/OCPBasicServer.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/OCPBasicServer.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/OCPManagedDevice.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/OCPManagedDevice.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/OCPRackManagerController.2019.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/OCPRackManagerController.2019.1.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/csv/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/csv/config.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/excerpt/NetworkAdapter.v1_9_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/excerpt/NetworkAdapter.v1_9_9.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/excerpt/PCIeDevice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/excerpt/PCIeDevice.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/excerpt/PCIeDevice.v1_9_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/excerpt/PCIeDevice.v1_9_9.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/profile_mode/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/profile_mode/config.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/profile_mode/content_supplement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/profile_mode/content_supplement.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/profile_mode/intro.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | # Sample Profile-focused Document 4 | -------------------------------------------------------------------------------- /doc-generator/sample_inputs/property_index/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/property_index/config.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/standard_html/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/standard_html/config.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/standard_html/config_normative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/standard_html/config_normative.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/standard_html/content_supplement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/standard_html/content_supplement.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/standard_html/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/standard_html/intro.md -------------------------------------------------------------------------------- /doc-generator/sample_inputs/standard_html/postscript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/standard_html/postscript.md -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset/config.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset/docgen-subset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset/docgen-subset.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_html/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset_html/config.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_html/content_supplement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset_html/content_supplement.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_html/subset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset_html/subset.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_markdown/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset_markdown/config.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_markdown/content_supplement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset_markdown/content_supplement.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_markdown/subset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset_markdown/subset.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_old/content_supplement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/sample_inputs/subset_old/content_supplement.json -------------------------------------------------------------------------------- /doc-generator/sample_inputs/subset_old/intro.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | # Sample Subset Document 4 | 5 | [add_toc] 6 | -------------------------------------------------------------------------------- /doc-generator/schema_traverser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/schema_traverser.py -------------------------------------------------------------------------------- /doc-generator/table_number.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/table_number.awk -------------------------------------------------------------------------------- /doc-generator/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/__init__.py -------------------------------------------------------------------------------- /doc-generator/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/conftest.py -------------------------------------------------------------------------------- /doc-generator/tests/discrepancy_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/discrepancy_list.py -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/expected_output/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/expected_output/markdown.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/expected_output/output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/expected_output/output.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/expected_output/slate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/expected_output/slate.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/input/json-schema/CertificateService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/input/json-schema/CertificateService.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/input/json-schema/CertificateService.v1_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/input/json-schema/CertificateService.v1_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/input/json-schema/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/input/json-schema/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/input/json-schema/Resource.v1_9_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/input/json-schema/Resource.v1_9_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/input/json-schema/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_payloads/input/json-schema/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/input/mockups/CertificateService-v1-GenerateCSR-request-example.json: -------------------------------------------------------------------------------- 1 | { 2 | "example": "Placeholder for REQUEST" 3 | } 4 | -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_payloads/input/mockups/CertificateService-v1-GenerateCSR-response-example.json: -------------------------------------------------------------------------------- 1 | { 2 | "example": "Placeholder for RESPONSE" 3 | } 4 | -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_response/certificate/Certificate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_response/certificate/Certificate.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_response/certificate/Certificate.v1_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_response/certificate/Certificate.v1_2_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_response/certificate/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_response/certificate/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_response/certificate/Resource.v1_9_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_response/certificate/Resource.v1_9_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/action_response/certificate/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/action_response/certificate/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/actions_with_versions/processor/Processor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/actions_with_versions/processor/Processor.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/actions_with_versions/processor/Processor.v1_8_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/actions_with_versions/processor/Processor.v1_8_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/actions_with_versions/processor/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/actions_with_versions/processor/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/actions_with_versions/processor/Resource.v1_9_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/actions_with_versions/processor/Resource.v1_9_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/actions_with_versions/processor/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/actions_with_versions/processor/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/PhysicalContext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/PhysicalContext.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/PhysicalContext.v1_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/PhysicalContext.v1_3_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/Resource.v1_8_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/Resource.v1_8_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/Sensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/Sensor.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/Sensor.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/Sensor.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/combine_multiple/sensor/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/combine_multiple/sensor/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/csv_mode/input/RequiredTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/csv_mode/input/RequiredTest.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/csv_mode/input/RequiredTest.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/csv_mode/input/RequiredTest.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/csv_mode/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/csv_mode/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/csv_mode/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/csv_mode/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/csv_mode/input/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/csv_mode/input/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_0_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_0_11.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_1_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_1_9.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_2_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_2_9.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_3_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_3_7.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_4_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_4_6.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_5_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_5_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Power.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Resource.v1_7_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/Resource.v1_7_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/odata.v4_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/earlier_deprecated/input/odata.v4_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_0_11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_0_11.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_1_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_1_9.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_2_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_2_9.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_3_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_3_7.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_4_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_4_6.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_5_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_5_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Power.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Resource.v1_7_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/Resource.v1_7_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/odata.v4_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/deprecated_schema/latest_deprecated/input/odata.v4_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Circuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Circuit.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Circuit.v0_9_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Circuit.v0_9_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/CircuitCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/CircuitCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Outlet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Outlet.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Outlet.v0_9_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Outlet.v0_9_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/PhysicalContext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/PhysicalContext.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/PhysicalContext.v1_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/PhysicalContext.v1_3_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Resource.v1_8_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Resource.v1_8_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Sensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Sensor.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Sensor.v0_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Sensor.v0_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/Sensor.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/Sensor.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/circuit/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/circuit/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/PhysicalContext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/PhysicalContext.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/PhysicalContext.v1_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/PhysicalContext.v1_3_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/PowerDistributionMetrics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/PowerDistributionMetrics.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/PowerDistributionMetrics.v0_9_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/PowerDistributionMetrics.v0_9_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/Resource.v1_8_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/Resource.v1_8_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/Sensor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/Sensor.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/Sensor.v0_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/Sensor.v0_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/Sensor.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/Sensor.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/excerpt/power_distribution_metrics/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/excerpt/power_distribution_metrics/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/CommonPropertySchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/CommonPropertySchema.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/expected_output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/expected_output.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/expected_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/expected_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/expected_slate_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/expected_slate_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/json-schema/IntegerTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/json-schema/IntegerTest.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/json-schema/IntegerTest.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/json-schema/IntegerTest.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/json-schema/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/json-schema/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/json-schema/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/json-schema/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/json-schema/odata.v4_0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/json-schema/odata.v4_0_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/json-schema/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/json-schema/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/fragments/json-schema/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/fragments/json-schema/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/expected_output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/expected_output/index.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/expected_output/markdown_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/expected_output/markdown_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/expected_output/markdown_with_table_numbering_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/expected_output/markdown_with_table_numbering_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/expected_output/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/expected_output/output.csv -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/expected_output/slate_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/expected_output/slate_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/NetworkDeviceFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/NetworkDeviceFunction.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/NetworkDeviceFunction.v1_3_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/NetworkDeviceFunction.v1_3_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/NetworkDeviceFunctionCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/NetworkDeviceFunctionCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/NetworkPort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/NetworkPort.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/NetworkPort.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/NetworkPort.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/general/input/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/general/input/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/expected_output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/expected_output/index.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/expected_output/markdown_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/expected_output/markdown_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/expected_output/slate_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/expected_output/slate_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/input/IntegerTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/input/IntegerTest.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/input/IntegerTest.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/input/IntegerTest.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/integer/input/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/integer/input/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/expected_output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/expected_output/index.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkDeviceFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkDeviceFunction.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkDeviceFunction.v1_3_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkDeviceFunction.v1_3_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkDeviceFunctionCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkDeviceFunctionCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkPort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkPort.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkPort.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/NetworkPort.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/normative/input/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/normative/input/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/expected_output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/expected_output/index.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/expected_output/markdown_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/expected_output/markdown_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/expected_output/slate_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/expected_output/slate_output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/input/RequiredTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/input/RequiredTest.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/input/RequiredTest.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/input/RequiredTest.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/generate_docs_cases/required/input/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/generate_docs_cases/required/input/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/json/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/json/1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/json/badjson.json: -------------------------------------------------------------------------------- 1 | This isn't json at all. 2 | -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/Bios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/Bios.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/Bios.v1_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/Bios.v1_1_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/Certificate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/Certificate.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/Certificate.v1_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/Certificate.v1_2_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/CertificateCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/CertificateCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/ComputerSystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/ComputerSystem.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/ComputerSystem.v1_13_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/ComputerSystem.v1_13_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/ResourceBlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/ResourceBlock.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/ResourceBlock.v1_3_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/ResourceBlock.v1_3_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/TEST/ComputerSystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/TEST/ComputerSystem.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/TEST/ComputerSystem.v1_13_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/TEST/ComputerSystem.v1_13_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/en: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/localized_schemas/general/input/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/localized_schemas/general/input/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/markdown_toc/input_blob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/markdown_toc/input_blob.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Bios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Bios.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Bios.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Bios.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Bios.v1_0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Bios.v1_0_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Bios.v1_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Bios.v1_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Bios.v1_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Bios.v1_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Bios.v1_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Bios.v1_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Bios.v1_0_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Bios.v1_0_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_0_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_0_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_1_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_1_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_1_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_1_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_1_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_1_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_1_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_1_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_1_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_1_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_1_6.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_2_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_2_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_2_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_2_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_2_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_2_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_2_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_2_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_2_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_2_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_3_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_3_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_3_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_3_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_3_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_3_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_3_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_3_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_3_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_4_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_4_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_4_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_4_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_4_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_4_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_4_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_4_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_5_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_5_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_5_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_5_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_5_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_5_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_6_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_6_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/Resource.v1_7_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/Resource.v1_7_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/actions/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/actions/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/Event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/Event.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/Event.v1_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/Event.v1_3_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/LogEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/LogEntry.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/LogEntry.v1_4_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/LogEntry.v1_4_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/LogEntryCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/LogEntryCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/Resource.v1_7_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/Resource.v1_7_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/openapi/input/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/openapi/input/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/expected_output/MessagesProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/expected_output/MessagesProperty.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/expected_output/MessagesProperty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/expected_output/MessagesProperty.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/expected_output/MessagesPropertyDetails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/expected_output/MessagesPropertyDetails.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/expected_output/MessagesPropertyDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/expected_output/MessagesPropertyDetails.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/MessageRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/MessageRegistry.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/MessageRegistry.v1_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/MessageRegistry.v1_2_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/MessageRegistryCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/MessageRegistryCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/MessageRegistryFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/MessageRegistryFile.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/MessageRegistryFile.v1_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/MessageRegistryFile.v1_1_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/MessageRegistryFileCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/MessageRegistryFileCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/Resource.v1_7_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/Resource.v1_7_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/pattern_properties/input/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/pattern_properties/input/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/payloads/ActionInfo-v1-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/payloads/ActionInfo-v1-example.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/payloads/LogService-v1-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/payloads/LogService-v1-example.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/payloads/Memory-v1-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/payloads/Memory-v1-example.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/payloads/SomeOtherFile.txt: -------------------------------------------------------------------------------- 1 | This is a file the payload slurper should ignore. 2 | -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunction.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunction.v1_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunction.v1_2_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunction.v1_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunction.v1_2_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunctionCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkDeviceFunctionCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkPort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkPort.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkPort.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/NetworkPort.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/NetworkPort/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/NetworkPort/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/profiles/BasicClassProfile.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/profiles/BasicClassProfile.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/basic/profiles/BasicInstanceProfile.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/basic/profiles/BasicInstanceProfile.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/full/OCPBasicServer.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/full/OCPBasicServer.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/full/OCPManagedDevice.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/full/OCPManagedDevice.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/full/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/full/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/full/SampleProfileInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/full/SampleProfileInput.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/registry_mapping/NetworkPort/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/registry_mapping/NetworkPort/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/registry_mapping/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/registry_mapping/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/registry_mapping/profiles/BasicClassProfile.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/registry_mapping/profiles/BasicClassProfile.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/registry_mapping/profiles/BasicInstanceProfile.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/registry_mapping/profiles/BasicInstanceProfile.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/registry_mapping/profiles/ProfileWithFakeRegistry.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/registry_mapping/profiles/ProfileWithFakeRegistry.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/profile_mode/registry_mapping/registries/ContosoPizzaMessages.1.0.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/profile_mode/registry_mapping/registries/ContosoPizzaMessages.1.0.3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/properties_with_same_name/manager/Manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/properties_with_same_name/manager/Manager.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/properties_with_same_name/manager/Manager.v1_8_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/properties_with_same_name/manager/Manager.v1_8_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/properties_with_same_name/manager/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/properties_with_same_name/manager/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/properties_with_same_name/manager/Resource.v1_9_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/properties_with_same_name/manager/Resource.v1_9_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/properties_with_same_name/manager/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/properties_with_same_name/manager/notes.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/properties_with_same_name/manager/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/properties_with_same_name/manager/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunction.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunction.v1_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunction.v1_2_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunction.v1_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunction.v1_2_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunctionCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/NetworkDeviceFunctionCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/NetworkPort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/NetworkPort.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/NetworkPort.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/NetworkPort.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/general/input/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/general/input/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/thermal_plus/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/thermal_plus/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/thermal_plus/input/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/thermal_plus/input/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/thermal_plus/input/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/thermal_plus/input/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/thermal_plus/input/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/thermal_plus/input/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/thermal_plus/input/Thermal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/thermal_plus/input/Thermal.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/thermal_plus/input/Thermal.v1_5_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/thermal_plus/input/Thermal.v1_5_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/property_index/thermal_plus/input/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/property_index/thermal_plus/input/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/Facility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/Facility.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/Facility.v1_0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/Facility.v1_0_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/FacilityCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/FacilityCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/readwrite_links/Facility/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/readwrite_links/Facility/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/Endpoint.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/Endpoint.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/Endpoint.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/EndpointCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/EndpointCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/IPAddresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/IPAddresses.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/IPAddresses.v1_0_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/IPAddresses.v1_0_6.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/Protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/Protocol.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/Resource.v1_8_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/Resource.v1_8_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/odata.v4_0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/odata.v4_0_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/ipaddresses/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/ipaddresses/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunction.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunction.v1_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunction.v1_2_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunction.v1_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunction.v1_2_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunctionCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/NetworkDeviceFunctionCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/NetworkPort.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/NetworkPort.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/NetworkPort.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/NetworkPort.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/Resource.v1_8_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/Resource.v1_8_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample_output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample_output/index.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/referenced_objects/network_sample_output/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/referenced_objects/network_sample_output/output.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_0_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_0_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_0_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_0_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_0_6.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_1_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_1_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_1_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_1_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_1_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_1_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_1_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_1_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_1_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_2_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_2_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_2_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_2_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_2_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_2_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_2_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_3_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_3_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_3_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_3_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_3_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_3_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_3_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_3_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_4_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_4_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_4_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_4_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_4_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_4_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_5_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_5_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_5_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_5_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/release_history/input/Storage.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/release_history/input/Storage.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/required_attributes/input/Event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/required_attributes/input/Event.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/required_attributes/input/Event.v1_3_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/required_attributes/input/Event.v1_3_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/schema_index_sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/schema_index_sample.html -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/bad_spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/bad_spec.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/config.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/Chassis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/Chassis.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/Chassis.v1_7_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/Chassis.v1_7_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/EthernetInterface.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/EthernetInterface.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/EthernetInterface.v1_6_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/EthernetInterface.v1_6_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/IPAddresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/IPAddresses.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/IPAddresses.v1_0_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/IPAddresses.v1_0_6.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/IntegerTest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/IntegerTest.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/IntegerTest.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/IntegerTest.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/Resource.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/Resource.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/json-schema/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/json-schema/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/subset_mode/subset_spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/subset_mode/subset_spec.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/certificate_service/CertificateService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/certificate_service/CertificateService.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/certificate_service/CertificateService.v1_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/certificate_service/CertificateService.v1_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/certificate_service/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/certificate_service/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/certificate_service/Resource.v1_9_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/certificate_service/Resource.v1_9_5.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/certificate_service/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/certificate_service/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/Endpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/Endpoint.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/Endpoint.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/Endpoint.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/EndpointCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/EndpointCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/IPAddresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/IPAddresses.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/IPAddresses.v1_0_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/IPAddresses.v1_0_6.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/Protocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/Protocol.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/README.txt -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/odata.v4_0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/odata.v4_0_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/ipaddresses/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/ipaddresses/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/md_supplements/CertificateService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/md_supplements/CertificateService.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/supplement_tests/md_supplements/Endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/supplement_tests/md_supplements/Endpoint.md -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/AccountService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/AccountService.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/AccountService.v1_3_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/AccountService.v1_3_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/ExternalAccountProvider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/ExternalAccountProvider.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/ExternalAccountProvider.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/ExternalAccountProvider.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/ExternalAccountProviderCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/ExternalAccountProviderCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/ManagerAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/ManagerAccount.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/ManagerAccount.v1_1_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/ManagerAccount.v1_1_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/ManagerAccountCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/ManagerAccountCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/PrivilegeRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/PrivilegeRegistry.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/PrivilegeRegistry.v1_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/PrivilegeRegistry.v1_1_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/Privileges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/Privileges.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/Privileges.v1_0_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/Privileges.v1_0_4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/Role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/Role.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/Role.v1_2_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/Role.v1_2_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/RoleCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/RoleCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/AccountService/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/AccountService/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/Chassis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/Chassis.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/Chassis.v1_7_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/Chassis.v1_7_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/Resource.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/Resource.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_added/Chassis/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_added/Chassis/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/Chassis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/Chassis.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/Chassis.v1_7_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/Chassis.v1_7_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/Resource.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/Resource.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Chassis/odata.v4_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Chassis/odata.v4_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/Event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/Event.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/Event.v1_3_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/Event.v1_3_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/LogEntry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/LogEntry.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/LogEntry.v1_4_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/LogEntry.v1_4_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/LogEntryCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/LogEntryCollection.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/Resource.v1_7_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/Resource.v1_7_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/odata-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/odata-v4.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_deprecated/Event/odata.v4_0_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_deprecated/Event/odata.v4_0_3.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/ClassOfService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/ClassOfService.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/ClassOfService.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/ClassOfService.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/ClassOfService.v1_0_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/ClassOfService.v1_0_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/ClassOfService.v1_0_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/ClassOfService.v1_0_2.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/ClassOfService.v1_1_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/ClassOfService.v1_1_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/ClassOfService.v1_1_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/ClassOfService.v1_1_1.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/Resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/Resource.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/Resource.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/Resource.v1_0_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/Resource.v1_6_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/Resource.v1_6_0.json -------------------------------------------------------------------------------- /doc-generator/tests/samples/version_order/odata.4.0.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/samples/version_order/odata.4.0.0.json -------------------------------------------------------------------------------- /doc-generator/tests/simple_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/simple_schema.py -------------------------------------------------------------------------------- /doc-generator/tests/test_action_payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_action_payloads.py -------------------------------------------------------------------------------- /doc-generator/tests/test_action_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_action_response.py -------------------------------------------------------------------------------- /doc-generator/tests/test_actions_with_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_actions_with_versions.py -------------------------------------------------------------------------------- /doc-generator/tests/test_combine_multiple_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_combine_multiple_refs.py -------------------------------------------------------------------------------- /doc-generator/tests/test_config_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_config_handling.py -------------------------------------------------------------------------------- /doc-generator/tests/test_csv_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_csv_mode.py -------------------------------------------------------------------------------- /doc-generator/tests/test_doc_gen_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_doc_gen_util.py -------------------------------------------------------------------------------- /doc-generator/tests/test_excerpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_excerpt.py -------------------------------------------------------------------------------- /doc-generator/tests/test_fragments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_fragments.py -------------------------------------------------------------------------------- /doc-generator/tests/test_generate_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_generate_docs.py -------------------------------------------------------------------------------- /doc-generator/tests/test_ipaddresses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_ipaddresses.py -------------------------------------------------------------------------------- /doc-generator/tests/test_locale_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_locale_python.py -------------------------------------------------------------------------------- /doc-generator/tests/test_localized_schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_localized_schemas.py -------------------------------------------------------------------------------- /doc-generator/tests/test_markdown_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_markdown_toc.py -------------------------------------------------------------------------------- /doc-generator/tests/test_openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_openapi.py -------------------------------------------------------------------------------- /doc-generator/tests/test_pattern_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_pattern_properties.py -------------------------------------------------------------------------------- /doc-generator/tests/test_payload_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_payload_directory.py -------------------------------------------------------------------------------- /doc-generator/tests/test_profile_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_profile_mode.py -------------------------------------------------------------------------------- /doc-generator/tests/test_properties_with_same_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_properties_with_same_name.py -------------------------------------------------------------------------------- /doc-generator/tests/test_property_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_property_index.py -------------------------------------------------------------------------------- /doc-generator/tests/test_readwrite_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_readwrite_links.py -------------------------------------------------------------------------------- /doc-generator/tests/test_referenced_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_referenced_objects.py -------------------------------------------------------------------------------- /doc-generator/tests/test_release_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_release_history.py -------------------------------------------------------------------------------- /doc-generator/tests/test_required_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_required_attributes.py -------------------------------------------------------------------------------- /doc-generator/tests/test_schema_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_schema_deprecated.py -------------------------------------------------------------------------------- /doc-generator/tests/test_schema_traverser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_schema_traverser.py -------------------------------------------------------------------------------- /doc-generator/tests/test_supplement_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_supplement_output.py -------------------------------------------------------------------------------- /doc-generator/tests/test_version_added.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_version_added.py -------------------------------------------------------------------------------- /doc-generator/tests/test_version_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_version_deprecated.py -------------------------------------------------------------------------------- /doc-generator/tests/test_version_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/doc-generator/tests/test_version_order.py -------------------------------------------------------------------------------- /json-to-openapi-converter/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/json-to-openapi-converter/LICENSE.md -------------------------------------------------------------------------------- /json-to-openapi-converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/json-to-openapi-converter/README.md -------------------------------------------------------------------------------- /json-to-openapi-converter/dmtf-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/json-to-openapi-converter/dmtf-config.json -------------------------------------------------------------------------------- /json-to-openapi-converter/json-to-yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/json-to-openapi-converter/json-to-yaml.py -------------------------------------------------------------------------------- /odata-csdl-validator/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/odata-csdl-validator/AUTHORS.md -------------------------------------------------------------------------------- /odata-csdl-validator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/odata-csdl-validator/LICENSE.md -------------------------------------------------------------------------------- /odata-csdl-validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/odata-csdl-validator/README.md -------------------------------------------------------------------------------- /odata-csdl-validator/odata_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/odata-csdl-validator/odata_validator.py -------------------------------------------------------------------------------- /odata-csdl-validator/redfish-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/odata-csdl-validator/redfish-rules.json -------------------------------------------------------------------------------- /redfish-oem-integrator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-oem-integrator/LICENSE.md -------------------------------------------------------------------------------- /redfish-oem-integrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-oem-integrator/README.md -------------------------------------------------------------------------------- /redfish-oem-integrator/contoso-example-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-oem-integrator/contoso-example-config.json -------------------------------------------------------------------------------- /redfish-oem-integrator/contoso-oem-annotation-bindings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-oem-integrator/contoso-oem-annotation-bindings.json -------------------------------------------------------------------------------- /redfish-oem-integrator/contoso-oem-extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-oem-integrator/contoso-oem-extensions.json -------------------------------------------------------------------------------- /redfish-oem-integrator/redfish-oem-integrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-oem-integrator/redfish-oem-integrator.py -------------------------------------------------------------------------------- /redfish-repo-test/csdl-syntax-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/csdl-syntax-test.js -------------------------------------------------------------------------------- /redfish-repo-test/dsp2046-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/dsp2046-test.js -------------------------------------------------------------------------------- /redfish-repo-test/fixtures/Org.OData.Capabilities.V1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/fixtures/Org.OData.Capabilities.V1.xml -------------------------------------------------------------------------------- /redfish-repo-test/fixtures/Org.OData.Core.V1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/fixtures/Org.OData.Core.V1.xml -------------------------------------------------------------------------------- /redfish-repo-test/fixtures/Org.OData.Measures.V1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/fixtures/Org.OData.Measures.V1.xml -------------------------------------------------------------------------------- /redfish-repo-test/fixtures/offlineUCUMParse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/fixtures/offlineUCUMParse.js -------------------------------------------------------------------------------- /redfish-repo-test/fixtures/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/fixtures/units.js -------------------------------------------------------------------------------- /redfish-repo-test/helpers/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/helpers/deprecated.js -------------------------------------------------------------------------------- /redfish-repo-test/helpers/fixjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/helpers/fixjson.js -------------------------------------------------------------------------------- /redfish-repo-test/helpers/install.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redfish-repo-test/helpers/published_schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/helpers/published_schema.js -------------------------------------------------------------------------------- /redfish-repo-test/helpers/spellcheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/helpers/spellcheck.js -------------------------------------------------------------------------------- /redfish-repo-test/helpers/updatemockups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/helpers/updatemockups.js -------------------------------------------------------------------------------- /redfish-repo-test/helpers/updatetables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/helpers/updatetables.js -------------------------------------------------------------------------------- /redfish-repo-test/helpers/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/helpers/utils.js -------------------------------------------------------------------------------- /redfish-repo-test/json-schema-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/json-schema-test.js -------------------------------------------------------------------------------- /redfish-repo-test/markdown-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/markdown-tests.js -------------------------------------------------------------------------------- /redfish-repo-test/message-registy-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/message-registy-test.js -------------------------------------------------------------------------------- /redfish-repo-test/openapi-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/openapi-test.js -------------------------------------------------------------------------------- /redfish-repo-test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/redfish-repo-test/package.json -------------------------------------------------------------------------------- /registry-doc-generator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/registry-doc-generator/LICENSE.md -------------------------------------------------------------------------------- /registry-doc-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/registry-doc-generator/README.md -------------------------------------------------------------------------------- /registry-doc-generator/registry-doc-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DMTF/Redfish-Tools/HEAD/registry-doc-generator/registry-doc-generator.py -------------------------------------------------------------------------------- /registry-doc-generator/requirements.txt: -------------------------------------------------------------------------------- 1 | packaging 2 | 3 | --------------------------------------------------------------------------------