1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
|
<?xml version="1.0" encoding="UTF-8"?>
<bom xmlns="http://cyclonedx.org/schema/bom/1.7"
serialNumber="urn:uuid:123e4567-e89b-12d3-a456-426614174000"
version="1"
>
<components>
<component type="library" bom-ref="component-1">
<manufacturer bom-ref="org-acme-inc">
<name>Acme Inc</name>
<url>https://example.com</url>
</manufacturer>
<name>High-Efficiency Processor</name>
<version>1.0</version>
<patentAssertions>
<patentAssertion bom-ref="patent-assertion-1">
<assertionType>ownership</assertionType>
<patentRefs>
<bom-ref>patent-1</bom-ref>
</patentRefs>
<asserter>
<ref>org-acme-inc</ref>
</asserter>
<notes>Covers the core processing architecture for advanced computation.</notes>
</patentAssertion>
<patentAssertion bom-ref="patent-assertion-2">
<assertionType>license</assertionType>
<patentRefs>
<bom-ref>patent-3</bom-ref>
</patentRefs>
<asserter>
<ref>org-acme-inc</ref>
</asserter>
<notes>Licensed for use in North America.</notes>
</patentAssertion>
</patentAssertions>
</component>
</components>
<services>
<service bom-ref="service-1">
<name>Data Analysis Service</name>
<patentAssertions>
<patentAssertion bom-ref="patent-assertion-3">
<assertionType>exclusive-rights</assertionType>
<patentRefs>
<bom-ref>patent-2</bom-ref>
</patentRefs>
<asserter>
<organization>
<name>Partner Company</name>
<contact>
<name>Sam Smith</name>
<phone>800-555-1212</phone>
</contact>
</organization>
</asserter>
<notes>Exclusive rights for machine learning integration.</notes>
</patentAssertion>
</patentAssertions>
</service>
</services>
<definitions>
<patents>
<patent bom-ref="patent-1">
<patentNumber>US1234567890</patentNumber>
<applicationNumber>12345</applicationNumber>
<jurisdiction>US</jurisdiction>
<publicationNumber>US-12345</publicationNumber>
<title>Efficient Data Processing Algorithm</title>
<abstract>A novel system and method for improving data processing efficiency.</abstract>
<filingDate>2021-01-15</filingDate>
<grantDate>2022-06-01</grantDate>
<patentExpirationDate>2042-01-15</patentExpirationDate>
<patentLegalStatus>in-force</patentLegalStatus>
<patentAssignee>
<organization>
<name>Tech Innovators Inc.</name>
<url>https://techinnovators.com</url>
</organization>
</patentAssignee>
<externalReferences>
<reference type="patent">
<url>https://uspto.gov/patent/US12345678B1</url>
<comment>Official USPTO page for the patent.</comment>
</reference>
</externalReferences>
</patent>
<patent bom-ref="patent-2">
<patentNumber>EU1234567890</patentNumber>
<applicationNumber>12345</applicationNumber>
<jurisdiction>EU</jurisdiction>
<priorityApplication>
<applicationNumber>US1234567890</applicationNumber>
<jurisdiction>US</jurisdiction>
<filingDate>2021-01-15</filingDate>
</priorityApplication>
<publicationNumber>EU-12345</publicationNumber>
<title>Efficient Data Processing Algorithm</title>
<abstract>A novel system and method for improving data processing efficiency.</abstract>
<filingDate>2021-01-15</filingDate>
<grantDate>2022-06-01</grantDate>
<patentExpirationDate>2042-01-15</patentExpirationDate>
<patentLegalStatus>in-force</patentLegalStatus>
<patentAssignee>
<organization>
<name>Tech Innovators Inc.</name>
<url>https://techinnovators.com</url>
</organization>
</patentAssignee>
</patent>
<patent bom-ref="patent-3">
<patentNumber>EP987654321A1</patentNumber>
<jurisdiction>EP</jurisdiction>
<title>Data Processing Optimisation</title>
<abstract>An optimised approach to data processing for scalable systems.</abstract>
<filingDate>2021-02-10</filingDate>
<grantDate>2023-03-15</grantDate>
<patentExpirationDate>2043-02-10</patentExpirationDate>
<patentLegalStatus>in-force</patentLegalStatus>
<patentAssignee>
<individual>
<name>Jane Smith</name>
<email>jane.smith@techinnovators.com</email>
</individual>
</patentAssignee>
<externalReferences>
<reference type="patent">
<url>https://euipo.europa.eu/ep987654321A1</url>
<comment>Official EUIPO page for the patent.</comment>
</reference>
</externalReferences>
</patent>
<patentFamily bom-ref="patent-family-1">
<familyId>PF-2023001</familyId>
<priorityApplication>
<applicationNumber>12345</applicationNumber>
<jurisdiction>US</jurisdiction>
<filingDate>2021-01-15</filingDate>
</priorityApplication>
<members>
<ref>patent-1</ref>
<ref>patent-2</ref>
</members>
<externalReferences>
<reference type="patent-family">
<url>https://uspto.gov/patent-family-5678</url>
<comment>Official record of the patent family.</comment>
</reference>
</externalReferences>
</patentFamily>
</patents>
</definitions>
</bom>
|