CWE views
This API endpoint returns a given set of CWE views by identifier. Multiple identifiers are separated by a comma. If keyword "all" is given, all CWE views are returned.
Path parameters
CWE View ID(s) - comma separated
Response
success
Example response
{
"Views": [
{
"ID": "12",
"Name": "View Name",
"Type": "Implicit",
"Status": "Stable",
"Objective": "A brief description of the objective of the view",
"Audience": [
{
"Type": "Software Developers",
"Description": "A brief description of the audience"
}
],
"Members": [
{
"CWE_ID": "123",
"View_ID": "321"
}
],
"References": [
{
"ExternalReferenceID": "REF-2",
"Section": "Chapter 11, Page 384",
"Authors": [
"John Doe",
"Jane Doe"
],
"Title": "An Analysis of All That is Wrong With Software Development",
"Edition": "2nd Edition",
"PublicationYear": "2000",
"PublicationMonth": "01",
"PublicationDay": "01",
"Publisher": "Perfect Publishing",
"URL": "https://example.com",
"URLDate": "2021-10-24"
}
],
"Notes": [
{
"Type": "Relationship",
"Note": "A note on the relationship"
}
],
"Content_History": [
{
"Type": "Submission",
"SubmissionName": "PLOVER",
"SubmissionDate": "2006-07-19"
},
{
"Type": "Modification",
"ModificationName": "John Doe",
"ModificationOrganization": "ACME Corp",
"ModificationDate": "2008-07-01",
"ModificationComment": "Updated Description"
},
{
"Type": "Rename",
"PreviousEntryName": "Old name",
"Date": "2000-01-04"
}
]
}
]
}Changes
Changed in 3 of the 5 revisions of this API.212
- ▲
the response's body type/format changed from
array/toobject/for status200response-body-type-changed
- ○
added the optional property
Viewsto the response with the200statusresponse-optional-property-added
- ▲
- ○
the response property
items/Content_History/items/Typebecame required for the status200response-property-became-required
- ○
- ▲
the response's body type/format changed from
object/toarray/for status200response-body-type-changed
- ●
removed the optional property
Viewsfrom the response with the200statusresponse-optional-property-removed
This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲