Skip to content

Commit 731fb20

Browse files
asimm241zone117x
authored andcommitted
docs: remove title of metadata from network options request and network status request
1 parent edb3b14 commit 731fb20

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/api/rosetta/rosetta-network-options-request.schema.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
"$ref": "../../entities/rosetta/rosetta-network-identifier.schema.json"
1111
},
1212
"metadata": {
13-
"type": "object",
14-
"title": "The metadata schema",
15-
"description": "An explanation about the purpose of this instance."
13+
"type": "object"
1614
}
1715
}
1816
}

docs/api/rosetta/rosetta-network-status-request.schema.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@
1010
"$ref": "../../entities/rosetta/rosetta-network-identifier.schema.json"
1111
},
1212
"metadata": {
13-
"type": "object",
14-
"title": "The metadata schema",
15-
"description": "An explanation about the purpose of this instance."
13+
"type": "object"
1614
}
1715
}
1816
}

docs/index.d.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,9 @@ export interface RosettaNetworkListResponse {
236236
*/
237237
export interface RosettaOptionsRequest {
238238
network_identifier: NetworkIdentifier;
239-
metadata?: TheMetadataSchema;
239+
metadata?: {
240+
[k: string]: unknown | undefined;
241+
};
240242
}
241243

242244
/**
@@ -296,7 +298,9 @@ export interface RosettaNetworkOptionsResponse {
296298
*/
297299
export interface RosettaStatusRequest {
298300
network_identifier: NetworkIdentifier;
299-
metadata?: TheMetadataSchema;
301+
metadata?: {
302+
[k: string]: unknown | undefined;
303+
};
300304
}
301305

302306
/**

0 commit comments

Comments
 (0)